Last Updated: February 25, 2016
·
1.459K
· valchonedelchev

gitk in terminal

In your .gitconfig file under the [alias] section add the following line:

[alias]
    tree = log --graph --oneline --decorate

This will draw branches with a multicolored lines so you can easely follow your branches history.

git tree

Will put your current HEAD on top of the tree. If you want to see all possible branches use this:

git tree --all