Linux – Delete SVN directories recursively

This is a code snippet to delete all subversion svn directories recursively.

rm -rf `find . -type d -name .svn`

Make sure you are in the project directory before you run this!

Also – you can use “SVN EXPORT” to export the source to a directory with no subversion directories.

Bookmark and Share

Popularity: unranked [?]

Leave a comment

Your comment