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”

One Reply to Remove .svn Folders from Project

  1. Nat says:

    you can also run the command `svn export` on a repository and it will be created in a new folder with no .svn directories.

Leave a Reply