The well known way is svn export. Some times this command is not applicable. You can use this simple shell command in this case (Linux/*nix only).
find destination/directory_name/ -name .svn -type d | xargs -n 1 rm -rf
You need to change destination/directory_name/ to your real path, what you want clean.
0 Responses to “How to clean .svn directories from subversion working copy?”