How do I recursively delete all .svn directories, starting with the directory I am in?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
migrated from stackoverflow.com Jun 1 '11 at 15:43
|
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.
|
|||
|
|
If you're working in Linux (or equivalent), you can just do the following:
|
|||||
|
|
In any modern UN*X-like system (Linux, Mac OS X, FreeBSD):
find:
|
|||||||
|