1. CVS Notes
-
Don't use cvs remove to make importing easier. Instead, just import and use the joining cvs checkout described below.
-
When updating sourcing with import (which seems to be the preferred way of doing it), some files might be obsolete and not in the newly imported sources, which can sometimes cause Makefiles to break. So, after importing the new sources, do a merge between the two versions:
cvs co -j OLDTAG -j NEWTAG module
-
To get files back from the dead, re-add them with cvs add, even if you have to use find to do a whole tree.
