25th Aug, 2009

Removing all .svn folders in Linux

To delete all .svn folders in Linux;

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

Done.

Leave a response

Your response:

Categories and Tags

Advertising