1k visitas
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
Enviado por miguelSantirso hace about 1 year — modificado por última vez hace less than a minute