Changes between Version 11 and Version 12 of StartModWorkflow
- Timestamp:
- Dec 12, 2013, 8:09:49 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StartModWorkflow
v11 v12 2 2 [[PageOutline]] 3 3 4 Workflow is the term used to describe the steps a Boost library developer follows to create and maintain a library.4 Workflow is the term used to describe the steps a Boost library developer follows to create, maintain, and release a library. The workflow presented here is designed for Boost's individual libraries. The workflow for the Boost super-project may differ. 5 5 6 6 == Git Flow == … … 32 32 33 33 * {{{feature/descriptive-name}}} for feature branches. For example, {{{feature/add-roman-numeral-math}}}. 34 * {{{bugfix/descriptive-name}}} for branches of {{{develop}}} that will be merged back to {{{develop}}} after the fix. For example, {{{bugfix/ticket-1234-error-msg-not-clear}}}35 * {{{hotfix/descriptive-name}}} for branches of {{{master}}} that will be merged back to {{{master}}} and also to {{{develop}}} after the fix. For example, {{{hotfix/ticket-5678-crash-if-result-negative}}}34 * {{{bugfix/descriptive-name}}} for problem fix branches of {{{develop}}} that will be merged back to {{{develop}}} after the fix. For example, {{{bugfix/ticket-1234-error-msg-not-clear}}} 35 * {{{hotfix/descriptive-name}}} for problem fix branches of {{{master}}} that will be merged back to {{{master}}} and also to {{{develop}}} after the fix. For example, {{{hotfix/ticket-5678-crash-if-result-negative}}} 36 36 * {{{release.n.n.n}}} for release staging branches. For example, {{{release.1.56.2}}}. 37 37