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?
git meldtool
works, butgit difftool
reverts togit diff
even though it works normally when there isn't a merge conflict to resolve. I thought it was odd. – Arboriculture