Skip to content

Latest commit

 

History

History
28 lines (14 loc) · 623 Bytes

BRANCHING.md

File metadata and controls

28 lines (14 loc) · 623 Bytes

Branching

The following branching model is used:

master

Production branch, used for deploying releases. This is branched from and merged back to the development branch.

develop

Development branch where all development work is gathered. Feature branches merge into this branch.

bugfix/

Used for work fixing product bugs. Merged back to develop.

feature/

Used for work on new features. Merged back to develop

hotfix/

Used for fixing urgent bugs on production, that have high impact. Merged back to master.

release/

Used for preparing and testing work for release. Merged back to master.