如何根据blob / tree hash发现最后一次相关提交?

时间:2012-05-14 14:56:55

标签: git

如果我ls-tree某个树并获得blob和树的列表,我怎样才能发现与这些blob和树相关的最后一次提交?我正在寻找这样的东西:

$ git ls-tree HEAD
...
100644 blob  734713bc047d87bf7eac9674765ae793478c50d3   myfile
...
$ git show --commit 734713bc047d87bf7eac9674765ae793478c50d3
commit 734713bc047d87bf7eac9674765ae793478c50d3
Author: Scott Chacon <schacon@gmail.com>
Date:   Fri Jan 2 18:32:33 2009 -0800

    fixed refs handling, added gc auto, updated tests

1 个答案:

答案 0 :(得分:3)

我有点困惑。我不明白为什么你需要这样的东西。但是,我认为这就是你想要的 -

git ls-tree --name-only HEAD | while read file; do git log -n 1 --date=short --pretty="$file, author: %an, commit: %h, date: %ad, msg: '%s'" -- $file; done