Are you new? Read the FAQ and catch up on!
1k views

How to delete all .svn folders in Mac or Linux

This is the simplest way to remove all .svn folders when you want to get rid of all those annoying subversion folders:

Text
  1. cd /path/to/your/project
  2. find ./ -name ".svn" | xargs rm -Rf
  3.  

­

Tags: Plain Text mac os subversion linux

Embed: