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

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

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

git remote add origin http://xxx/QE/automation_framework.git

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

git remote -v

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

git fetch origin master

查看拉取的代码

git log -p master..origin/master

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

git merge origin/master

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

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

你可能感兴趣的:(git 拉取远程仓库最新的代码到本地)