Query git reflog for all commits to a specific file

前端 未结 4 655
攒了一身酷
攒了一身酷 2020-12-13 01:43

Is it possible to check the git reflog for all commits to a specific file.

I made a commit to file foo.txt and now it no longer shows in the git history via

4条回答
  •  一整个雨季
    2020-12-13 02:05

    Came across this while searching for an answer, which is simple: git reflog -- $PATH, which will include amends and other actions that will not be visible otherwise (though beware, reflog will be pruned by gc)

提交回复
热议问题