|
Modelling clouds and climate |
Commiting your changes |
| Path: Contents > Using CVS > Commiting your changes | |
|
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 |
Committing your changescvs commit (synonyms: ci com) Now that you have brought your sources up to date with
the rest of the group and tested them, you are ready to
commit your changes to the repository and make them
visible to the rest of the group. It's always safe to
run If the state of the update is as expected, that is, it contains changes which you have not yet committed. $ cvs commit -m "I made some changes" scm_parm.F Checking in scm_parm.F; /nfs/roc/home/cvs/scm_parm.F,v <-- scm_parm.F new revision: 1.2; previous revision: 1.1 done $ If -m option is not used, CVS will start up your favorite editor and prompt you for a log message describing the change. When you exit the editor, CVS will commit your change: Now that you have committed your changes, they are
visible to the rest of the group. When another developer
Runs |