-
Notifications
You must be signed in to change notification settings - Fork 1
Branching Strategy
Siddhesh edited this page Mar 7, 2022
·
10 revisions
- Pull requests related to user Stories are raised from branches with prefix
feature/
, so the name of the branch should befeature/<some_name>
. - Bug fixes PRs are raised from branches with prefix
bugfix/
, so the name of the branch should bebugfix/<some_name>
. - At the end of the sprint, the releases are created by forking current main branch with a prefix
release/
, so the sprint1 release will be found in the branchrelease/sprint
.
- Commits directly to
main
andrelease/*
branches are not allowed. - These are rules applied:
For any queries or support contact the team
If you have noticed an issue, please report by creating a new issue.