Changes between Version 55 and Version 56 of SourceCodeGit
- Timestamp:
- Jul 27, 2015, 2:50:12 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SourceCodeGit
v55 v56 3 3 = BOINC source code = 4 4 5 The BOINC source code is maintained in [http://www.git-scm.com Git] repositories: 6 7 * You can view and browse the available repositories at [https://github.com/BOINC github.com/BOINC]. 8 * You can download the BOINC source code as a compressed archive from [https://github.com/BOINC/boinc/releases here]. 9 5 The BOINC source code is maintained in a [https://github.com/BOINC github.com/BOINC Git repository on Github]: 10 6 Github allow you to browse the source trees, get individual files, and view the revision history. 11 7 12 = Getting the code directly using Git = 13 14 It is easier to get the source as a tarball or zipfile as indicated above. 15 However, you may want to use [http://www.git-scm.com Git] directly instead. 8 = Getting the code using Git = 16 9 17 10 == Installing Git == … … 33 26 Recommended reading/watching: 34 27 35 * [http://vimeo.com/14629850 Getting Git]: 1 hour video (technical, but highly recommended)36 28 * [http://git-scm.com/book Pro Git]: Great free online book (also commercially available in print!) 37 29 * [http://git-scm.com/doc All the rest]: Cheat sheets, tutorials and more videos 38 30 39 == Cloning the remoteGit repository ==40 41 To clone the repository into a local directory called (for example) 'boinc', run one of these console commands:31 == Cloning the Git repository == 32 33 To clone the repository into a local directory called (for example) 'boinc', run the commands: 42 34 43 35 {{{ … … 69 61 }}} 70 62 63 == Changing your repository origin == 64 65 Prior to 27 July 2015, the main BOINC repository was on boinc.berkeley.edu rather than Github. 66 If you cloned a repository from here, you'll need to change its origin to Github. 67 On Unix you can do this with the command 68 {{{ 69 git remote set-url origin https://github.com/BOINC/boinc 70 }}} 71 On Windows with Tortoisegit: 72 * right-click on your repo folder 73 * select Settings 74 * in the left column, select Remote (under Git) 75 * select "origin" in the Remote: list 76 * change the URL to https://github.com/BOINC/boinc.git 77 * click Apply 78 71 79 == Working with the local Git repository == 72 80 … … 136 144 === Tags & Branches === 137 145 138 For all software other than the client (i.e., server, web, and API) 139 use the master branch. 146 For all software other than the client (i.e., server, web, and API) use the master branch. 140 147 Don't use a client tag or branch; the server software in it probably isn't stable. 141 148 … … 158 165 (let's say because of the need for a immediate bugfix) 159 166 may be done in a remote branch called 'client_release/6/6.12'. 167 168 Some tagged versions are available as compressed archives from [https://github.com/BOINC/boinc/releases here]. 160 169 161 170 Run `git remote show origin` to list the remote branches.