Branching
Gitflow:
- The branch
develop
is created frommain
- The branch
release
is created fromdevelop
Feature
branches are created fromdevelop
- When a feature is complete it is merged into the
develop
branch - When the
release
branch is done it is merged intodevelop
andmain
- If an urgent issue in
main
is detected ahotfix
branch is created frommain
- Once the
hotfix
is complete it is merged to bothdevelop
andmain
Versioning
For MAIN/ RELEASE branches
Given a version number MAJOR.MINOR.PATCH
, increment the:
- MAJOR version when you make incompatible (BREAKING) API changes
- MINOR version when you add functionality in a backward compatible manner
- PATCH version when you make backward compatible bug fixes
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
Please see Semantic Versioning
Commits:
<TYPE>[optional scope]: <description>
[optional body]
[optional footer(s)]
- FIX: a commit of the type fix patches a bug in your codebase (this correlates with PATCH in Semantic Versioning).
- FEAT: a commit of the type feat introduces a new feature to the codebase (this correlates with MINOR in Semantic Versioning).
- Choose one -> BREAKING CHANGE: a commit that has a footer BREAKING CHANGE:, or appends a ! after the type/scope, introduces a breaking API change (correlating with MAJOR in Semantic Versioning). A BREAKING CHANGE can be part of commits of any type.
- Types other than fix: and feat: ci:, docs:, style:, refactor:.
SemVer -> fix type commits should be translated to PATCH releases. feat type commits should be translated to MINOR releases. Commits with BREAKING CHANGE in the commits, regardless of type, should be translated to MAJOR releases.
See more: Conventional Commits