Recursively remove all .svn directories
Sometimes you need to clear out all of the .svn files and directories. The following command will recursively remove each one of them for you: rm -rf `find . -name .svn`
Sometimes you need to clear out all of the .svn files and directories. The following command will recursively remove each one of them for you: rm -rf `find . -name .svn`