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


/ Published in: Bash
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. for file in *; do echo "$file: "; /usr/bin/svn log -q $file | grep 'r[0-9][0-9]*' | wc -l; done

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.