Is there any way to reverse the order of the visual commit log view that displays in gitk?
I'm talking about visual representation that renders in gitk in color as a tree view; i.e., the GUI version of what you get when you run something like this in the terminal:
git log --graph --online --abbrev-commit
I've looked in the menu under Edit Preferences and View New view..., but I couldn't find anything that pertained to the ordering of the commits.
I know I can display the commit log in reverse order in the terminal by adding the --reverse
flag:
git log --reverse --oneline --abbrev-commit
# Displays list correctly
But it doesn't seem to play nicely with the --graph
flag:
git log --reverse --oneline --abbrev-commit --graph
# fatal: cannot combine --reverse with --graph
Perhaps this is why gitk doesn't give us the option to render the view in reverse.
At any rate, I'd like to know: is possible in gitk to reverse the order of the commit log view?