Manage projects with CVS

Auge David Hausheer
Google
Web hausheer.osola.com

Set CVSROOT:

CVSROOT=/var/lib/cvs

Import new module into CVS

cvs import -m <message> <repository> <vendor-tag> <release-tag>
cvs import -m "Imported sources" xyz/module first start

Checkout new module from CVS:

cvs checkout <module>

Add new stuff to CVS control:

cvs add <files>

Commit changes to CVS:

cvs commit

Update from CVS:

cvs update


Related topics