Skip to content

Instantly share code, notes, and snippets.

@serhii73
Created July 13, 2019 19:08
Show Gist options
  • Save serhii73/d33e900bcc4a12a1323ea8f2a0a833c1 to your computer and use it in GitHub Desktop.
Save serhii73/d33e900bcc4a12a1323ea8f2a0a833c1 to your computer and use it in GitHub Desktop.

The overall flow of Gitflow is:

  1. A develop branch is created from master
  2. A release branch is created from develop
  3. Feature branches are created from develop
  4. When a feature is complete it is merged into the develop branch
  5. When the release branch is done it is merged into develop and master
  6. If an issue in master is detected a hotfix branch is created from master
  7. Once the hotfix is complete it is merged to both develop and master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment