晴朗笔记

努力做好自已,其他交给时间

GIT FLOW 时序图

git flow sequence md

link: git branching model

博客园的MD不支持时序图,强烈推荐一款开源的markdown在线编辑器 http://stackedit.io

master->master branch: use default branch
Note right of master branch: lock for merging
master branch->develop branch: create then lock
Note right of develop branch: lock for merging
develop branch->feature branch: build feature-*
Note right of develop branch: START version xxx
developer-->feature branch: push a commit
feature branch->develop branch: finish (merge) feature
develop branch->release branch: build release
Note right of develop branch: build release
Note right of release branch: start testing
release branch->master branch: finish (merge) release
Note right of master branch: pre-publish testing
Note right of master branch: publish online
Note right of master branch: make a tag release-*
release branch->develop branch: finish (merge) release
Note right of develop branch: END version xxx
Note right of develop branch: start next feature... until some bugs coming
master branch->hotfix branch: build hotfix
developer-->hotfix branch: push commits to fix bugs
hotfix branch->master branch: finish (merge) hotfix
Note right of master branch: publish online
hotfix branch->develop branch: finish (merge) hotfix

posted on 2016-10-21 14:48  Mr__BRIGHT  阅读(596)  评论(0编辑  收藏  举报

导航