As mentioned in "Shorthand for diff of git commit with its parent?", you can also use git diff with:

 

git diff COMMIT^!
CODE

or 

git diff-tree -p COMMIT
CODE

COMMIT 에는 커밋 해시 입력

 

또는 

git show --color --pretty=format:%b $COMMIT
CODE

 

 

Ref