Skip to content

Project Git Branching Strategy

Wonhee Jung edited this page Mar 26, 2019 · 1 revision

Branching strategy

Please Read before working on the project.

The project uses GitFlow branching strategy. If you are not familiar to this, read https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow

Always create your feature branch from the develop branch, work on your feature branch and test. When your feature branch is good to deploy to production, then merge to develop branch. Develop branch should always be "ready to production" status.

When deploying, we are going to create a new release branch from the develop branch, make artifact(or docker image) and deploy to production, and merge the release branch to master branch.

Clone this wiki locally