You may need to remove subversion stuff from some sources to add them onto another repository. Following bash command can do it assuming you’re in the root directory of the sources: for FILE in `find | grep “.svn”`; do if [ -d $FILE ]; then echo “file: $FILE”; rm -rf $FILE; fi; done