Return to Snippet

Revision: 34052
at October 16, 2010 10:25 by chrisaiv


Initial Code
find . -name ".svn" -type d -exec rm -rf {} \;

Initial URL
http://snippets.dzone.com/posts/show/2486

Initial Description
You did a checkout when you really wanted to do an export. Now there are tons of .svn folders in your project, and you need them to go away. Shell scripting to the rescue.

Initial Title
SVN: Remove all .svn folders in a directory tree

Initial Tags
svn, find

Initial Language
Bash