Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
Similar question to stackoverflow.com/questions/100372/… – Mark Pim Jun 29 '09 at 11:03
8  
@MarkPim: Not really... that's not about git at all. – Henry Merriam Oct 30 '12 at 3:50
1  
I see there's still no chosen answer.  None of these solutions actually solve your problem, do they? ;-/ – Slipp D. Thompson Mar 20 at 20:50

14 Answers

: I have two aliases I normally throw in my git config files:

[alias]
lg1 = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n''          %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
lg = !"git lg1"

git lg/git lg1 looks like this: git lg1

and git lg2 looks like this: git lg2

share|improve this answer
1  
These are really beautiful. My colors are little of though. Do you use some kind of color theme? – oschrenk Mar 12 '12 at 11:18
6  
Yeah, I do. Normal and bright/bold colors are: Black #202020/#555555, Red: #5d1a14/#da4939, Green: #424e24/#a5c261, Yellow: #6f5028/#ffc66d, Blue: #263e4e/#6d9cbe, Magenta: #3e1f50/#a256c7, Cyan: #234e3f/#62c1a1, and White: #979797/#ffffff. – Slipp D. Thompson Mar 21 '12 at 4:12
1  
any way to make different colours for HEAD, branch, remote branch and tag? like what you get with git log --decorate? – Adam Dymitruk Sep 21 '12 at 5:53
1  
looks like I'm going to sift through the source code and see what decorate makes log send to the terminal.. – Adam Dymitruk Sep 24 '12 at 20:14
1  
@SlippD.Thompson Not a bad ROI on $0.02. Take the +s as the ultimate compliment: This is Art! – KM. Apr 4 at 21:54
show 9 more comments

for textual output you can try:

git log --graph --oneline --all

or here's a graphviz alias for drawing the DAG graph.

I personally use gitx, gitk --all and gitnub.

share|improve this answer
4  
i would add --abbrev-commit --decorate, and then it's perfect! – asymmetric Oct 7 '11 at 16:14
--abbrev-commit is implied by --oneline, no? – dwineman Apr 10 '12 at 9:55
@dwineman yes you don't need --abbrev-commit if you use --oneline – Thomas Sep 4 '12 at 11:54

Depends on what they looked like. I use gitx which makes pictures like this one:

simple plot

You can compare git log --graph vs. gitx on a 24-way octopus merge (I took this screenshot a long time ago and it kind of shows its age):

24-way octopus merge

share|improve this answer
9  
D**n, im trying to not buy a mac ;) – krosenvold Jun 29 '09 at 15:46
11  
It's funny... I'd have sworn I heard you say "24-way octopus merge"! – dty Mar 23 '12 at 21:46
Out of curiosity, has anyone attempted to extract GitX's (or another GUI git tool's) drawing routines into a standalone executable? If I'm not mistaken, getting Cocoa to draw into a vector PDF file wouldn't be difficult, and would satisfy the OP's need for high-Q printable imagery. – Slipp D. Thompson Oct 18 '12 at 21:15
Now there's something you don't hear every day... – Chris B Mar 21 at 10:18
Image is gone. Any chance of a re-upload? – naught101 Apr 10 at 0:41

gitg: a gtk-based repository viewer, that's new but intresting and usefull
http://git.gnome.org/browse/gitg
I use it currently

share|improve this answer
I found gitg to be just the ticket. Thanks. – Randy Fay May 22 '11 at 3:48
1  
It seems to be a clone of GitX and a pretty good one at that. Recommend – Yarek T Mar 1 '12 at 11:27

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:

jquery sample

share|improve this answer

For more detailed textual output, please try:

git log --graph --date-order -C -M --pretty=format:"<%h> %ad [%an] %Cgreen%d%Creset %s" --all --date=short

You can write alias in $HOME/.gitconfig

[alias]
    graph = log --graph --date-order -C -M --pretty=format:\"<%h> %ad [%an] %Cgreen%d%Creset %s\" --all --date=short
share|improve this answer
Great!! I got tired of repeatedly switching from terminal to gitk to get a sense of where all my branches are at a given point, so I started looking for a command line equivalent. This is exactly what I was looking for. Thanks!! – danns87 Jan 19 '12 at 18:14

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:

linux-git

linux-2.6

share|improve this answer

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.

share|improve this answer
Try this one github.com/gugod/bin/blob/master/git-graphviz . I didn't have all the dependencies in my corporate environment, so changing those io commands to simple perl `git log [...]` commands worked for me. – Ross Rogers May 5 '12 at 0:27

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+.

enter image description here

http://www.sourcetreeapp.com/

share|improve this answer

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

share|improve this answer
1  
That's the same graph code used on GitHub's impact graphs, no? (e.g. github.com/DmitryBaranovskiy/raphael/graphs/impact) – Slipp D. Thompson Mar 21 '12 at 4:18

Very slightly tweaking Slipp's awesome answer, you can use his aliases to log just one branch:

[alias]
lgBranch1 = log --graph --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative
lgBranch2 = log --graph --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n''          %C(white)%s%C(reset) %C(bold white)— %an%C(reset)' --abbrev-commit
lg = !"git lg1"

By leaving off the --all you can now do

git lgBranch1 <branch name>

or even

gitlgBranch1 --all
share|improve this answer

Did you try gitk or gitk --all ? However it doesn't have a print/save img as function.

share|improve this answer
1  
gitk is efficient but not very beautiful. – Johan Jun 29 '09 at 13:19

git-forest is an excellent perl script I've been using for more than a year and I hardly use the git log command directly any more.

These are some of the things I love about this script:

  • It uses unicode characters to draw the lines in the graph giving a more continuous look to the graph lines.
  • You can combine --reverse with the graph output, which is not possible with the regular git log command.
  • It uses git log internally to grab the list of commits, so all options that you pass to git log can also be passed to this script as well.

I have an alias using git-forest as follows:

[alias]
tree = "forest --pretty=format:\"%C(red)%h %C(magenta)(%ar) %C(blue)%an %C(reset)%s\" --style=15 --reverse"

This is how the output looks like on a terminal:

enter image description here

share|improve this answer

GitGraph

Generates a PNG or SVG representation of your Git repository's commit history.

https://code.google.com/p/gitgraph

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.