Changes between Version 3 and Version 4 of SvnRules
- Timestamp:
- 09/30/14 15:06:15 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SvnRules
v3 v4 3 3 To check out the software of FACT (or just a part of it) you need to know the URL for the 4 4 5 {{{ 5 6 user@host:~$ svn checkout <URL> 7 }}} 6 8 7 9 call. 8 10 In 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: 9 11 12 {{{ 10 13 https://trac.fact-project.org/browser/trunk/Mars 14 }}} 11 15 12 16 Note: Before you hit <Enter> replace '/browser/' with '/svn/'. So for the example the call might look like this: 13 17 18 {{{ 14 19 user@host:~$ svn co https://trac.fact-project.org/svn/trunk/Mars mars 20 }}} 15 21 16 22 This 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.