Skip to content

Branching Strategy

Alex Nava edited this page Apr 4, 2024 · 17 revisions

The main idea behind the branching strategy is to isolate your work into different types of branches. There are five different branch types in tota. The two primary branches are main and develop. There are three types of supporting branches with different intended purposes: feature, release, and hotfix.

main

Any code in the main branch should be deployable.

dev

release

feature

Create new descriptively-named branches off the main branch for new work, such as feature-add-enemy-spritesheet.

hotfix

Clone this wiki locally