Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a tool that can display a SVN repository visually ( i.e. pretty charts )? [closed]

Tags:

svn

Real strange.

I cannot find a tool that enables one to display a SVN repository in graphical form.
I would like the ability to see changes in revision / time , branch / time graphs.

Does anyone know of one. Ideally it would be platform neutral or even better web based.

Solutions offered so far in brief:

  • svn-graph
  • Fisheye ( you want how much !£?* )
like image 836
Judioo Avatar asked Aug 16 '08 07:08

Judioo


People also ask

What is SVN tool?

SVN stands for Subversion. So, SVN and Subversion are the same. SVN is used to manage and track changes to code and assets across projects.

What is SVN tortoise tool?

TortoiseSVN is a Subversion client, implemented as a Microsoft Windows shell extension, that helps programmers manage different versions of the source code for their programs. It is free software released under the GNU General Public License. TortoiseSVN.

What is revision graph in SVN?

'SVN Revision Graph' is a graphical representation of history for any resource. Using Revision Graph we can see a resource history with copy operation, applied for this resource.


2 Answers

Fisheye, from Atlassian, looks at an SVN repository and can show you a few graphs. Also provides a handy web interface for blame, diff, etc.

for example, some sample images at one of the demo servers:

  1. pie chart
  2. line change

And if you like some pretty code metrics, here are some samples.

like image 78
David Wengier Avatar answered Sep 19 '22 19:09

David Wengier


You might also give StatSVN a try.

It's written in Java (meets your platform-neutral requirement) and generates a static html tree with your revision history and commit graphs. You can use Ant or a batch file to automate the process of calling it.

I've also heard good things about Trac.

like image 35
jpdaigle Avatar answered Sep 18 '22 19:09

jpdaigle