git flow

Table of Contents

git flow reference

What happens when running git flow release finish discussion

Make sure the local develop and master branches are fresh. When trigger finish, the merge flow is following:

  1. merges release/something into master
  2. creates a tag on the master commit.
  3. merges master into develop

Use git flow with code review howto

git flow feature finish just merges into develop without code review. To work around this, just don't use finish but make a pull request and delete the branch manually after it merged.