git pull示意图:https://blog.csdn.net/weixin_39540725/article/details/110660899
git命令log与reflog的比较:
在博客https://blog.csdn.net/u013252047/article/details/80230781中说
git log 命令可以显示所有提交过的版本信息
git reflog 可以查看所有分支的所有操作记录(包括已经被删除的 commit 记录和 reset 的操作)
这个博客写得模糊不清,
又看了这个博客(写得很好):https://learnku.com/articles/45922
git log 查看 commit 提交历史,如果想看到其他人在该分支上提交的最新的 commit ,需要先拉取远程最新信息下来才可查看 git pull
git log 只能查看当前分支下的 commit 信息,查看其它分支 commit 需要切换分支,
对于回退后的 commit 是无法通过 git log 来查看的
回退后 commit 丢失,如果我反悔,又想找回对应 commit 的代码呢?git log 是无能为力了,但此时 git reflog 就派上用场了。
git reflog 查看本地的 commit 变更历史,并且 commit 是不区分在某个分支提交的,加上 -n 参数可限制返回记录数目
利用 git reflog 命令查看 commit 变更历史,经常可以进行回退操作,或者可以进行恢复已经删除的分支