美文网首页
Git合并本地分支代码到master上

Git合并本地分支代码到master上

作者: JsDu | 来源:发表于2017-05-23 17:13 被阅读0次

    首先在dev分支上

    1. git add yourChangeFile
    • git commit -m '你的注释'
    • git push yourDevBranch

    然后

    • git branch master
    • git merge yourDevBranch
    • git push origin master

    相关文章

      网友评论

          本文标题:Git合并本地分支代码到master上

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