美文网首页
git本地分支merge到远程分支

git本地分支merge到远程分支

作者: Hello_DH | 来源:发表于2017-09-18 11:33 被阅读0次

    创建本地分支

    git checkout -b fjhbranch develop
    基于远程的develop分支创建本地分支

    提交本地方

    on branch fjhbranch (在本地分支)
    git add .
    git commit -m"xxxxx"

    merge到远程仓库

    git checkout develop
    git merge --no-ff fjhbranch
    git push origin develop

    相关文章

      网友评论

          本文标题:git本地分支merge到远程分支

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