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

前端 未结 11 1259
青春惊慌失措
青春惊慌失措 2020-12-13 02:24

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 ,

相关标签:
11条回答
  • 2020-12-13 03:16

    There is also nice application SmartSVN with nice graph.
    But version with graph is not free.

    0 讨论(0)
  • 2020-12-13 03:18

    Trac includes a source code browser and limited statistics analysis. It's web-based, of course.

    0 讨论(0)
  • 2020-12-13 03:24

    for simplicity, tortoise svn gives a basic revision graph

    0 讨论(0)
  • 2020-12-13 03:27

    I am writing subverion statistics graph generation utility named SVNPlot. It is inspired by the graphs generated by StatSVN. However, the SVNPlot graph generation is in two steps (a) first it creates a sqlite3 database from the subversion log information (b) actual graphs are then generated by extracting the database sqlite database (using simple sql queries).

    I think using sql to extract the graph data from the log information is resulting in greater flexibility and good performance. Right now the SVNPlot only generates graphs but it very easy to extract any other stats from the generated sqlite database.

    SVNPlot is written in python and it uses excellent Matplotlib package to generate the graphs. The code is available on SVNPlot page on google code (license is New BSD license). The sample graphs generated for Rietveld repository are available at http://thinkingcraftsman.in/projects/svnplot/index.htm

    0 讨论(0)
  • 2020-12-13 03:27

    There is also https://github.com/justinmassiot/svn-graph-branches. Although no activity since 2010 and it didn't work for me (not compatible with my dot version).

    0 讨论(0)
提交回复
热议问题