ITK/Git/Develop: Difference between revisions
(Created page with "This page documents how to develop ITK through [http://git-scm.com Git]. See our table of contents for more information. Git is an extremely powerful version control...") |
|||
Line 9: | Line 9: | ||
=Introduction= | =Introduction= | ||
Before you begin, perform initial setup: | |||
# Register [[ITK/Git/Account#Gerrit|Gerrit access]] and possibly [[ITK/Git/Account#Git|Git push access]]. | |||
# Follow the [[ITK/Git/Download#Clone|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: | |||
:<code>$ ./Utilities/SetupForDevelopment.sh</code> | |||
ITK development uses a [[Git/Workflow/Topic|branchy workflow]] based on topic branches. | ITK development uses a [[Git/Workflow/Topic|branchy workflow]] based on topic branches. | ||
Line 16: | Line 23: | ||
# [[#Code_Review|Share Changes]]: Code Review with Gerrit (requires [[ITK/Git/Account#Gerrit|Gerrit access]]) | # [[#Code_Review|Share Changes]]: Code Review with Gerrit (requires [[ITK/Git/Account#Gerrit|Gerrit access]]) | ||
# [[#Topic_Stage|Integrate Changes]]: Merge using Topic Stage (requires [[ITK/Git/Account#Git|Git push access]]) | # [[#Topic_Stage|Integrate Changes]]: Merge using Topic Stage (requires [[ITK/Git/Account#Git|Git push access]]) | ||
=Local Development= | =Local Development= |
Revision as of 19:24, 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:
- Create Changes: Develop Locally (requires no special access)
- Share Changes: Code Review with Gerrit (requires Gerrit access)
- Integrate Changes: Merge using Topic Stage (requires Git push access)
Local Development
Update
Update your local master branch: | |
|
Create a Topic Branch
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): | |
|
Code Review
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: | |
|
( |
Topic Stage
Integrate a Topic Branch
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 Branch
Checkout and update the master branch: | |
|
|
Delete the local topic branch: | |
|
|
The |