The Git extension repository browser seems to be more versatile than gitk.

However, my favorite command line option for gitk is --all. gitk --allshows all commits, including those not accessible to any branch or tag. This is very useful for understanding what is actually going on in git. For example, after reinstalling, you can still see the original commits that were copied and left (and even returned to them with reset).

Is there a way to make Git browser extensions behave like gitk --alland show even unreachable commits?
source
share