Skip to content
Brendan Devenney edited this page Feb 7, 2016 · 1 revision

Branching Model

  • master
    • The default branch.
    • This is the branch from which the live website is generated.
  • develop
    • Contains changes which will be included in the next release (merge to master).
    • All feature branches should be branched from develop.
    • All completed feature branches should be merged into develop.
  • feature branches
    • label/short_descriptive_name
      • label should be the label of the issue the branch aims to solve.
      • Where no issue exists, label should be the most relevant label.
      • label should be misc when there is no relevant label.
Clone this wiki locally