Recursively remove all .svn directories
by Andrew on Nov.27, 2009, under Linux
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`
No comments for this entry yet...