Feeds:
Posts
Comments

Posts Tagged ‘Linux’

Removing all .svn folders in Linux

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.

Read Full Post »