Changes between Version 9 and Version 10 of SvnOverview
- Timestamp:
- 02/26/07 00:12:47 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SvnOverview
v9 v10 1 1 == Introduction to Subversion (svn) == 2 2 3 Subversion ([http://subversion.tigris.org/ svn]) is a tool for managing software development that keeps track of who modified what and allows returning to a previous version if changes don't do what was expected. All the ROMS/TOMS files are stored on '''www.myroms.org/svn''' in a repository named ''' Models'''. Users can check out the most recent version to their local machines with a '''svn client'''. Since this is the official version of the code, only the developers are allowed to change this repository. However, users can have their own repository on their local computer.3 Subversion ([http://subversion.tigris.org/ svn]) is a tool for managing software development that keeps track of who modified what and allows returning to a previous version if changes don't do what was expected. All the ROMS/TOMS files are stored on '''www.myroms.org/svn''' in a repository named '''src'''. Users can check out the most recent version to their local machines with a '''svn client'''. Since this is the official version of the code, only the developers are allowed to change this repository. However, users can have their own repository on their local computer. 4 4 5 5 Below is a general description of how subversion works. Please look at the [http://svnbook.red-bean.com svn book] for more detailed information. Brief instructions for using two GUI clients (one for PC and one for Linux) we've tried are included. … … 16 16 * The repository referred to below contains the tagged and latest version of ROMS/TOMS Framework: 17 17 {{{ 18 https://www.myroms.org/svn/ Models18 https://www.myroms.org/svn/src 19 19 }}} 20 20 … … 24 24 * {{{ svn action from to {optional_qualifiers}}}} 25 25 To check-out the files from the ROMS repository trunk (latest version), enter: 26 * {{{ svn checkout https://www.myroms.org/svn/ Models/trunk mydir}}}26 * {{{ svn checkout https://www.myroms.org/svn/src/trunk mydir}}} 27 27 To check-out the files from the ROMS repository branches, tags, and trunk, enter: 28 * {{{ svn checkout https://www.myroms.org/svn/ Modelsmydir}}}28 * {{{ svn checkout https://www.myroms.org/svn/src mydir}}} 29 29 30 30 You only check out once, after that, a hidden directory called '''.svn''' exists to keep track of the source, destination and a bunch of other information. For more detail on command line use and syntax, see the [http://svnbook.red-bean.com svn book].