To delete all .svn folders in Linux;
- Move to your current/working directory (i.e) your project folder (ex: /usr/local/myproject/test).
- This will delete all the .svn folders under this directory.
- Execute the following command;
-
find ./ -name “.svn” | xargs rm -Rf
Done.
