All posts tagged svn

Remove .svn Folders from Project

Navigate to the root of the projects, and execute the following command:

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

NOTE: You can also used “svn export source destination”