Skip to content
Daniel Metzner edited this page Apr 9, 2019 · 9 revisions

Git Workflow

Branches

  • develop = default branch and represents the current state + changes for the next release. This is the branch you should be working with and merge your PRs into. This branch should also be represented on the web-test
  • master = current state of the share and gets released (deploy on share = release = merge from Develop on Master).

For features

Do not create any local branches. Instead: Forking of develop and PRs back into develop. (How To)