svn - Alternative to StatSVN? -


i using statsvn generate graph & table svn, taking long.

is there statsvn plugin jenkins faster or alternative statsvn faster?

check out svnstat, much faster statsvn in experience - order of magnitude or more.

in statsvn's defense, outputs much more detailed repo information svnstat - e.g. commit logs , useful directory & file statistics among others; not worth time run it.

personally, find both statsvn , svnstat useful , frankly complimentary, people's needs , situations can differ of course.

if still want detail statsvn provides, consider 2 options (one, other, or both):

  1. limit verbose log statsvn analyzes - e.g. using svn log's --revision, --stop-on-copy, --limit, --depth, and/or other options.
  2. use statsvn options limit analysis - e.g. -exclude or -no-developer.

focusing on option # 2, example, here statsvn invocation used when bumped same problem report generation taking long...

java -jar "c:\bin\statsvn-0.7.0\statsvn.jar" ^     "c:\scc\someproject\verboselog.xml" ^     "c:\scc\someproject" ^     -output-dir "c:\scc\someproject\statsvn" ^     -include "trunk/**" ^     -exclude "branches/**:tags/**" 

...and decided tags , branches not important (but contributing lengthy analysis).


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -