NIF CVS quick start

OS X users

*Be sure the have xcode tools installed for the CVS client.  You can download and install it here:

https://developer.apple.com/xcode/

1.) Create a folder where you want the source code to be

2.) Open your terminal and change directories to the directory you just created, then run the following:

export CVS_RSH=ssh
export CVSROOT=username@cvs.crbs.ucsd.edu:/CVSROOT
cvs co NIF/nifgwt

To get latest updates from CVS, change directories to your source code (e.g. cd NIF/nifgwt)

cvs update -d

To add a new file under CVS

cvs add name_of_file

To check in a new revision of a exsiting file

cvs ci -m "Enter comment here" name_of_file
  • No labels