ITK/Git/Download: Difference between revisions
No edit summary |
Jhlegarreta (talk | contribs) (Add the historical label after Change-Id I5b79451da962c95614c65e09679bc8b5c12b6dea was merged) |
||
(4 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{ Historical }} | |||
This page documents how to download ITK through [http://git-scm.com Git]. | This page documents how to download ITK through [http://git-scm.com Git]. | ||
See our [[ITK/Git|table of contents]] for more information. | See our [[ITK/Git|table of contents]] for more information. | ||
Line 18: | Line 20: | ||
[[Git/Trouble#Firewall_Blocks_Port_9418|Connection refused]]? | [[Git/Trouble#Firewall_Blocks_Port_9418|Connection refused]]? | ||
|- | |- | ||
| | | | ||
Line 47: | Line 41: | ||
| | | | ||
:<code>$ git pull</code> | :<code>$ git pull</code> | ||
|align="center"| | |align="center"| | ||
[http://schacon.github.com/git/git-pull.html <code>git help pull</code>] | [http://schacon.github.com/git/git-pull.html <code>git help pull</code>] | ||
|- | |- | ||
| | | | ||
Line 67: | Line 59: | ||
| | | | ||
:<code>$ git checkout --track -b release origin/release</code> | :<code>$ git checkout --track -b release origin/release</code> | ||
|align="center"| | |align="center"| | ||
[http://schacon.github.com/git/git-checkout.html <code>git help checkout</code>] | [http://schacon.github.com/git/git-checkout.html <code>git help checkout</code>] | ||
|- | |- | ||
| | | |
Latest revision as of 14:54, 6 October 2017
This page is currently inactive and is retained for historical reference. Either the page is no longer relevant or consensus on its purpose has become unclear. To revive discussion, seek broader input via a forum such as the village pump. |
This page documents how to download ITK through Git. See our table of contents for more information.
Follow our Git download instructions to install Git.
Clone
Clone ITK using the commands | |
|
|
Clone ITKApps using the commands | |
|
Update
Users that have made no local changes and simply want to update a clone with the latest changes may run | |
|
|
Avoid making local changes unless you have read our developer instructions. |
Release
After cloning your local repository will be configured to follow the upstream master branch by default. This means you will have access to cutting edge features, but along with these may come cutting edge bugs :). One may create a local branch to track the upstream release branch instead, which should guarantee only bug fixes to the functionality available in the latest release: | |
|
|
This local branch will always follow the latest release. Use the above instructions to update it. Alternatively one may checkout a specific release tag: | |
|
|
Release tags never move. Repeat the command with a different tag to get a different release. One may list available tags: | |
|