Just wondering which tool generated this git tree view? Thanks.
Asked
Active
Viewed 1.4k times
11
-
Are you interested because you want to use that tool again, or because you want to extract that tree from git as data, or because you want to generate similar graphics from arbitrary data? – Matt Curtis Aug 18 '10 at 07:28
-
1@matt, I'm interested because this tree looks great compared to others I have seen. E.g. the one from gitk. Are there any tool on linux that provides just as good looking graphics? – grm Aug 18 '10 at 08:59
4 Answers
14
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!
-
Thanks Pavel. I'm interested in a tool on linux that provides just as good graphics as gitx (assuming gitx only runs on MacOSX). – grm Aug 18 '10 at 09:02
-
@grm, gitg also has cute round commit markers ^_^. Added link to screenshots to my answer. – P Shved Aug 18 '10 at 09:09
3
Can be any of gitk, gitextensions, tortoisegit, and many more.
Looks like gitx http://gitx.frim.nl/seeit.html

Andreas Rehm
- 2,222
- 17
- 20
2
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

Rushi Agrawal
- 3,208
- 2
- 21
- 26