I've seen some books and articles have some really pretty looking graphs of git branches and commits. Is there any tool that can make high-quality printable images of git history?
|
|
2¢: I have two aliases I normally throw in my git config files:
and |
|||||||||||||||||||||
|
|
for textual output you can try:
or here's a graphviz alias for drawing the DAG graph. |
|||||||||
|
|
Depends on what they looked like. I use gitx which makes pictures like this one:
You can compare
|
|||||||||||||||
|
|
gitg: a gtk-based repository viewer, that's new but intresting and usefull |
|||
|
Based on a Graphviz script I found in an answer to a related question, I've hacked up a ruby script that creates a summary view of a git repository. It elides all linear history and just shows "interesting" commits, i.e. those with multiple parents, multiple children, or pointed to by a branch or tag. Here's a snippet of the graph it generates for jquery:
|
|||
|
|
|
For more detailed textual output, please try:
You can write alias in $HOME/.gitconfig
|
||||
|
|
Gitg is a clone of Gitk and GitX for GNOME (it also works on KDE etc.) which shows a pretty colored graph. It is actively developed (as of 2012). It lets you sort the commits (graph nodes) either chronologically or topologically, and hide commits that don't lead to a selected branch. It works fine with large repositories and complex dependency graphs. Sample screenshots, showing the linux-git and linux-2.6 repositories:
|
|||
|
|
|
I don't know about a direct tool, but maybe you can hack a script to export the data into dot format and render it with graphviz. |
|||
|
|
SourceTree is a really good one. It does print out a good looking and medium size history and branch graph: (the following is done on an experimental Git project just to see some branches). Supports Windows 7+ and Mac OS X 10.6+.
|
||||
|
|
|
There's a funky Git commit graph as one of the demos of the Raphael web graphics library. The demo is static, but it should be easy enough to take the code and swap out their static data for a live set of data -- I think it's just Git commit data in JSON format. The demo is here: http://raphaeljs.com/github/impact.html |
|||||
|
|
Very slightly tweaking Slipp's awesome answer, you can use his aliases to log just one branch:
By leaving off the
or even
|
|||
|
|
|
Did you try |
|||||
|
|
These are some of the things I love about this script:
I have an alias using
This is how the output looks like on a terminal:
|
|||
|
|
|
GitGraph Generates a PNG or SVG representation of your Git repository's commit history. |
|||
|
|









