An easy way to tell CVS to ignore
these directories is to create a file
named .cvsignore (note the leading
period) in your top-level source
directory
Has anyone verified this with vss?
Plus,does vss have these similar command lines:
* To refresh the state of your source code to that stored in the the source repository, go to your project source directory, and execute cvs update -dP.
* When you create a new subdirectory in the source code hierarchy, register it in CVS with a command like cvs add {subdirname}.
* When you first create a new source code file, navigate to the directory that contains it, and register the new file with a command like cvs add {filename}.
* If you no longer need a particular source code file, navigate to the containing directory and remove the file. Then, deregister it in CVS with a command like cvs remove {filename}.
* While you are creating, modifying, and deleting source files, changes are not yet reflected in the server repository. To save your changes in their current state, go to the project source directory and execute cvs commit. You will be asked to write a brief description of the changes you have just completed, which will be stored with the new version of any updated source file.