How to use git difftool to diff merge conflicts?

31,619

Try git mergetool.

Share:
31,619
j-pb
Author by

j-pb

Updated on August 19, 2020

Comments

  • j-pb
    j-pb over 3 years

    After a merge failed with some conflicts I can list those with git diff, but git difftool won't display them with the difftool set in the config(in my case Kaleidoscope), instead it will just use normal diff.

    A git difftool comparing with a previous commit will work.

    Is there a way to use git difftool on merge conflicts?

    Greets Jan

  • j-pb
    j-pb over 13 years
    Mergetool will start an visual merging attempt e.g another app, I simply want a diff off the 2 conflicting files, the problem is that although git difftool refA refB normaly works, a git diff and git diftool will do the same in this case.