If you are using subversion, at some point you probably tried to take some folders from one repository and try to commit then to another. Since each folder has a hidden .svn folder, subversion will complain that "they are already under version control". Here is how to recursively delete all .svn folders:
find . -name ".svn" -type d -exec rm -rf {} \; -prune -print
No comments:
Post a Comment