Reversing the log is a possible solution, it does look a little bit weird, commit hashes at the bottom and commit comments at the top per commit, but could be interesting:
git --no-pager log --all --graph --decorate --color=always | tac | sed -e 's/[\]/aaaaaaaaaa/g' -e 's/[/]/\\/g' -e 's/aaaaaaaaaa/\//g' | less -r +G -X for one line version: git --no-pager log --all --graph --oneline --decorate --color=always | tac | sed -e 's/[\]/aaaaaaaaaa/g' -e 's/[/]/\\/g' -e 's/aaaaaaaaaa/\//g' | less -r +G -X Found it here: terminal - How to make git-log scroll up instead of down - Stack Overflow <https://stackoverflow.com/questions/35743332/how-to-make-git-log-scroll-up-instead-of-down> I wish I did not have to spent so much time fixing stupid bugs like this :P Oh yeah and the aliases: The corresponding git alias is [alias] orlog = !"git --no-pager log --all --graph --decorate --oneline --color=always | tac | sed -e 's/[\\]/aaaaaaaaaa/g' -e 's/[/]/\\\\\\\\/g' -e 's/aaaaaaaaaa/\\\\//g' | less -r +G -X" [alias] rlog = !"git --no-pager log --all --graph --decorate --oneline --color=always | tac | sed -e 's/[\\]/aaaaaaaaaa/g' -e 's/[/]/\\\\\\\\/g' -e 's/aaaaaaaaaa/\\\\//g' | less -r +G -X" orlog for one line and reverse rlog for reverse or choose whatever alias you like ! ;) Bye, Skybuck. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/git-users/17a89fdb-a710-46f5-b321-72ef0c1a8fc0n%40googlegroups.com.
