Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 829 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (15 loc) · 829 Bytes

Branching Strategy

The branching strategy used for this projects is Scaled Trunk-Based Development where we have a main branch called trunk and the developers work in feature branches that eventually are integrated to the trunk.


Trunk-based development


Branch naming convention

Branch categories

  • feat: for adding, refactoring or removing a feature
  • bugfix: for fixing a bug
  • hotfix: for changing code with a temporary solution and/or without following the usual process(because an emergency)
  • test: for testing purposes
  • refac: for refactor code

Branch name structure: {branch-category}/{description-separated-with-dashes}

Commit naming convention

Context categories