vote up 7 vote down star
2

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?

flag

67% accept rate
Similar question to stackoverflow.com/questions/100372/… – Mark Pim Jun 29 at 11:03

5 Answers

vote up 1 vote down

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.

link|flag
vote up 2 vote down

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

link|flag
D**n, im trying to not buy a mac ;) – krosenvold Jun 29 at 15:46
vote up 1 vote down

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

link|flag
gitk is efficient but not very beautiful. – Johan Jun 29 at 13:19
vote up 2 vote down

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.

link|flag
vote up 0 vote down

I'm not sure of any git-specific tools but if you cn get the raw data out of git then you coulld construct graphs of various natures using excel which has an array of options for making things pretty

Possibly look into whether Git has an API for this, or possibly parsing the git output directly for data if you have to

link|flag

Your Answer

Get an OpenID
or

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