How to delete all .svn directories
Thursday, July 30th, 2009In Linux, if you want to remove all .svn files and folders within a directory, navigate to the directory in your terminal and use:
find . -name ".svn" -type d -exec rm -rf {} \;
In Linux, if you want to remove all .svn files and folders within a directory, navigate to the directory in your terminal and use:
find . -name ".svn" -type d -exec rm -rf {} \;