Search code examples
gitgitk

Viewing full version tree in git


I am using the command line version of Git and gitk. I want to see the full version tree, not just the part that is reachable from the currently checked out version. Is it possible?


Solution

  • You can try the following:

    gitk --all
    

    You can tell gitk what to display using anything that git rev-list understands, so if you just want a few branches, you can do:

    gitk master origin/master origin/experiment
    

    ... or more exotic things like:

    gitk --simplify-by-decoration --all