美文网首页
提交本地代码到新分支

提交本地代码到新分支

作者: kelly_0416 | 来源:发表于2019-08-26 11:18 被阅读0次

    将从分支A下载代码,然后提交到分支B
    添加本地需要提交代码:

    git add .
    

    提交本地代码:

    git commit -m "添加到分支dev"
    

    push 到git仓库:

    git push origin master:dev
    

    切换新分支:

    git checkout -b dev origin/dev
    

    相关文章

      网友评论

          本文标题:提交本地代码到新分支

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