Which commit has this blob?

前端 未结 7 2222
别那么骄傲
别那么骄傲 2020-11-22 02:45

Given the hash of a blob, is there a way to get a list of commits that have this blob in their tree?

7条回答
  •  忘掉有多难
    2020-11-22 03:28

    Unfortunately scripts were a bit slow for me, so I had to optimize a bit. Luckily I had not only the hash but also the path of a file.

    git log --all --pretty=format:%H --  | xargs -n1 -I% sh -c "git ls-tree % --  | grep -q  && echo %"
    

提交回复
热议问题