Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a good tool to generate change reports from Subversion logs.

We have big team and many commits every day. I'm looking for some tool to show changes in all files. We are using Subversion, so I'm looking some tool that can read Subversion logs.

share|improve this question

4 Answers

svn2cl generates nice html pages from an svn log http://ch.tudelft.nl/~arthur/svn2cl/

To create a html page instead of the default text output, run

svn log --xml -v > log.xml
xsltproc.exe --nowrite --nomkdir --nonet -o changelog.html svn2html.xsl log.xml
share|improve this answer

An alternative to svnmonitor would be the CommitMonitor.

share|improve this answer
really amazing tool, thanks for posting it! – jadook Apr 27 '11 at 21:55
@Stefan - does it checks for one user or for all users? – Varun Feb 8 '12 at 5:33
@Varun checks for all users. – Diogo Cardoso Jun 19 '12 at 16:54

I use SVNStat to generate these kind of reports nightly.

share|improve this answer

one word: trac. trac.edgewall.org

share|improve this answer
we use this at work too, it is an amazing tool, if only for tracking changes made. But there is so much more to it – Andrew Cox Dec 31 '08 at 13:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.