Recursively Delete .svn Folders

Sometimes you need to move folders around, and when they are under version control, this can cause problems. If you’re feeling lazy and don’t want to svn export, then run this from the folder you want to scrub:

find . -name .svn | xargs rm -rf

5 Responses to “Recursively Delete .svn Folders”


Leave a Reply