IGSTK/Git/Download: Difference between revisions

From KitwarePublic
< IGSTK‎ | Git
Jump to navigationJump to search
(Created page with "This page documents how to download IGSTK through [http://git-scm.com Git]. See our table of contents for more information. Follow our [[Git/Download|Git download ...")
 
Line 20: Line 20:
|-
|-
|
|
If you want to run tests, get the <code>Testing/Data</code> submodule:
If you want to run tests, get the <code>Testing/Data</code> submodule. First change directory to the location where the source code is installed and then issue the git command:
|-
|-
|
|

Revision as of 14:40, 17 May 2012

This page documents how to download IGSTK through Git. See our table of contents for more information.

Follow our Git download instructions to install Git.

Clone

Clone IGSTK using the commands

$ git clone git://igstk.org/IGSTK.git
$ cd IGSTK

git help clone

Connection refused?

If you want to run tests, get the Testing/Data submodule. First change directory to the location where the source code is installed and then issue the git command:

$ git submodule update --init

git help submodule

Update

Users that have made no local changes and simply want to update a clone with the latest changes may run

$ git pull
$ git submodule update

git help pull

git help submodule

Avoid making local changes unless you have read our developer instructions.