|
Pete has joined the Telltale group. He must first set his CVSROOT environment variable to point to the source tree. |
setenv CVSROOT /home/lait1/src (place in .login, or appropriate location) |
|
Next, he must checkout the code. This creates a copy of the source- tree for telltale, rooted in the current directory, or ~pete/mywork/telltale/ |
cd ~pete/mywork cvs checkout telltale |
|
Pete decides that, in addition to his modifications, a new file is needed. He must inform CVS. |
cvs add newfile.h |
|
After a while, Pete feels he should check in his changes (he should feel this way often). He must: 1. Update his version 2. Check that code is okay, or fix 3. Check in his changes 4. Change group information |
(from ~pete/mywork/telltale) cvs update (recompile, debug...) cvs commit (from MST root) chgrp -R telltale telltale |