Reputation: 506
I have Subversion repository with a lot of files. I would like to know what files where modified a lot in the specific time. Any suggestions how to do it?
Upvotes: 2
Views: 199
Reputation: 80851
If you want to have a "nice" representation of statistics on your svn repository, check Statsvn.
StatSVN retrieves information from a Subversion repository and generates various tables and charts describing the project development, e.g.
...
- File count Average file size Largest files Files with most revisions
...
As shown here (scroll down to the end), you can have the top modified files in your repository.
Upvotes: 0
Reputation: 35875
First, you can get the list of modified files like this:
svn log -r {2010-11-20}:{2011-11-21} -v
Then you can count the number of modified files using sed
or other parsing tools.
Upvotes: 1