Please enable JavaScript.
Coggle requires JavaScript to display documents.
GITFLOW (release (support preparation of a new production release., branch…
GITFLOW
-
develop
-
source code of HEAD always reflects
a state with the latest delivered development changes
for the next release.
hotfix
-
-
hotfix start
git flow hotfix start VERSION [BASENAME]
The version argument here by marks
the new hotfix realease name
Optionally specify a
basename to start from
Finish a hotfix
hotfix gets merge back
into develop and master.
Additionally the master merge is
tagged with hotfix version
git flow hotfix finish VERSION
feature
-
branch off from develop and merge back to develop.
git flow feature start MYFEATURE
git flow feature finish MYFEATURE
-
-
release
-
branch off from develop, merge to develop and master.
git flow release start RELEASE [BASE]
optionally supply a [BASE] commit sha-1 to start the release from.
-
publish the release branch to allow release commit by other developers
git flow release publish RELEASE
Finish up a release:
Merges the release branch back into master
Tags the release with its name.
Back-merges the release to develop
Remove the release branch
git flow release finish RELEASE
push tags with git push --tags