IGSTK/Git/Download

From KitwarePublic
< IGSTK‎ | Git
Jump to navigationJump to search

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.