美文网首页
git 拉取远程仓库最新的代码到本地

git 拉取远程仓库最新的代码到本地

作者: 雷阳洪 | 来源:发表于2021-08-23 16:09 被阅读0次

    有时候git pull拉取代码会报错,出现各种问题 这个时候我们最好是将git pull拆分成两个步骤执行 1.fetch 2.merge

    配置远程仓库地址,取名:origin_QE (自定义,随便取,代表该名字是后面的远程仓库地址)

    git remote add origin_QE http://gitlab.chinascope.net/QE/automation_framework.git

    查看本地绑定的远程仓库地址

    git remote -v

    从指定的仓库地址 master分支下拉取代码

    git fetch origin_QE master

    查看拉取的代码

    git log -p master… origi_QE/master

    将本地与远程仓库的代码合并更新

    git merge origin_QE/master

    强制上传覆盖远程文件 !!!团队开发中慎用

    git push -f origin master
    (这个命令在团队开发的时候最好不要用,否则可能会有生命危险)

    相关文章

      网友评论

          本文标题:git 拉取远程仓库最新的代码到本地

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