ITK/Git: Difference between revisions
No edit summary |
|||
Line 26: | Line 26: | ||
$ git submodule update --init | $ git submodule update --init | ||
For ITKApps the URLs are | |||
<pre> | |||
git://itk.org/ITKApps.git | |||
http://itk.org/ITKApps.git | |||
</pre> | |||
==Branches== | |||
At the time of this writing the repository has the following branches: | |||
* '''master''': Development (default) | |||
* '''nightly-master''': Follows '''master''', updated at 01:00 UTC | |||
* '''hooks''': Local commit hooks ([[Git/Hooks#Local|place]] in .git/hooks) | |||
Release branches converted from CVS have been artificially merged into master. | |||
Actual releases have tags named by the release version number. | |||
=Development= | |||
We provide here a brief introduction to '''ITK''' development with Git. | |||
See the [[Git/Resources|Resources]] page for further information such as Git tutorials. | |||
==Introduction== | |||
We require all commits in ITK to record valid author/committer name and email information. | |||
Use [http://www.kernel.org/pub/software/scm/git/docs/git-config.html git config] to introduce yourself to Git: | |||
$ git config --global user.name "Your Name" | |||
$ git config --global user.email "you@yourdomain.com" | |||
Note that "Your Name" is your ''real name'' (e.g. "John Doe", not "jdoe"). | |||
While you're at it, optionally enable color output from Git commands: | |||
$ git config --global color.ui auto | |||
The <code>--global</code> option stores the configuration settings in <code>~/.gitconfig</code> in your home directory so that they apply to all repositories. | |||
==Hooks== | |||
The '''hooks''' branch provides local commit hooks to be placed in <code>.git/hooks</code>. | |||
It is shared by many <code>public.kitware.com</code> repositories. | |||
See the general [[Git/Hooks|hooks]] information page to set up your local hooks. | |||
==Workflow== | |||
We've chosen to approximate our previous CVS-based development workflow after the initial move to Git, at least while things get settled. | |||
The basic rule is to rebase your work on origin/master before pushing: | |||
git fetch origin | |||
git rebase origin/master | |||
or | |||
git pull --rebase | |||
The server will refuse your push if it contains any merges. | |||
Later we will move to a full [[Git/Workflow/Topic|branchy workflow]] based on topic branches. | |||
=Publishing= | |||
==Pushing== | |||
Authorized developers may publish work directly to <code>itk.org/ITK.git</code> using Git's SSH protocol. | |||
To request access, fill out the [https://www.kitware.com/Admin/SendPassword.cgi Kitware Password] form. | |||
See the [[Git/Publish#Push_Access|push instructions]] for details. | |||
For ITK, configure the push URL: | |||
git config remote.origin.pushurl git@itk.org:ITK.git | |||
For ITKApps, configure the push URL: | |||
git config remote.origin.pushurl git@itk.org:ITKData.git | |||
===Update Hook=== | |||
The itk.org repository has an <code>update</code> hook. | |||
When someone tries to push changes to the repository it checks the commits as documented [[Git/Hooks#update|here]]. | |||
=Resources= | =Resources= | ||
Additional information about Git may be obtained at sites listed [[Git/Resources|here]]. | Additional information about Git may be obtained at sites listed [[Git/Resources|here]]. |
Revision as of 22:07, 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
For ITKApps the URLs are
git://itk.org/ITKApps.git http://itk.org/ITKApps.git
Branches
At the time of this writing the repository has the following branches:
- master: Development (default)
- nightly-master: Follows master, updated at 01:00 UTC
- hooks: Local commit hooks (place in .git/hooks)
Release branches converted from CVS have been artificially merged into master. Actual releases have tags named by the release version number.
Development
We provide here a brief introduction to ITK development with Git. See the Resources page for further information such as Git tutorials.
Introduction
We require all commits in ITK to record valid author/committer name and email information. Use git config to introduce yourself to Git:
$ git config --global user.name "Your Name" $ git config --global user.email "you@yourdomain.com"
Note that "Your Name" is your real name (e.g. "John Doe", not "jdoe"). While you're at it, optionally enable color output from Git commands:
$ git config --global color.ui auto
The --global
option stores the configuration settings in ~/.gitconfig
in your home directory so that they apply to all repositories.
Hooks
The hooks branch provides local commit hooks to be placed in .git/hooks
.
It is shared by many public.kitware.com
repositories.
See the general hooks information page to set up your local hooks.
Workflow
We've chosen to approximate our previous CVS-based development workflow after the initial move to Git, at least while things get settled. The basic rule is to rebase your work on origin/master before pushing:
git fetch origin git rebase origin/master
or
git pull --rebase
The server will refuse your push if it contains any merges. Later we will move to a full branchy workflow based on topic branches.
Publishing
Pushing
Authorized developers may publish work directly to itk.org/ITK.git
using Git's SSH protocol.
To request access, fill out the Kitware Password form.
See the push instructions for details.
For ITK, configure the push URL:
git config remote.origin.pushurl git@itk.org:ITK.git
For ITKApps, configure the push URL:
git config remote.origin.pushurl git@itk.org:ITKData.git
Update Hook
The itk.org repository has an update
hook.
When someone tries to push changes to the repository it checks the commits as documented here.
Resources
Additional information about Git may be obtained at sites listed here.