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
|
|||
|
|
|
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
|
||
|
|
|
Did you try |
||
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|


