gpt4 book ai didi

git - 哪个提交有这个 Blob ?

转载 作者:太空狗 更新时间:2023-10-29 14:23:42 25 4
gpt4 key购买 nike

给定一个 blob 的哈希值,有没有办法得到一个在他们的树中有这个 blob 的提交列表?

最佳答案

以下两个脚本都将 blob 的 SHA1 作为第一个参数,然后是可选的任何参数 git log会明白。例如。 --all 在所有分支中搜索,而不仅仅是当前分支,或者 -g 在 reflog 中搜索,或者您喜欢的任何其他内容。

这是一个 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 );
}

关于git - 哪个提交有这个 Blob ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21889518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com