Is there a command that would be useful?
views:
279answers:
4
+2
Q:
What's the best way to remove all .svn directories throughout a directory hierarchy on Mac OS X?
Add -type d just to be sure you don't remove files named .svn?
Jonathan Leffler
2009-03-06 15:28:48
Ok, fair enough, I've added the -type d.
Paul Tomblin
2009-03-06 15:35:41
+4
A:
For systems that support it:
find . -name .svn -delete
or, if they don't support the -delete switch:
find . -name .svn -exec rm -rf {} \;
Jimmy Stenke
2009-03-06 15:30:39
+3
A:
In the root of the working copy folder, do
svn export --force .
Wim Coenen
2009-03-08 14:27:52