ITK/Git: Difference between revisions

From KitwarePublic
< ITK
Jump to navigationJump to search
No edit summary
Line 29: Line 29:
=Resources=
=Resources=


Additional information about Git may be obtained at these sites:
Additional information about Git may be obtained at sites listed [[Git/Resources|here]].
 
* [http://git-scm.com Git Homepage]
* [http://git.wiki.kernel.org/index.php/GitDocumentation Git Documentation Wiki]
* [http://book.git-scm.com/ Git Community Book]
* [http://www.kernel.org/pub/software/scm/git/docs/everyday.html Everyday Git]
* [http://github.com/guides/git-cheat-sheet Git Cheat-Sheet]
* [http://progit.org/book/ Pro Git]
* [http://marklodato.github.com/visual-git-guide/ A Visual Git Reference]

Revision as of 21:41, 23 July 2010

ITK version tracking and development is hosted by Git.

Official Repository

One may browse the repository online using the Gitweb interface at http://itk.org/gitweb.

Cloning

One may clone the repository using git clone through the native git protocol:

$ git clone git://itk.org/ITK.git

or through the (less efficient) http protocol:

$ git clone http://itk.org/ITK.git

All further commands work inside the local copy of the repository created by the clone:

$ cd ITK

If you want to run the tests you also need to clone the Testing/Data submodule:

$ git submodule update --init

Resources

Additional information about Git may be obtained at sites listed here.