SCS CVS Quick Start Guide
Warning
Prior to starting 'Basic Setup', you must first setup passwordless authentication.
See UsingSSH for directions.
Basic Setup
From any unix host, such as pamd, ensure all your files for your repository are under the same directory tree.
- Set environment variable by edit your .profile
CVSROOT=dennison@cvs.csit.fsu.edu:/usr/local/cvs
CVS_RSH=ssh
export CVSROOT
export CVS_RSH
setenv CVSROOT dennison@cvs.csit.fsu.edu:/usr/local/cvs
setenv CVS_RSH ssh
Import to your repository on CVS server.
cvs import -m "{message}" {myproject} {myname} {start}
To create a working copy of your directory:
cvs checkout {myproject}
Edit a file and check the differences:
cvs diff
To commit your changes:
cvs commit
Additional Information
For more options, type "cvs help" at the command prompt. For more details, type "man cvs".
Helpful Links
--
RdSmith - 26 Oct 2005
Last changed: 18 Mar 2008