|
Modelling clouds and climate |
Starting to use CVS |
| Path: Contents > Using CVS > Starting to use CVS | |
|
Site Map
Contents About CVS Terminology Using CVS (import) (checkout) (update/diff) (commit) (release) Other CVS Commands (log) (add/del) Spetial Topics References Web Contact: Phil Austin Site created with Cheetah. Last updated: Mar 13 2003 |
Starting to use CVScvs checkout (synonyms: co get)For things to work in this section, make sure you go through Setting up CVS section. You will not be working on the SCM files that are in the CVS repository. Instead, CVS will create a seperate working copy of all SCM files that you will be working on. This can be done from withing any directory where you want the model in as follows: $ pwd /home/whatever $ cvs co ubcscm cvs checkout: Updating scm U scm/PARAM.DAT U scm/PRSCOZONE.DAT U scm/SIGMA.DAT ... $ At this point, CVS has "checked out" the source tree called
All of these files are your working copies of the
Other Examples:Check out a project into a certain directory $ cvs co -d scm_project ubcscm $ ls scm_project $ Check out a working copy with a specific tag. Tag is used like a version number $ cvs co -r some_release ubcscm cvs checkout: Updating scm U myproj/README.txt |