KWSys/Git/Develop: Difference between revisions
Line 177: | Line 177: | ||
| | | | ||
The "Kitware Robot" automatically performs basic checks on the commits and adds a review that sets the "Verified" flag. | The "Kitware Robot" automatically performs basic checks on the commits and adds a review that sets the "Verified" flag. | ||
|- | |||
''KWSys is shared by | | | ||
''Proposed changes must work on all of the platforms before they will be approved.'' | '''KWSys is shared by multiple projects and therefore is tested on many platforms.''' | ||
'''Proposed changes must work on all of the platforms before they will be approved.''' | |||
|- | |||
| | |||
Authorized reviewers may add a "Testing: Enable" review comment to activate testing of the latest patch set. | |||
Authors should visit the [http://open.cdash.org/index.php?project=KWSys#Experimental KWSys Dashboard] to look for build names starting in the topic name. | |||
If any problems are reported proceed to the [[#Revise_a_Topic|next step]] to revise your change to address them. | |||
|align="center"| | |||
[http://open.cdash.org/index.php?project=KWSys#Experimental KWSys Dashboard] | |||
|} | |} | ||
Revision as of 13:31, 5 October 2012
This page documents how to develop KWSys 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 KWSys 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. | |
2. Follow the download instructions to create a local KWSys clone: | |
|
|
3. Run the developer setup script to prepare your KWSys work tree and create Git command aliases used below: | |
|
Workflow
KWSys 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: | |
The output will include a link to the change review page in KWSys Gerrit. |
|
Find your change in the KWSys Gerrit instance and add reviewers. Add at least one relevant member of the KWSys-core Group who will have permission to approve the change for submission. |
|
The "Kitware Robot" automatically performs basic checks on the commits and adds a review that sets the "Verified" flag. | |
KWSys is shared by multiple projects and therefore is tested on many platforms. Proposed changes must work on all of the platforms before they will be approved. | |
Authorized reviewers may add a "Testing: Enable" review comment to activate testing of the latest patch set. Authors should visit the KWSys Dashboard to look for build names starting in the topic name. If any problems are reported proceed to the next step to revise your change to address them. |
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.
Visit the KWSys Gerrit review page for your change. Members of the KWSys-core Group may use the "Submit Patch Set" button to merge the topic, as pictured on the right. Non-members will not see the button but if the change has been approved then at least one reviewer is a member of KWSys-core and may be asked to perform the submission. |
|
If the submission is rejected by a merge conflict, fetch the latest upstream history and rebase on it: | |
|
|
Preserve the | |
Return to the above step to share the revised 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 |