Changes between Version 35 and Version 36 of SourceCodeGit


Ignore:
Timestamp:
Feb 8, 2014, 6:15:54 AM (10 years ago)
Author:
Bluefin Tuna
Comment:

Inserted latest version numbers

Legend:

Unmodified
Added
Removed
Modified
  • SourceCodeGit

    v35 v36  
    138138=== Check out a specific tag for compilation ===
    139139
    140 As said above, the code for each release is 'tagged'. For example, the code for version 7.0.65 is tagged with `client_release/7.0/7.0.65`.
     140As said above, the code for each release is 'tagged'. For example, the code for version 7.2.9 is tagged with `client_release/7.2/7.2.9`.
    141141
    142142Run
     
    148148Run
    149149{{{
    150 git tag --list '*/7.0/*'
    151 }}}
    152 to list only the tags matching '/7.0/'.
     150git tag --list '*/7.2/*'
     151}}}
     152to list only the tags matching '/7.2/'.
    153153
    154154Run
    155155{{{
    156 git checkout client_release/7.0/7.0.65; git status
     156git checkout client_release/7.2/7.2.9; git status
    157157}}}
    158 to check out BOINC client version 7.0.65.
     158to check out BOINC client version 7.2.9.
    159159
    160160...and proceed with compilation.