Changes between Version 21 and Version 22 of SourceCodeGit


Ignore:
Timestamp:
Jan 11, 2013, 2:15:13 PM (11 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SourceCodeGit

    v21 v22  
    11[[PageOutline]]
    22
    3 = Getting BOINC source code =
     3= BOINC source code =
     4
     5== Browsing source code on the web ==
     6
     7You can browse the boinc code via [/browser a web-based interface]
     8([http://boinc.berkeley.edu/git alternative]).
     9This is useful for getting individual files, or seeing the revision history.
     10
     11== Getting a copy of the BOINC source ==
     12
     13The BOINC source code is stored in a [http://www.git-scm.com Git] repository.
     14To get the source code on Unix:
     15{{{
     16git clone git://boinc.berkeley.edu/boinc.git
     17or
     18git clone http://boinc.berkeley.edu/git/boinc.git
     19}}}
     20
     21This will give you a copy that you can modify locally,
     22but not push changes to the BOINC repository.
     23For write access, see below.
     24
     25On Windows, you'll need a Git client such as !TortoiseGit (see below).
     26Right-click on the parent directory, select 'Git Clone...',
     27and fill in the dialog with one of the above URLs,
     28with no 'git clone' in front of it.
    429
    530== Branches ==
     
    3762than server_stable for server software'''.
    3863
    39 == Browsing source code via the web ==
    40 
    41 You can browse the boinc code via [/browser a web-based interface]
    42 ([http://boinc.berkeley.edu/git alternative]).
    43 This is useful for getting individual files, or seeing the revision history.
    44 
    4564
    4665== Installing Git ==
    4766
    48 The BOINC source code is stored in a [http://www.git-scm.com Git] repository.
    49 To access this repository you'll need Git client software:
     67To access the BOINC Git repository you'll need Git client software:
    5068
    5169 * On Windows, get a Git client like [SourceCodeGit/Windows Git for Windows (console) and !TortoiseGit (GUI)].
     
    6078
    6179To get a copy of the BOINC source code you don't need to understand Git -
    62 just follow the directions below.
     80just follow the directions above.
    6381However, if you intend to modify BOINC or to look at branches,
    6482you'll need to know something about Git.
     
    6987 * [http://git-scm.com/doc All the rest]: Cheat sheets, tutorials and more videos
    7088
    71 == Getting a copy of the BOINC source ==
    72 
    73 This will give you a copy that you'll be able to modify locally,
    74 but not push changes to the BOINC repository.
    75 For write access, see the next section.
    76 
    77 On Linux, use the the following commands to clone the repository:
    78 {{{
    79 git clone git://boinc.berkeley.edu/boinc.git
    80 or
    81 git clone http://boinc.berkeley.edu/git/boinc.git
    82 }}}
    83 
    84 On Windows, using !TortoiseGit:
    85 
    86 Right-click on the parent directory, select 'Git Clone...',
    87 and fill in the dialog with one of the above URLs,
    88 with no 'git clone' in front of it.
    8989
    9090== Write access to the main repository ==