bash$ export CVSROOT=:pserver:anonymous@cvs.math.utexas.edu:/home/cvs/gcl bash$ cvs login (Logging in to anonymous@cvs.math.utexas.edu) CVS password: anonymous bash$
cvs checkout -r Version2_3 gcl
or
cvs checkout gcl
this will create a directory gcl with the CVS information
in it, about which release this is. One could later do
cd gcl cvs update -r HEAD .and the tree would be updated to match the most current files in the tree. You could then switch back to release Version2_3 by doing
cd gcl cvs update -r Version2_3 .