赞
赏
git reflog 命令可以查看所有分支的所有操作记录(包括 commit 和 reset 的操作),同时也包括已经被删除的 commit 记录。
git reflog <subcommand> <options>
参数 | 描述 |
---|---|
subcommand | git reflog 命令使用的子命令。 |
options | git reflog 命令使用的选项。 |
git reflog commitId
我们使用 git reflog 命令,查看提交的 reflog,具体命令如下:
git reflog HEAD
执行完毕后,如下图所示:
我们看到,我们使用了 git reflog 命令显示了 HEAD 的所有提交记录。
git reflog 命令可以查看所有分支的所有操作记录(包括 commit 和 reset 的操作),同时也包括已经被删除的 commit 记录。