- This branch is used on the production environment, and is released periodically.
- Gets updated with
master
when possible and needed (after each release to production). - This branch should always kept clean for emergencies.
- Each issue gets its own feature branch.
- All feature branches should be branched from the
master
branch. - All feature branch pull requests should have
master
as base branch. - The naming for the feature branches is:
feature/{Jira issue-number}
Examples are:
feature/UBR-100
feature/UBR-330
An issue might require a hotfix that needs to be brought to production as soon as possible. All hotfix branches should be branched from the hotfix/hotfix
branch.
The naming for the feature branches is:
hotfix/{Jira issue-number}
Examples are:
hotfix/UBR-325
hotfix/UBR-466