Return to Snippet

Revision: 5608
at March 19, 2008 04:50 by JacobSingh


Initial Code
for file in *; do echo "$file: "; /usr/bin/svn log -q $file |  grep 'r[0-9][0-9]*' | wc -l; done

Initial URL


Initial Description
Useful when trying to cleanup a large repo to see where you've made the most changes

Initial Title
Find how many commits / revisions have been made per directory in svn

Initial Tags
svn

Initial Language
Bash