How to remove all .svn folder in Linux / Mac?

Few days ago, i’m looking for way to delete all the .svn folder. Today i found the way to delete all .svn folder from my project folder in Linux.

To delete all .svn folder in Linux just follow the steps below:-

  • 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.

By the way, you also can apply this method to remove all .svn folder in Mac machine.

Share and Enjoy:
  • Reddit
  • BlinkList
  • del.icio.us
  • Digg
  • Fark
  • IndianPad
  • StumbleUpon
  • YahooMyWeb
Posted at June 24th, 2008 by chua

If you think this article helps you to solve your problem and clear your headache, feel free to buy me a drink :)

Related Post

Leave a Reply