美文网首页
解决测试环境bug流程

解决测试环境bug流程

作者: 有一种感动叫做丶只有你懂 | 来源:发表于2019-02-22 21:16 被阅读0次

    1.git checkout master //切换到master分支
    2.git pull //切换到master下拉,保证代码是最新的
    3.git flow bugfix start fix_style //开辟一个bugfix分支
    4.git add . //将代码添加到bugfix分支里面
    5.git commit -m "解决样式问题" //将代码添加到bugfix分支里面
    6.git checkout develop //切换到develop上面
    7.git merge bugfix/fix_style //之后利用git merge 合并代码(此处不会删除分支)
    8.git push //先提交到develop上面
    9.git checkout bugfix/fix_style //切换到bugfix/fix_style
    10.git flow bugfix publish fix_style //直接publish到远程(会给你一个地址,打开地址直接在页面中发送merage request)
    11.git checkout develop //切回到develop分支
    12.git branch -D bugfix/fix_style //删除bugfix/fix_style分支

    相关文章

      网友评论

          本文标题:解决测试环境bug流程

          本文链接:https://www.haomeiwen.com/subject/gadyyqtx.html