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:
- merges
release/somethingintomaster - creates a tag on the
mastercommit. - merges
masterintodevelop
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.