Clean all .svn or cvs diretories from your source
You need or want to import your code into a new svn or cvs repository. But, the source code is filled with CVS/.svn folders from an old repository. Here’s a quick way to do it (Unix):
find . -type d -name CVS | xargs rm -rf