Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which git tool generated this tree view?

Tags:

git

alt text

Just wondering which tool generated this git tree view? Thanks.

like image 280
grm Avatar asked Aug 18 '10 07:08

grm


4 Answers

This is gitx, as suggested in other answers. However, this graph is not an achievement of this tool only; such a view can be generated by many tools (qgit, tortoisegit, gitg), including bare git itself output to console!

like image 63
P Shved Avatar answered Nov 18 '22 04:11

P Shved


Can be any of gitk, gitextensions, tortoisegit, and many more.

Looks like gitx http://gitx.frim.nl/seeit.html

like image 43
Andreas Rehm Avatar answered Nov 18 '22 03:11

Andreas Rehm


You can also use git log --graph to see the graphical view of commits, very similar to what is shown above in the picture, but from commandline, and without installing any additional software

like image 2
Rushi Agrawal Avatar answered Nov 18 '22 03:11

Rushi Agrawal


Yup it is gitx

http://gitx.frim.nl/seeit.html

like image 1
corroded Avatar answered Nov 18 '22 04:11

corroded