zoukankan      html  css  js  c++  java
  • 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
    
  • 相关阅读:
    软件工程敏捷开发06
    学习进度条
    软件工程敏捷开发05
    软件工程敏捷开发04
    敏捷开发用户场景分析
    软件工程敏捷开发03
    软件工程敏捷开发02
    软件工程敏捷开发01
    面向对象程序设计(一)
    Java介绍、环境的搭建及结构化程序
  • 原文地址:https://www.cnblogs.com/ronli/p/git-flow-sequence.html
Copyright © 2011-2022 走看看