Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What reporting is available for svn?

Tags:

svn

audit

We are in the process of moving to SVN.

Unfortunately for us, we are audited periodically, where the auditors require information like:
Histories of changes to files
History of access to SVN
New files Added
Changes in files

Is there a tool which can produce these reports for us (or some of these)?

like image 834
Bravax Avatar asked Jan 21 '09 19:01

Bravax


1 Answers

StatSVN is a light weight subversion report generator. http://www.statsvn.org/

  1. first generate the verbose log file - svn log

  2. run StatSVN , it is a single jar file.

StatSVN provides a list of metrics:

  • which file is changed the most
  • how many lines are added
  • who is contributing more
like image 86
sundar venugopal Avatar answered Sep 17 '22 22:09

sundar venugopal