美文网首页
同步同事提交的git代码到本地

同步同事提交的git代码到本地

作者: bubbleoO0 | 来源:发表于2019-05-13 09:21 被阅读0次

    git拉取远程分支文件

    1. 拉取远程分支 git fetch <远程主机名> <分支名>

    2. 取回更新并在本地创建新的分支 git checkout -b newBrach origin/master

    3. 切换回本地分支git checkout <分支名>

    4. 合并新创建的分支到当前分支上 git merge <name>

    查看分支:git branch
    创建分支:git branch <name>
    切换分支:git checkout <name>
    创建+切换分支:git checkout -b <name>
    合并某分支到当前分支:git merge <name>
    删除分支:git branch -d <name>

    相关文章

      网友评论

          本文标题:同步同事提交的git代码到本地

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