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
    
  • 相关阅读:
    c++,不能声明为虚函数的函数
    Abstract
    多态性vptrvtable
    C++的重写,重载,重定义
    final
    scanf()和getchar() 使用
    深入理解C++中的mutable关键字
    equal和==
    MoQ(基于.net3.5,c#3.0的mock框架)简单介绍
    VS2008快捷键
  • 原文地址:https://www.cnblogs.com/ronli/p/git-flow-sequence.html
Copyright © 2011-2022 走看看