标签: git git-reflog
我知道reflog的压缩版存储在.git/packed-refs中 但实际的reflog位于何处以及git如何在键入git reflog?
reflog
.git/packed-refs
git reflog
答案 0 :(得分:6)
reflog位于.git/logs/<refname>。例如,对于名为master的分支(例如,refs/heads/master),您可能需要.git/logs/refs/heads/master。
.git/logs/<refname>
master
refs/heads/master
.git/logs/refs/heads/master
HEAD当然是异常的,而且是.git/logs/HEAD。
HEAD
.git/logs/HEAD