How do I recursively delete all .svn directories, starting with the directory I am in?
feedback
|
migrated from stackoverflow.com Jun 1 '11 at 15:43
This question came from our site for professional and enthusiast programmers.
|
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.
| |||
feedback
|
|
If you're working in Linux (or equivalent), you can just do the following:
| |||||
feedback
|
|
In any modern UN*X-like system (Linux, Mac OS X, FreeBSD):
find:
| |||||||
feedback
|