ITK/Git/Develop: Difference between revisions
No edit summary |
|||
Line 98: | Line 98: | ||
:<code>$ git pullall</code> | :<code>$ git pullall</code> | ||
|align="center"| | |align="center"| | ||
[http:// | [http://schacon.github.com/git/git-checkout.html <code>git help checkout</code>] | ||
<br/> | <br/> | ||
[http://itk.org/gitweb?p=ITK.git;a=blob;f=Utilities/DevelopmentSetupScripts/SetupGitAliases.sh;hb=HEAD <code>alias.pullall</code>] | [http://itk.org/gitweb?p=ITK.git;a=blob;f=Utilities/DevelopmentSetupScripts/SetupGitAliases.sh;hb=HEAD <code>alias.pullall</code>] | ||
<br/> | <br/> | ||
([http:// | ([http://schacon.github.com/git/git-pull.html <code>pull</code>] and | ||
[http:// | [http://schacon.github.com/git/git-submodule.html <code>submodule</code>] <code>update</code>) | ||
|} | |} | ||
Line 122: | Line 122: | ||
:''(If you are fixing a bug in the latest release then substitute'' <code>origin/release</code> ''for'' <code>origin/master</code>''.<br/>Then run'' <code>git submodule update</code>''.)'' | :''(If you are fixing a bug in the latest release then substitute'' <code>origin/release</code> ''for'' <code>origin/master</code>''.<br/>Then run'' <code>git submodule update</code>''.)'' | ||
|align="center"| | |align="center"| | ||
[http:// | [http://schacon.github.com/git/git-fetch.html <code>git help fetch</code>] | ||
<br/> | <br/> | ||
[http:// | [http://schacon.github.com/git/git-checkout.html <code>git help checkout</code>] | ||
<br/> | <br/> | ||
[http:// | [http://schacon.github.com/git/git-submodule.html <code>git help submodule</code>] | ||
<br/> | <br/> | ||
[http://progit.org/book/ch3-2.html Pro Git: Basic Branching] | [http://progit.org/book/ch3-2.html Pro Git: Basic Branching] | ||
Line 139: | Line 139: | ||
:<code>$ git commit</code> | :<code>$ git commit</code> | ||
|align="center"| | |align="center"| | ||
[http:// | [http://schacon.github.com/git/git-add.html <code>git help add</code>] | ||
<br/> | <br/> | ||
[http:// | [http://schacon.github.com/git/git-commit.html <code>git help commit</code>] | ||
<br/> | <br/> | ||
[http://progit.org/book/ch2-2.html Pro Git: Recording Changes] | [http://progit.org/book/ch2-2.html Pro Git: Recording Changes] | ||
Line 159: | Line 159: | ||
:<code>$ git checkout ''my-topic''</code> | :<code>$ git checkout ''my-topic''</code> | ||
|align="center"| | |align="center"| | ||
[http:// | [http://schacon.github.com/git/git-checkout.html <code>git help checkout</code>] | ||
|- | |- | ||
| | | | ||
Line 169: | Line 169: | ||
[http://itk.org/gitweb?p=ITK.git;a=blob;f=Utilities/DevelopmentSetupScripts/SetupGitAliases.sh;hb=HEAD <code>alias.prepush</code>] | [http://itk.org/gitweb?p=ITK.git;a=blob;f=Utilities/DevelopmentSetupScripts/SetupGitAliases.sh;hb=HEAD <code>alias.prepush</code>] | ||
<br/> | <br/> | ||
([http:// | ([http://schacon.github.com/git/git-log.html <code>log</code>] <code>origin/master..</code>) | ||
|- | |- | ||
| | | | ||
Line 197: | Line 197: | ||
:<code>$ git checkout ''my-topic''</code> | :<code>$ git checkout ''my-topic''</code> | ||
|align="center"| | |align="center"| | ||
[http:// | [http://schacon.github.com/git/git-checkout.html <code>git help checkout</code>] | ||
|- | |- | ||
| | | | ||
Line 209: | Line 209: | ||
Preserve the <code>Change-Id:</code> line at the bottom of each commit message. | Preserve the <code>Change-Id:</code> line at the bottom of each commit message. | ||
|align="center"| | |align="center"| | ||
[http:// | [http://schacon.github.com/git/git-rebase.html <code>git help rebase</code>] | ||
<br/> | <br/> | ||
[http://progit.org/book/ch3-6.html Pro Git: Rebasing] | [http://progit.org/book/ch3-6.html Pro Git: Rebasing] | ||
Line 230: | Line 230: | ||
:<code>$ git checkout ''my-topic''</code> | :<code>$ git checkout ''my-topic''</code> | ||
|align="center"| | |align="center"| | ||
[http:// | [http://schacon.github.com/git/git-checkout.html <code>git help checkout</code>] | ||
|- | |- | ||
| | | | ||
Line 241: | Line 241: | ||
[http://itk.org/gitweb?p=ITK.git;a=blob;f=Utilities/DevelopmentSetupScripts/SetupGitAliases.sh;hb=HEAD <code>alias.gerrit-merge</code>] | [http://itk.org/gitweb?p=ITK.git;a=blob;f=Utilities/DevelopmentSetupScripts/SetupGitAliases.sh;hb=HEAD <code>alias.gerrit-merge</code>] | ||
<br/> | <br/> | ||
([http:// | ([http://schacon.github.com/git/git-push.html <code>push</code>] to [[Git/Workflow/Stage|topic stage]] and | ||
<br/> | <br/> | ||
<code>stage ITK merge ''my-topic''</code>) | <code>stage ITK merge ''my-topic''</code>) | ||
Line 261: | Line 261: | ||
:<code>$ git pullall</code> | :<code>$ git pullall</code> | ||
|align="center"| | |align="center"| | ||
[http:// | [http://schacon.github.com/git/git-checkout.html <code>git help checkout</code>] | ||
<br/> | <br/> | ||
[http://itk.org/gitweb?p=ITK.git;a=blob;f=Utilities/DevelopmentSetupScripts/SetupGitAliases.sh;hb=HEAD <code>alias.pullall</code>] | [http://itk.org/gitweb?p=ITK.git;a=blob;f=Utilities/DevelopmentSetupScripts/SetupGitAliases.sh;hb=HEAD <code>alias.pullall</code>] | ||
<br/> | <br/> | ||
([http:// | ([http://schacon.github.com/git/git-pull.html <code>pull</code>] and | ||
[http:// | [http://schacon.github.com/git/git-submodule.html <code>submodule</code>] <code>update</code>) | ||
|- | |- | ||
| | | | ||
Line 274: | Line 274: | ||
:<code>$ git branch -d ''my-topic''</code> | :<code>$ git branch -d ''my-topic''</code> | ||
|align="center"| | |align="center"| | ||
[http:// | [http://schacon.github.com/git/git-branch.html <code>git help branch</code>] | ||
|- | |- | ||
| | | |
Revision as of 14:36, 12 October 2011
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:
1. Register Gerrit access and possibly Git push access. | |
2. Optionally download our one page PDF desk reference. | |
3. Follow the download instructions to create a local ITK clone: | |
|
|
4. Run the developer setup script to prepare your ITK work tree and create Git command aliases used below: | |
|
Workflow
ITK development uses a branchy workflow based on topic branches. Our collaboration workflow consists of three main steps:
1. Local Development | |
2. Code Review | |
|
|
3. Integrate Changes | |
| |
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: | |
|
Find your change in the ITK Gerrit instance and add reviewers.
Revise a Topic
If a topic is approved during Gerrit review, skip to the next step. Otherwise, revise the topic and push it back to Gerrit for another review.
Checkout the topic if it is not your current branch: | |
|
|
To revise the | |
(Substitute the correct number of commits back, as low as Follow Git's interactive instructions.
Preserve the |
|
Return to the previous step to share the revised topic. |
Merge a Topic
After a topic has been reviewed and approved in Gerrit, merge it into the upstream 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: | |
|
|
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 |