find
. -name
".svn"
-
exec
rm
-rf {} \;
from http://www.dzone.com/snippets/remove-all-svn-folders
and
http://stackoverflow.com/questions/1294590/how-to-remove-all-svn-directories-from-my-application-directories
find
. -name
".svn"
-
exec
rm
-rf {} \;
from http://www.dzone.com/snippets/remove-all-svn-folders
and
http://stackoverflow.com/questions/1294590/how-to-remove-all-svn-directories-from-my-application-directories
svn export probably solves the problem a lot better.