Changes between Version 1 and Version 2 of SvnRules


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

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnRules

    v1 v2  
     1== Checking out ==
     2
     3To check out the software of FACT (or just a part of it) you need to know the URL for the
     4
     5    user@host:~$ svn checkout <URL>
     6
     7call.
     8In 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
     10    https://trac.fact-project.org/browser/trunk/Mars
     11
     12Note: Before you hit <Enter> replace '/browser/' with '/svn/'. So for the example the call might look like this:
     13
     14    user@host:~$ svn co https://trac.fact-project.org/browser/trunk/Mars mars
     15
     16This 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.
     17
     18
     19== Before you commit something ==
     20
    121Although the svn is a versioning system which keeps the history, it should be kept clean as much as possible. We are all humans, so we make mistakes, but svn should help us to cure real mistakes as fast as possible, not be sloppy and create more mistakes.
    222