Changes between Version 9 and Version 10 of SvnOverview


Ignore:
Timestamp:
02/26/07 00:12:47 (17 years ago)
Author:
arango
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnOverview

    v9 v10  
    11== Introduction to Subversion (svn) ==
    22
    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.
     3Subversion ([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.
    44
    55Below 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.
     
    1616 * The repository referred to below contains the tagged and latest version of ROMS/TOMS Framework:
    1717 {{{
    18      https://www.myroms.org/svn/Models
     18     https://www.myroms.org/svn/src
    1919}}}
    2020
     
    2424 * {{{   svn action from to {optional_qualifiers}}}}
    2525To 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}}}
    2727To check-out the files from the ROMS repository branches, tags, and trunk, enter:
    28  * {{{   svn checkout https://www.myroms.org/svn/Models mydir}}}
     28 * {{{   svn checkout https://www.myroms.org/svn/src mydir}}}
    2929
    3030You 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].