TubeTK/Git/Develop: Difference between revisions
(ProGit moved) |
|||
Line 137: | Line 137: | ||
==Share a Topic== | ==Share a Topic== | ||
===On Gerrit=== | |||
When a topic is ready for review and possible inclusion, share it by pushing to Gerrit. | |||
Be sure you have registered for [[TubeTK/Git/Account#Gerrit|Gerrit access]]. | |||
{| style="width: 100%" | |||
|- | |||
|width=60%| | |||
Checkout the topic if it is not your current branch: | |||
|- | |||
| | |||
:<code>$ git checkout ''my-topic''</code> | |||
|align="center"| | |||
[http://schacon.github.com/git/git-checkout.html <code>git help checkout</code>] | |||
|- | |||
| | |||
Check what commits will be pushed to Gerrit for review: | |||
|- | |||
| | |||
:<code>$ git prepush</code> | |||
|align="center"| | |||
[http://tubetk.org/gitweb?p=TubeTK.git;a=blob;f=Utilities/GitSetup/setup-aliases;hb=HEAD <code>alias.prepush</code>] | |||
<br/> | |||
([http://schacon.github.com/git/git-log.html <code>log</code>] <code>origin/master..</code>) | |||
|- | |||
| | |||
Push commits in your topic branch for review by the community: | |||
|- | |||
| | |||
:<code>$ git gerrit-push</code> | |||
|align="center"| | |||
[http://tubetk.org/gitweb?p=TubeTK.git;a=blob;f=Utilities/GitSetup/setup-aliases;hb=HEAD <code>alias.gerrit-push</code>] | |||
<br/> | |||
([http://tubetk.org/gitweb?p=TubeTK.git;a=blob;f=Utilities/GitSetup/git-gerrit-push;hb=HEAD <code>Utilities/Git/git-gerrit-push</code>]) | |||
|} | |||
Find your change in the [http://review.source.kitware.com/p/TubeTK TubeTK Gerrit] instance and add [[TubeTK/Gerrit/Reviewers|reviewers]]. | |||
===On the stage repository=== | |||
When a topic is ready for review and possible inclusion, share it by pushing to the [[Git/Workflow/Stage|topic stage]]. | When a topic is ready for review and possible inclusion, share it by pushing to the [[Git/Workflow/Stage|topic stage]]. |
Revision as of 20:24, 28 November 2012
This page documents how to develop TubeTK 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 TubeTK 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 Git push access. | |
2. Follow the download instructions to create a local TubeTK clone: | |
|
|
3. Run the developer setup script to prepare your TubeTK work tree and create Git command aliases used below: | |
|
Workflow
TubeTK 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): | |
|
On Gerrit
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 TubeTK Gerrit instance and add reviewers.
On the stage repository
When a topic is ready for review and possible inclusion, share it by pushing to the topic stage.
Only authorized developers with Git push access to tubetk.org
may perform this step.
Checkout the topic if it is not your current branch: | |
|
|
Check what commits will be pushed to the topic stage: | |
|
|
Push commits in your topic branch to the topic stage: | |
|
|
The topic is now published on the TubeTK Topic Stage and may be (optionally) reviewed by others. To fetch staged topics for review, run | |
|
Revise a Topic
If a topic is approved after review, skip to the next step. Otherwise, revise the topic and push it back to the topic stage 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. |
|
Return to the previous step to share the revised topic. |
Merge a Topic
After a topic has been reviewed and approved, merge it into the upstream repository.
Only authorized developers with Git push access to tubetk.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 |