Getting a copy of a module out of the repository:
$ cvs checkout module
This will create a directory called module and check the module of the
same name out into it. If you want to check out into a different directory
use (note that the -d most be between the command and the module name:
$ cvs checkout -d directory module
Adding a file to a checked out module:
$ cvs add file
file will be added at the next commit.
Removing a file from a module:
$ cvs remove file
file will be removed at the next commit. cvs remove will
not work unless you delete file first.
|