git 更新本地仓库

1.查看远程仓库
git remote -v
2.从远程获取最新版本到本地
git fetch origin master:temp
3.比较本地的仓库与远程仓库的区别
git diff temp
4.合并temp分支到master分支
git merge temp

 若有冲突则需手动解决冲突的文件(git status 可以告诉我们冲突的文件),然后提交
 git add .
 git commit -m 'conflict fixed'

5.可删除分支
git branch -d temp

你可能感兴趣的:(Php,git,git更新本地仓库)