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
    
  • 相关阅读:
    cunda 常用命令,删除,创建,换源
    kivy画板
    基础易忘记
    关于tkinter
    airtest常用指令
    在kivy中加图片
    QQ消算轰炸,我好无聊真的
    自动华键盘使用
    自动化键盘,python
    canvas中的优先级,.after最前,before最底,canvas中间,部件在布局下面
  • 原文地址:https://www.cnblogs.com/ronli/p/git-flow-sequence.html
Copyright © 2011-2022 走看看