GEOS-5 Checkout and Build Instructions: Difference between revisions

Line 9: Line 9:


% cvs -d $CVSROOT checkout -r TAGNAME MODULENAME
% cvs -d $CVSROOT checkout -r TAGNAME MODULENAME
Here, $CVSROOT specifies the CVS repository we'll be getting the code from, MODULENAME is the particular module (set of code) we'll be checking out, and TAGNAME is a particular version of that module.  Let's fill in the blanks:
% cvs -d :ext:c-sourcemotel.gsfc.nasa.gov:/cvsroot/esma co -r GEOSdas-2_1_6 GEOSagcm
So our module is ''GEOSagcm'' and the tag is ''GEOSdas-2_1_6''.  Note that I substituted the shortcut ''co'' for ''checkout'' in the above command.
The above command is generally valid.  You ought to be able to execute it and checkout some code.  The assumption here is that your username on '''sourcemote''' is the same as on the machine you are checking the code out on.  If not, modify the command like this:
% cvs -d :ext:SOURCEMOTEL_USERNAME@c-sourcemotel.gsfc.nasa.gov:/cvsroot/esma co -r GEOSdas-2_1_6 GEOSagcm