ParaView/Git/Develop: Difference between revisions
Line 296: | Line 296: | ||
(warning - you could lose commits). | (warning - you could lose commits). | ||
|} | |} | ||
==Contribute VTK Changes== |
Revision as of 01:06, 22 January 2013
This page documents how to develop ParaView 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 ParaView 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.
Target Audience
This document is intended for developers from the larger ParaView open-source community who want to contribute patches back to ParaView. Registered developers of ParaView (with write access to the git repository) should refer to ParaView Developers Wiki for instructions on using the ParaView integration branches for contributing code. The rest of the community can push contributions to ParaView using the workflow described here. Contributors are also free to simply push their topics to github or Gitorious and request integration to the ParaView repository on the ParaView mailing lists.
Setup
Before you begin, perform initial setup:
1. Register Gerrit access. | |
2. Follow the download instructions to create a local ParaView clone: | |
|
|
3. Run the developer setup script to prepare your ParaView work tree and create Git command aliases used below: | |
|
Workflow
ParaView development uses a branchy workflow based on topic branches. If you have changes affecting the VTK submodule, refer to Contribute VTK Changes. Our collaboration workflow consists of three main steps:
1. Local Development | |
2. Testing and 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 topic review page in ParaView Gerrit. |
|
Find your topic/change in the ParaView Gerrit instance and add reviewers. If you are not sure whom to add as a reviewer, send an email on the ParaView Developer mailing-list with a link to your Gerrit topic. A member from the ParaView development team can now take over your topic and have it tested and merged into master as per the ParaView Development Workflow. |
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. |
Extend a Topic
If your topic runs cleanly after a night of dashboard builds, it is ready for the next step. Otherwise, extend the topic with additional commits to fix the problems.
Checkout the topic if it is not your current branch: | |
|
|
Edit files and create commits (repeat as needed): | |
|
|
Return to the earlier step to share the extended topic. |
Suggest a Topic for Inclusion
Once you are satisfied with your topic, report a bug/feature-request on the ParaView Bug Tracker with details on the issue being addressed with a link to the Gerrit topic. Additionally, send an email to the ParaView mailing list to suggest inclusion of your topic into the ParaView official repository. A member from the ParaView development team will then work with you to get your changes tested on the ParaView dashboards and then have them merged into ParaView git repository.
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 |