Delete SVN folders

I’m migrating some projects from SVN to Git, so I want to get rid of the .svn folders recursively for the project:

find d . -name .svn -exec rm -rf '{}' \; -print

1 Comment

  • Other option: rm -rf `find . -type d -name .svn`

    | Sunday, 11 January 2009

Leave a comment