How to make git browser extension show all commits like gitk --all

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

enter image description here

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).

enter image description here

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

+5
source share
3 answers

- . gitk --all .

, , "" > "" > Git "" > "". " ". " ".

  • > RevisionGrid. , "ShowAllBranches" . Ctrl + Shift + A.
  • > . , GitGitK . Ctrl + K. gitk Git Extensions. , , , .
  • , , "". Gitk -all script, . gitk - all Git Extensions.

:)

-, , 3 ;)

+2

"git reflog". , reset . "" . , GIT, .

GIT reflog , , . .

0

, 2.51.RC2 2018 , , reflog, Git. , , gitk --all, , .

, git log --reflog.

The download request is here and it has been released since 2.51.RC2 .

Image of the "Show reflog references" option in the View menu in Git Extensions

0
source

All Articles