How to use branching name
For branching we use simplified flow. We use only one primary branch main
, used to deploy codebase on the development environment.
All others branches are considered as developer branch.
To limit branch name conflict we have identified a unique prefix to regroup branches by categories:
feature/
used when developer wants to add a featurefix/
used to apply a fix on codedoc/
used when you want to add documentationrefactor/
used when you want to refactor or clean up code without adding an actual feature