git pull之后代码回退

本地分支做了一些修改,但是没有提交到远端,然后git pull origin release之后自己写的代码被覆盖了,通过以下命令恢复到git pull之前:
1.git reflog 查看历史记录
git pull之后代码回退_第1张图片
2.git reset --hard 7caa5ca41
3.git log 与 git reflog
git log 查看的是当前分支的所有版本记录
git reflog 文档里面说的也很模棱两可,结合自己本地历史记录,应该是所有的git操作都记录在这了。包括分支的切换,拉取等。
https://git-scm.com/docs/git-reflog
Reference logs, or “reflogs”, record when the tips of branches and other references were updated in the local repository。reflogs,当本地仓库分支的tips(啥意思?)或者其他相关被更新的时候就会记录。

HEAD@{2} means "where HEAD used to be two moves ago", master@{one.week.ago} means "where master used to point to one week ago in this local repository"。HEAD@{2}意思是“两次移动钱HEAD曾在的位置”,master@{one.week.ago}意思是“本地仓库一周前master所在位置”

你可能感兴趣的:(git,git)