.svn folder manipulation tips
Recursively delete .svn directories
$ rm -rf `find . -type d -name .svn`
Find files not under subversion control
$ svn status | grep -e ^?
How to remove all deleted files from repository
$ svn st | grep '^!' | awk '{print $2}' | xargs svn delete --force
grep excluding .svn dirs
$ grep -r 'content_graphic' assets/js --exclude=*\.svn*
Written by Igor Moiseev
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Shell
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#