Skip to content

Github branching

Stanley Ndagi edited this page Jun 12, 2017 · 2 revisions

These two workflows are the most common:

1. Git workflow (Also known as Feature Branch Workflow)

As illustrated above, here we have a Master branch and the other feature branches branching from it.

2. Github workflow

This is ideal for a project with multiple users and it's designed around project release.

It is best that you the developer working on the project decides on which workflow to use. If it is unclear you could start with the Git workflow and later move to Github workflow or use the Github workflow with only the master, develop and feature branches.

Sources: https://www.atlassian.com/git/tutorials/comparing-workflows

Clone this wiki locally