ITK/Git/Develop: Difference between revisions
(→Setup) |
No edit summary |
||
Line 28: | Line 28: | ||
Our collaboration workflow consists of three main steps: | Our collaboration workflow consists of three main steps: | ||
# Local Development | # Local Development | ||
#* [[#Update|Update]] | #* [[#Update|Update]] | ||
#* [[#Create_a_Topic|Create a Topic]] | #* [[#Create_a_Topic|Create a Topic]] | ||
# Code Review (requires [[ITK/Git/Account#Gerrit|Gerrit access]]) | # Code Review | ||
#* [[# | #* [[#Share_a_Topic|Share a Topic]] (requires [[ITK/Git/Account#Gerrit|Gerrit access]]) | ||
# Integrate Changes | |||
#* [[#Merge_a_Topic|Merge a Topic]] (requires [[ITK/Git/Account#Git|Git push access]]) | |||
#* [[#Delete_a_Topic|Delete a Topic]] | #* [[#Delete_a_Topic|Delete a Topic]] | ||
Line 62: | Line 62: | ||
==Create a Topic== | ==Create a Topic== | ||
All new work must be committed on topic branches. | |||
Name topics like you might name functions: concise but precise. | Name topics like you might name functions: concise but precise. | ||
A reader should have a general idea of the feature or fix to be developed given just the branch name. | A reader should have a general idea of the feature or fix to be developed given just the branch name. | ||
Line 94: | Line 95: | ||
==Share a Topic== | ==Share a Topic== | ||
When a topic is ready for review and possible inclusion, share it by pushing to Gerrit. | |||
Be sure you have registered for [[ITK/Git/Account#Gerrit|Gerrit access]]. | |||
{| style="width: 100%" | {| style="width: 100%" | ||
Line 125: | Line 129: | ||
==Merge a Topic== | ==Merge a Topic== | ||
After a topic has been reviewed and approved in Gerrit, merge it using the ITK Topic Stage repository. | |||
Only authorized developers with [[ITK/Git/Account#Git|Git push access]] to <code>itk.org</code> may perform this step. | |||
{| style="width: 100%" | {| style="width: 100%" | ||
Line 156: | Line 163: | ||
==Delete a Topic== | ==Delete a Topic== | ||
After a topic has been merged upstream, delete your local branch for the topic. | |||
{| style="width: 100%" | {| style="width: 100%" |
Revision as of 21:47, 16 November 2010
This page documents how to develop ITK through Git.
See our table of contents for more information.
Git is an extremely powerful version control tool that supports many different "workflows" for indivudal development and collaboration. Here we document procedures used by the ITK development community. In the interest of simplicity and brevity we do not provide an explanation of why we use this approach. Furthermore, this is not a Git tutorial. Please see our Git resource links for third-party documentation, such as the ProGit Book.
Setup
Before you begin, perform initial setup:
- Register Gerrit access and possibly Git push access.
- Optionally download our one page PDF desk reference.
- Follow the download instructions to create a local ITK clone, or run the shorthand command:
$ git clone --recursive git://itk.org/ITK.git
- Run the developer setup script to prepare your ITK work tree and create Git command aliases used below:
$ ./Utilities/SetupForDevelopment.sh
Workflow
ITK development uses a branchy workflow based on topic branches. Our collaboration workflow consists of three main steps:
- Local Development
- Code Review
- Share a Topic (requires Gerrit access)
- Integrate Changes
- Merge a Topic (requires Git push access)
- Delete a Topic
Update
Update your local master branch: | |
|
Create a Topic
All new work must be committed on topic branches. Name topics like you might name functions: concise but precise. A reader should have a general idea of the feature or fix to be developed given just the branch name.
To start a new topic branch: | |
|
|
Edit files and create commits (repeat as needed): | |
|
When a topic is ready for review and possible inclusion, share it by pushing to Gerrit. Be sure you have registered for Gerrit access.
Checkout the topic if it is not your current branch: | |
|
|
Check what commits will be pushed to Gerrit for review: | |
|
( |
Push commits in your topic branch for review by the community: | |
|
( |
Merge a Topic
After a topic has been reviewed and approved in Gerrit, merge it using the ITK Topic Stage repository.
Only authorized developers with Git push access to itk.org
may perform this step.
Checkout the topic if it is not your current branch: | |
|
|
Push the topic to the ITK Topic Stage repository: | |
|
( |
Ask the topic stage repository to merge the topic: | |
|
( |
Delete a Topic
After a topic has been merged upstream, delete your local branch for the topic.
Checkout and update the master branch: | |
|
|
Delete the local topic branch: | |
|
|
The |