Skip to content

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 feature
  • fix/ used to apply a fix on code
  • doc/ used when you want to add documentation
  • refactor/ used when you want to refactor or clean up code without adding an actual feature