The Git Extensions repository browser seems to be more versatile than gitk in many ways.
However, my very favorite command line option for gitk is --all
. gitk --all
shows all commits, including ones not reachable by any branch or tag. This is very useful for understanding what actually happens in git. For instance after a rebase you can still see the original commits that have been copied and abandoned (and even return to them with reset
).
Is there any way to make Git Extensions browser behave like gitk --all
and show even unreachable commits?