git and kompare
# add to ~/.bashrc # add the bash function "gk" to act as a git and kompare # Usage: gk COMMIT_HASH # for the reference check: http://denis.tumblr.com/post/50507027/using-kompare-for-git-diffs gk () { git diff $* | kompare - ; }