Posts Tagged ‘Maintenance’

How to delete the .svn folders recursively?

Friday, June 12th, 2009

You can delete the .svn folders recursive by using the following command:


rm -rf `find . -type d -name .svn`