ITK/Git/Develop: Difference between revisions
No edit summary |
|||
Line 8: | Line 8: | ||
Please see our [[Git/Resources|Git resource links]] for third-party documentation, such as the [http://progit.org/book/ ProGit Book]. | Please see our [[Git/Resources|Git resource links]] for third-party documentation, such as the [http://progit.org/book/ ProGit Book]. | ||
=Introduction= | ==Introduction== | ||
Before you begin, perform initial setup: | Before you begin, perform initial setup: | ||
Line 20: | Line 20: | ||
Our collaboration workflow consists of three main steps: | Our collaboration workflow consists of three main steps: | ||
# [[# | # Local Development (requires no special access) | ||
# [[# | #* [[#Update|Update]] | ||
# [[# | #* [[#Create_a_Topic|Create a Topic]] | ||
# Code Review (requires [[ITK/Git/Account#Gerrit|Gerrit access]]) | |||
#* [[#Share_a_Topic|Share a Topic]] | |||
# Integrate Changes (requires [[ITK/Git/Account#Git|Git push access]]) | |||
#* [[#Merge_a_Topic|Merge a Topic]] | |||
#* [[#Delete_a_Topic|Delete a Topic]] | |||
==Update== | ==Update== | ||
Line 49: | Line 52: | ||
|} | |} | ||
==Create a Topic | ==Create a Topic== | ||
Name topics like you might name functions: concise but precise. | Name topics like you might name functions: concise but precise. | ||
Line 82: | Line 85: | ||
|} | |} | ||
==Share a Topic== | |||
==Share a Topic | |||
{| style="width: 100%" | {| style="width: 100%" | ||
Line 115: | Line 116: | ||
|} | |} | ||
==Merge a Topic== | |||
== | |||
{| style="width: 100%" | {| style="width: 100%" | ||
Line 148: | Line 147: | ||
|} | |} | ||
==Delete a Topic | ==Delete a Topic== | ||
{| style="width: 100%" | {| style="width: 100%" |
Revision as of 21:15, 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.
Introduction
Before you begin, perform initial setup:
- Register Gerrit access and possibly Git push access.
- Follow the download instructions to create a local ITK clone.
- Run the developer setup script to prepare your ITK work tree and create Git command aliases used below:
$ ./Utilities/SetupForDevelopment.sh
ITK development uses a branchy workflow based on topic branches. Our collaboration workflow consists of three main steps:
- Local Development (requires no special access)
- Code Review (requires Gerrit access)
- Integrate Changes (requires Git push access)
Update
Update your local master branch: | |
|
Create a Topic
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): | |
|
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
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
Checkout and update the master branch: | |
|
|
Delete the local topic branch: | |
|
|
The |