3

我有几个 git 存储库(项目),它们使用其他存储库(“组件”)作为子模块:

Project 1
 - Component A
 - Component B
Project 2
 - Component B
 - Component C
Project 3
 - Component A
 - Component B

所有存储库都在同一台服务器上并排:

 - Project 1
 - Project 2
 - Project 3
 - Component A
 - Component B
 - Component C

我想知道在哪个项目中使用了组件 B。更具体:在哪个项目中使用了组件 B 的特定提交(或其后代)。

我的方法:创建一个包含所有子模块的数据库,存储它们的提交哈希。然后遍历特定提交的所有父级并查看它们是否在数据库中。

你知道更好的解决方案,也许只使用 git 命令?

您知道(部分)解决我的问题的应用程序/项目/库吗?

4

1 回答 1

0

嗨,我今天为一位同事制作了小脚本,想知道给定子模块的哪些“版本”在超级模块的所有 sha1 中使用。

#!/bin/perl

use strict;
use warnings;

my $command = "";
my $submodule = $ARGV[0];
my $submodule_sha = "";
my @commits = ();
my %commit_hash = ();
my $commit = "";
my $key = "";
my $value = "";
$command="git log --since=\"1 week ago\" --format=format:%H";
@commits=`$command`;
foreach $commit (@commits)
{
    #cleaning the $commit
    $commit =~ s/\s+$//;
    $commit =~ s/^\s+//;
    $command="git ls-tree $commit \| grep $submodule \|  cut -d\" \" -f3 |cut -f1";
    print $command . "\n";
    $submodule_sha=`$command`;
    $commit_hash{$commit} = $submodule_sha;
}    

while (($key, $value) = each(%commit_hash)){
    print $key.", ".$value."\n";
}

像这样执行

你应该在超级模块中

./scriptname.pl 子模块名

基本上我只是利用 git ls-tree 命令如果你在超级模块中,你可以做 git ls-tree HEAD | grep "submodulename" 这将为您提供子模块的提交。

可能有更聪明的方法,但这可以解决问题:)

干杯

于 2012-11-27T08:32:08.043 回答