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/something
intomaster
- creates a tag on the
master
commit. - merges
master
intodevelop
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.