equivalent of git show:
git difftool HEAD^
or
git difftool -t meld HEAD^
shows contents of the last commit
To see diff of arbitrary commit, e.g. 4th from HEAD:
git difftool HEAD~3
To see diff of an arbitrary commit, say `deadfeed`:
git difftool deadfeed^ deadfeed