给定一个 blob 的哈希值,有没有办法获取在他们的树中有这个 blob 的提交列表?
以下两个脚本都将 blob 的 SHA1 作为第一个参数,在它之后,可以选择任何git log可以理解的参数。例如--all,在所有分支中搜索而不是仅在当前分支中-g搜索,或者在 reflog 中搜索,或者您喜欢的任何其他内容。
git log
--all
-g
这里是一个 shell 脚本——短小精悍,但速度很慢:
#!/bin/sh obj_name="$1" shift git log "$@" --pretty=tformat:'%T %h %s' \ | while read tree commit subject ; do if git ls-tree -r $tree | grep -q "$obj_name" ; then echo $commit "$subject" fi done
还有一个 Perl 的优化版本,仍然很短但速度更快:
#!/usr/bin/perl use 5.008; use strict; use Memoize; my $obj_name; sub check_tree { my ( $tree ) = @_; my @subtree; { open my $ls_tree, '-|', git => 'ls-tree' => $tree or die "Couldn't open pipe to git-ls-tree: $!\n"; while ( <$ls_tree> ) { /\A[0-7]{6} (\S+) (\S+)/ or die "unexpected git-ls-tree output"; return 1 if $2 eq $obj_name; push @subtree, $2 if $1 eq 'tree'; } } check_tree( $_ ) && return 1 for @subtree; return; } memoize 'check_tree'; die "usage: git-find-blob <blob> [<git-log arguments ...>]\n" if not @ARGV; my $obj_short = shift @ARGV; $obj_name = do { local $ENV{'OBJ_NAME'} = $obj_short; `git rev-parse --verify \$OBJ_NAME`; } or die "Couldn't parse $obj_short: $!\n"; chomp $obj_name; open my $log, '-|', git => log => @ARGV, '--pretty=format:%T %h %s' or die "Couldn't open pipe to git-log: $!\n"; while ( <$log> ) { chomp; my ( $tree, $commit, $subject ) = split " ", $_, 3; print "$commit $subject\n" if check_tree( $tree ); }