JasonDaly.name

PHP, Ruby, Symfony, Rails, Doctrine, MooTools. Web Development.
March 25, 2009

Clear /.svn Directories From a Working Copy

Below is one way to quickly and simply clear all /.svn directories from a SVN working copy; useful in a variety of situations.

find . -type d -name .svn -exec rm -rf '{}' ; -print 2> /dev/null

Tags: svn bash code tips subversion linux