Changes between Version 3 and Version 4 of SvnRules


Ignore:
Timestamp:
09/30/14 15:06:15 (10 years ago)
Author:
dneise
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnRules

    v3 v4  
    33To check out the software of FACT (or just a part of it) you need to know the URL for the
    44
     5    {{{
    56    user@host:~$ svn checkout <URL>
     7    }}}
    68
    79call.
    810In order to find out this URL, just click on the "Browse Source" button on the upper right side of this page. Browse to the partent folder you want to checkout and copy the URL from your browsers address field to your command line, the URL you copy might look like this:
    911
     12    {{{
    1013    https://trac.fact-project.org/browser/trunk/Mars
     14    }}}
    1115
    1216Note: Before you hit <Enter> replace '/browser/' with '/svn/'. So for the example the call might look like this:
    1317
     18    {{{
    1419    user@host:~$ svn co https://trac.fact-project.org/svn/trunk/Mars mars
     20    }}}
    1521
    1622This call will checkout the current version of Mars form our SVN repository and dump it into a new folder called mars/ in your home folder.