Inverted `git log --graph`
Inverted git log --graph Using git log --graph is nice, but I dislike that the most relevant commits, are shown at the top of the terminal screen. If your terminal scrolls some lines after quitting the graph pager, those commits will not be visible and you will need to scroll up. Unfortunately --graph and --reverse cannot be used together. You can use tac to invert the output, however the graph needs some adjustments to be properly drawn. ...