Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any tool that will document an SVN repository? [closed]

I would like to analyze and document one of our svn repositories. I am looking for the best tool that will make a report based on the log of the svn repository for each revision number tag, branch, etc. Is there any free/paid tool available for this?

like image 637
Geo Avatar asked Jul 28 '09 14:07

Geo


2 Answers

Have you considered StatSVN? From their site:

StatSVN retrieves information from a Subversion repository and generates various tables and charts describing the project development

It includes reports for things like:

  • Timeline for the lines of code
  • Lines of code for each developer
  • Repository Tags Number of LOC per version.
  • Repository tree with file count and lines of code
  • Evolution of LOC and the amount of change per day

Another worth considering is svnplot which reads statistics on the SVN repo into an SQLite database for analysis. It generates various statistics on its own, but also allows you to make custom queries against the database.

like image 60
Tim Henigan Avatar answered Oct 12 '22 11:10

Tim Henigan


With TortoiseSVN you can create a sparse checkout of the entire repository, then right-click the working copy folder and click Revision graph to get a graphical representation.

like image 37
Wim Coenen Avatar answered Oct 12 '22 12:10

Wim Coenen