Changes between Version 35 and Version 36 of SourceCodeGit
- Timestamp:
- Feb 8, 2014, 6:15:54 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SourceCodeGit
v35 v36 138 138 === Check out a specific tag for compilation === 139 139 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`.140 As 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`. 141 141 142 142 Run … … 148 148 Run 149 149 {{{ 150 git tag --list '*/7. 0/*'151 }}} 152 to list only the tags matching '/7. 0/'.150 git tag --list '*/7.2/*' 151 }}} 152 to list only the tags matching '/7.2/'. 153 153 154 154 Run 155 155 {{{ 156 git checkout client_release/7. 0/7.0.65; git status156 git checkout client_release/7.2/7.2.9; git status 157 157 }}} 158 to check out BOINC client version 7. 0.65.158 to check out BOINC client version 7.2.9. 159 159 160 160 ...and proceed with compilation.