1k views
How to delete all .svn folders in Mac or Linux
This is the simplest way to remove all .svn folders when you want to get rid of all those annoying subversion folders:
Text
- cd /path/to/your/project
- find ./ -name ".svn" | xargs rm -Rf
Submitted by miguelSantirso about 1 year ago — last modified less than a minute ago