Just wanted to check if there is any configuration or parameter to get statistics in a provided date range rather than it’s giving stats from DAY1?
Just wanted to check if there is any configuration or parameter to get statistics
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since StatSVN is running on locale log files, it’s totally possible:
Check out a working copy of your project from Subversion.
svn co svn://server/repo/trunk/modulenameCreate a Subversion log file, specifying the date range you want:
svn log -v -r {2012-05-01}:{2012-05-31} --xml > logfile.logRun StatSVN:
java -jar /path/to/statsvn.jar /path/to/module/logfile.log /path/to/moduleThis command creates the HTML reports in the current directory.
More details are available from the User Manual.