/
Branching Guidelines
Branching Guidelines
feature branches should branch off from develop, only hotfixes and develop itself will be merged directly into main.
naming your branches
branches should start with your issue name JUP-XX
and then a short name for your branch (1-2 words)
you can start a new branch by running
git checkout -b JUP-00-your-branch
make sure you are on the develop branch and that it’s up to date.