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

link|improve this question
1  
What platform -- Windows? Linux/UNIX? Something else? – Chris J Jun 1 '11 at 15:36
possible duplicate of Command to recursively remove all .svn directories on Windows – Chris J Jun 1 '11 at 15:37
It's on Linux, Debian – FinalForm Jun 1 '11 at 15:38
Funny enough, I needed this in the morning when committing something to a mercurial repository. I ended up adding everything and removing the .svn folders before committing instead. And now you come up with this question, apparently Ned's solution is what I needed... – Tom Wijsman Jun 1 '11 at 18:49
feedback

migrated from stackoverflow.com Jun 1 '11 at 15:43

This question came from our site for professional and enthusiast programmers.

3 Answers

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
link|improve this answer
this won't work for a repo, you have no access to (e.g. zipped and mailed to you) – mbx Aug 8 '11 at 15:24
feedback

If you're working in Linux (or equivalent), you can just do the following:

find . -name .svn -exec rm -rf {} \;
link|improve this answer
1  
Or, better, and as Piskvor mentions, use -type d to ensure that one isn't accidentally deleting something that isn't a directory. – JdeBP Jun 1 '11 at 21:10
feedback

In any modern UN*X-like system (Linux, Mac OS X, FreeBSD):

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

find:

  • in the current directory
  • directories
  • with name .svn
  • and when found, run rm -rf on each
link|improve this answer
2  
That's almost the canonical idiom. You forgot xargs to reduce the number of rm processes needed: find . -type d -name '.svn' -print0 | xargs -0 rm -rf -- – JdeBP Jun 1 '11 at 21:12
To add to @JdeBP's comment: Some find implementations also support -exec rm -rf {} + or even -delete to achieve the same thing. – grawity Jun 2 '11 at 11:06
feedback

Your Answer

 
or
required, but never shown