Use this command to clean up all .svn folders and contents from an svn directory:
find
. -name
".svn"
-
exec
rm
-rf {} \;
Use this command to clean up all .svn folders and contents from an svn directory:
find
. -name
".svn"
-
exec
rm
-rf {} \;
One could simply use the 'svn export' to extract everything except the .svn content from the WC to a new directory.The advantages being the platform independence, and the WC is kept intact.