- Retrieving a local copy of a specified directory <name> under CVS
cvs checkout <name>
- Updating the local copy (the whole directory or a single file <file>) from
the CVS repository
cvs update or cvs update <file>
- Committing changed files (all changed files or a single file <file>) to the
CVS repository
cvs commit -m "<comment>" or
cvs commit -m "<comment>" <file>
- Adding a (new) directory or file <file> to the CVS repository
cvs add <file>
cvs commit -m "<comment>" <file>
- Removing a directory or file <file> from the CVS repository
cvs remove <file>
cvs commit -m "<comment>" <file>
- Reading the log of a file under CVS
cvs log <file>
|
|