1,从远程获取最新版本到本地
git fetch origin master:tmp
git fetch origin master:temp 这句命令的意思是:从远程的origin仓库的master分支下载到本地并新建一个分支tmp
2,比较代码
git diff temp
3, 合并tmp分支到master分支
git merge tmp
4,删除tmp分支
git branch -d tmp
如果该分支没有合并到主分支会报错,可以用以下命令强制删除git branch -D <分支名>
the_commit_id的获取方式: git log查看commit id
【远程代码库回滚】:
这个是重点要说的内容,过程比本地回滚要复杂
原理:先将本地分支退回到某个commit,删除远程分支,再重新push本地分支
操作步骤:
1、git checkout the_branch
2、git pull
3、git branch the_branch_backup //备份一下这个分支当前的情况
4、git reset --hard the_commit_id //把the_branch本地回滚到the_commit_id
5、git push origin :the_branch //删除远程 the_branch
6、git push origin the_branch //用回滚后的本地分支重新建立远程分支
7、git push origin :the_branch_backup //如果前面都成功了,删除这个备份分支