美文网首页
git拉取远程新分支到本地

git拉取远程新分支到本地

作者: 兜兜里冒糖糖 | 来源:发表于2023-11-28 09:26 被阅读0次

    三步:
    将远程分支拉到本地
    (1)git fetch origin de(dev为远程仓库的分支名)
    在本地创建分支dev并切换到该分支
    (2)git chekcout -b dev(本地分支名称) origin/dev(远程分支名称)
    把远程分支上的内容拉取到本地
    (3)git pull origin dev(远程分支名称)

    相关文章

      网友评论

          本文标题:git拉取远程新分支到本地

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