With git, how do I see the changes in my last commit?
I mean I want to see a diff between my last commit and the commit previous to it. I know that I can see it on Github browser but I want to see this on terminal on my local commit history.
I know that I can do git diff between commits. So, I can do git diff oldCommit...HEAD to see the changes. But is there a command which can prevent me from having to copy oldCommit from git log which is cumbersome?