How to Recursively Remove .svn Directories

recursionsvn

How do I recursively delete all .svn directories, starting with the directory I am in?

Best Answer

Keep in mind that svn provides the "export" command that provides you with a copy of your working tree, but without all the .svn directories sprinkled in. This could be what you want.

$ svn export /tmp/copy_of_my_tree
Related Question