ITK/Git/Develop: Difference between revisions
m (→Share a Topic) |
|||
Line 189: | Line 189: | ||
:''(If the topic adds data see [[ITK/Git/Develop/Data#Push|this note]].)'' | :''(If the topic adds data see [[ITK/Git/Develop/Data#Push|this note]].)'' | ||
or if you started the topic from the release branch: | or if you started the topic from the release branch: | ||
:<code>$ git push gerrit HEAD:refs/for/release/'' | :<code>$ git push gerrit HEAD:refs/for/release/''my-topic'' </code> | ||
|align="center"| | |align="center"| | ||
[[ITK/Git/Account#Firewall_blocks_SSH_traffic|Connection refused]]? | [[ITK/Git/Account#Firewall_blocks_SSH_traffic|Connection refused]]? |
Revision as of 20:11, 28 May 2013
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): | |||
|
|||
(If your change modifies the " |
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: | |
or if you started the topic from the release branch:
|
Connection refused?
|
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 most recent commit on the topic edit files and add changes normally and then amend the commit: | |
|
|
To revise commits further back on the topic, say 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
Only authorized developers with Git push access to itk.org
may perform this step.
After a feature topic has been reviewed and approved in Gerrit, merge it into the upstream repository.
Checkout the topic if it is not your current branch: | |
|
|
Merge the topic, which is originally forked off the master branch, to master branch: | |
|
|
For bug fixes that are ready to be included in the next patch release, please email the release manager, Matt McCormick, for assistance.
Here are the recommended steps to merge a topic to both release and master branches, assuming the topic branch is forked off the release branch:
$ git checkout release
$ git merge --no-ff my-topic
$ git push origin release
and do:
$ git checkout master
$ git merge --no-ff release
$ git push origin master
to merge the release branch back to master.
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 |