git log -1 shows the last commit and git log -2 shows the last two commits; How to get a magazine for one commit in history.
commit 1 commit 2 commit 3 commit 4
How to get only one commit in history, so that I can only see commit 3, how to get allows you to say simply
commit 3
if I know the hash, then I can use git show to get it, how can we get the last nth commit without knowing the hash.
Amit source share