Gitflow Workflow
Develop and main branches
Main branch is used to store the history and the release of a project. The main development work is done via the develop branch.
Feature branch
Each new feature should be included in a branch prefixed as such:
feature/my_awesome_contribution
Similarly, every hotfix or bugfix should be prefixed accordingly:
hotfix/bug_is_solved
Releases are retrieved from develop branch
Hotfixes are applied to master branch
After a feature/hotfix/bugfix is complete, a MR (merge request) should be opened to review the change and eventually apply it.