== Setting up CVS, Using csh ==
pico .cshrc        // edit '.cshrc' using pico editor
setenv CVSROOT /afs/cs.unc.edu/home/vanbusum/cvsroot

== Miscellaneous Commands ==
set                // check values of variables, but not environment variables
ls -a              // list all files

== CVS Check-Out and Check-In ==
cvs co ET_Project // (just initially)
cvs update        // (subsequently)
cvs add [file]    // (just initially)
cvs commit [file] // (subsequently)
[this opens a file, using vi editor]
Esc : wq          // (escape to command-line mode, write, and quit)