I recently learned that I can get hg log to print the history in reverse order with:
hg log -r :
So of course I tried:
git log -r :
Well, it didn't work. So what is the command to do the same thing in git?
Use the --reverse
option:
git log --reverse
https://git-scm.com/docs/git-log#Documentation/git-log.txt---reverse