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

相关文章:

  • 2021-05-25
  • 2021-04-22
  • 2022-02-25
  • 2022-12-23
  • 2021-11-29
  • 2022-02-07
  • 2021-09-28
猜你喜欢
  • 2021-11-03
  • 2021-05-20
  • 2021-10-03
  • 2021-06-26
相关资源
相似解决方案