Whenever I view a git log --all --graph --oneline --decorate output in my terminal emulator, the first commit is viewed at the top of the terminal screen. When
First of all you can alway pass -n to the log to print out any number of commits you are interested in.
How can I make the git log output appear reversed
Use the --reverse flag:
--reverseOutput the commits in reverse order.
git log --reverse
You can read here for more tips and flags regarding git log:
http://www.alexkras.com/19-git-tips-for-everyday-use/