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):
- limit verbose log statsvn analyzes - e.g. using
svn log
's--revision
,--stop-on-copy
,--limit
,--depth
, and/or other options. - 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
Post a Comment