CMake/Git/Develop: Difference between revisions
(→Setup) |
|||
Line 188: | Line 188: | ||
|- | |- | ||
| | | | ||
The topic is now published on the [ | The topic is now published on the [https://cmake.org/stage/cmake.git CMake Topic Stage] and may be (optionally) reviewed by others. | ||
If you would like review by others before merging for testing in the next step, please post to the cmake-developers mailing list. | If you would like review by others before merging for testing in the next step, please post to the cmake-developers mailing list. | ||
Revision as of 19:17, 30 September 2015
This page documents how to develop CMake 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 CMake 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.
Audience
The instructions on this page are meant for those whom have been invited to gain direct push access to our Git repository. If you do not have access already, please see CONTRIBUTING.rst at the top of the source tree. We ask that newcomers join the developer mailing list and send patches. Productive contributors and module maintainer volunteers may be invited to gain direct access.
Setup
Before you begin, perform initial setup:
1. Register Git push access (after having been invited as described above). | |
2. Follow the download instructions to create a local CMake clone: | |
|
|
3. Run the developer setup script to prepare your CMake work tree: | |
|
Workflow
CMake development uses a branchy workflow based on topic branches using the CMake Topics Stage.
Our collaboration workflow consists of three main steps:
1. Local Development |
2. Testing and Review |
3. Integration by Maintainers |
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 is user-facing please create a (If your change modifies the " | |
If you started from | |
|
When a topic is ready for testing and review by others, share it by pushing it to the "topic stage". Be sure you have registered for Git push access.
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 (be sure to have set up for development): | |
|
|
The topic is now published on the CMake Topic Stage and may be (optionally) reviewed by others. If you would like review by others before merging for testing in the next step, please post to the cmake-developers mailing list. Note: Please do not push a topic to the stage unless you are ready to immediately send an email to the mailing list to ask for review and/or merge it to next for testing. If you push a topic and then change your mind, please remove it with
We do not want to accumulate partially completed topics that obscure those really ready for review and integration. |
Merge a Topic for Testing
When your topic is ready, merge it to the CMake next branch for testing.
Ask the topic stage to automatically merge the topic to next: | |
|
|
The topic is now integrated into CMake's next branch and will be tested by dashboard builds. After merging, please check the Continuous section of the dashboard for the rest of the day and diligently follow up on any problems introduced. If the topic modifies documentation, check the Continuous Help section of the dashboard for errors and warnings from sphinx-build. On the day after merging, check the Entire Dashboard and follow up with fixes as described in the next step. Documentation generated from the next branch will be published within 10 minutes here. This is intended for reference by developers to see how the documentation renders as changes are made. Do not publish links pointing anywhere but the top-level page because deeper pages are not stable. |
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. |
Merge a Topic for Inclusion
Only core maintainers have access to merge a topic to master. They meet weekly to evaluate topics in next based on dashboard results and manual review. If your topic is accepted it will be merged to master for permanent inclusion after which you may delete it. Otherwise the maintainers will contact you with feedback. Respond by returning to the above step to address their concerns.
Documentation generated from the master branch will be published within 10 minutes here. This is intended for reference by developers to see how the documentation renders as changes are made. Do not publish links pointing anywhere but the top-level page because deeper pages are not stable.
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 |