How to make a "git log" in windows git gui?

I just used Git Gui to clone a local repo from GitHub, and then I checked a specific branch. Now I want to see the do equivalent git log -50, but cannot find anything in the menu settings or on the main screen:

enter image description here

How can I view the history / commit data for the last, say, 50 changes?

+4
source share
1 answer

This GUI is not only for Windows, but also the standard git-guione that comes with Git.

git-gui . , .. gitk , git log - .

gitk git-gui, - (, , ), , . , gitk --all.

+3

All Articles