Mar 22, 2010

How to delete all .svn folder in Linux?

  • Start Terminal
  • change your current directory to your project folder (ex: /Users/me/Sites/project_a)
  • type find ./ -name ".svn" | xargs rm -Rf
  • and enter.
Done, all your .svn folder has been deleted.

No comments:

Post a Comment

Visual Studio Keyboard Shortcuts

Playing with keyboard shortcuts is very interesting and reduce the headache of using the mouse again and again while programming with visu...