Tool to generate change reports from Subversion logs

前端 未结 4 526
盖世英雄少女心
盖世英雄少女心 2020-12-30 01:54

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

相关标签:
4条回答
  • 2020-12-30 02:35

    one word: trac. trac.edgewall.org

    0 讨论(0)
  • 2020-12-30 02:36

    I use SVNStat to generate these kind of reports nightly.

    0 讨论(0)
  • 2020-12-30 02:39

    An alternative to svnmonitor would be the CommitMonitor.

    0 讨论(0)
  • 2020-12-30 02:43

    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
    
    0 讨论(0)
提交回复
热议问题