Some pointers my advisor gave me on this beast.
- Create CVSROOT directory (to create, one time only)
- cd dir first, where dir is the directory to be put in CVSROOT
cvs -d a.b.c.edu:/home/CVSROOT import -m "message" ar.baba "vendortag" "releasetag"
- Checkout (to start, one time only)
- copy the directory fafa from CVSROOT
cvs -d a.b.c.edu:/home/CVSROOT checkout ar.baba
- Commit new work from within your copy of
commit -m ""
- Update changed or new files/directories from the root
-
cvs update -d
- Add a file or directory
cvs add main.tex
cvs commit -m ""
- Delete file
-
rm file
cvs delete file
cvs commit -m ""
Last modified: Fri Jun 13 16:35:16 EDT 2008