Is there a graph of influence tool for projects other than GitHub?

Are there any tools for building an impact graph , like GitHub, which can be run in repositories that are not in GitHub? Maybe something that spills out a beautiful PNG or HTML file based on <canvas> ?

+6
git github
source share
3 answers

Raphaรซl.js is a JavaScript library for manipulating interactive SVG. They have a demo, which is the impact graph: http://raphaeljs.com/github/impact.html

+5
source share

The only platform I know of can create such a schedule: Hudson and its many plugins .

The plugin for static code analysis , for instances, creates quite advanced graphs.

alt text http://wiki.hudson-ci.org/download/attachments/31457291/graph-difference.png?version=1&modificationDate=1242231043000

None of the plugins offers exactly what you are looking for, but in combination with the Git plugin , this is the beginning for creating new graphs.


Another solution (not free, except for open source projects) would be an online tracker such as FishEye .

It has the ability to generate graphs that are quite complete and much closer to what you want (but again, to a commercial product).

alt text

or

alt text

+2
source share

Well, I also came to this question, hoping to find an easy answer and did not find anyone.

Do not be afraid! I fixed the problem.

Check out https://github.com/jtolds/git-impact

The new project creates good interactive impact graphs from the git repository.

0
source share

All Articles