I would like to see a specific commit in Beyond Compare or any other separate diff tool while viewing it via git show
. I tried looking at help of git show/difftool/config but couldn't find anything. Does anyone know how it can be done?
I've looked at Git Diff with Beyond Compare and configured Beyond Compare for git difftool
but I also want to use it as tool from git show
git show $commit
is not equivalent togit difftool $commit^ $commit
if we are reviewing a merge commit. git show presents the merge commit in a special format as produced bygit diff-tree --cc $commit
. See git-scm.com/docs/git-show – Oreste