Changes between Version 7 and Version 8 of ropp_repository


Ignore:
Timestamp:
2008-09-17T14:28:24Z (16 years ago)
Author:
Dave Offiler
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ropp_repository

    v7 v8  
    1818To [http://svnbook.red-bean.com/en/1.0/re04.html checkout] the latest development (trunk) versions:
    1919{{{
    20 svn checkout https://svn.grassaf.org/ropp/ropp_src/trunk .
    21 svn checkout https://svn.grassaf.org/ropp/ropp_bld/trunk .
    22 svn checkout https://svn.grassaf.org/ropp/ropp_doc/trunk .
    23 svn checkout https://svn.grassaf.org/ropp/ropp_test/trunk .
     20svn checkout https://svn.grassaf.org/ropp/ropp_src/trunk  ./trunk
     21svn checkout https://svn.grassaf.org/ropp/ropp_bld/trunk  ./trunk
     22svn checkout https://svn.grassaf.org/ropp/ropp_doc/trunk  ./trunk
     23svn checkout https://svn.grassaf.org/ropp/ropp_test/trunk ./trunk
    2424}}}
    2525This will check out the source code, build support, documentation, and test folder, respectively to the local working directory.
    2626
     27'''Checking out old release versions'''
     28
     29To checkout the older (tagged) release versions:
     30{{{
     31svn checkout https://svn.grassaf.org/ropp/ropp_src/tags/<ver>  ./<ver>
     32svn checkout https://svn.grassaf.org/ropp/ropp_bld/tags/<ver>  ./<ver>
     33svn checkout https://svn.grassaf.org/ropp/ropp_doc/tags/<ver>  ./<ver>
     34svn checkout https://svn.grassaf.org/ropp/ropp_test/tags/<ver> ./<ver>
     35}}}
     36This will check out the tagged source code, build support, documentation, and test folder, respectively to the local working directory. Here, <ver> is the tagged release version, e.g. 1.1, 2.0 etc. Note that ropp_bld is relatively new and does not currently have any tags set.
     37
     38=== Tags ===
     39
     40A [http://svnbook.red-bean.com/en/1.0/ch04s06.html tag] is just [http://svnbook.red-bean.com/en/1.0/re07.html copy] or snapshot of a a particular revision of the repository. In the case of ROPP, a copy taken from the head of trunk at the time that the distribution files for a release were built. You could just as well checkout the revision number instead, but a tag is easier to remember!
    2741
    2842== Branches ==