Search code examples
eclipsegitversion-controltortoisegitegit

Way to see the whole commit history of a repo in Egit/TortoiseGit?


I'm looking for a way to see, though egit, to the whole history of my current git repo. From what it looks like, egit's "Show in History" will only show commits up to the current commit. With this I mean that if I do commit1 and commit2 and then decide to do checkout of the first, running "Show in History" of the project will not show up commit2.

Is there any way that allows me to see the whole history of the repo? I guess that'll be somehting on the lines of the git log master console command.

In other words, if you do checkout at any time your initial commit, how are you supposed to later be able to checkout the newer commits if your history won't show them?

I've been checking out, and it seems TortoiseGit "suffers" from the same problem. Is it indeed a problem or is just me that's not doing thing as we're supposed to?

Thanks


Solution

  • I would just open up gitk --all and look at the top. This will show you the entire history. I haven't worked with the other tools but if they don't have an --all switch, use gitk.

    Hope this helps.