Project

git-dag

0.0
No commit activity in last 3 years
No release in over 3 years
A ruby script that generates a 'dot' file (Git DAG tree) for a given Git repository.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 2.5.0
 Project Readme

git-dag

git-dag is a ruby script that generates a DAG tree (in the 'dot' format) for a given Git repository.

Preprequisite

You need to have Ruby installed. Try RVM or rbenv if you don't have one installed.

You need to have Graphviz installed if you want to render the DAG visually. You can install it using the package manager provided by your OS.

For instance, if you use Mac OS X and have homebrew installed, you can do:

$ brew install graphviz

Install

Easy install with RubyGems:

$ gem install git-dag

Usage

To generate a DAG (in the format 'dot') for a Git repository, do

$ git-dag <path_to_git_repo> > history.dot

Use to 'dot' to draw the DAG:

$ dot -Tsvg history.dot -o history.svg

You can pipe the 2 commands together:

$ git-dag <path_to_git_repo> | dot -Tsvg -o history.svg

Note that if it take a good amount of time if your repository has a long history of commits.

Now you can open up 'history.svg' in your browser to see the DAG.

Graphviz supports a lot of other formats, such as jpg, pdf, png, ps2 etc. Please see Graphviz for more info.