Query git reflog for all commits to a specific file

前端 未结 4 666
攒了一身酷
攒了一身酷 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:19

    I'd use:

    git rev-list --all --remotes --pretty=oneline foo.txt
    

    The --remotes option lets you use also your remotes, the --pretty=oneline makes it display also the commit message. Very useful when you're looking for a modification pushed to remote in a branch you don't know the name of.

提交回复
热议问题