Showing posts with label svn bash. Show all posts
Showing posts with label svn bash. Show all posts

Friday, February 19, 2010

Remove .svn folders from a project (bash)

Many thanks to http://snippets.dzone.com/posts/show/2486 for this one:

If you want remove all your .svn directories from a project run this:


find . -name ".svn" -exec rm -rf {} \;