X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=dgit-badcommit-fixup;h=bab8605aed270ea83d96f8f3c47ea8896b96fd10;hb=254a2c58e582e4536ef7a8feada775139e7ca9d5;hp=ec6f57c78395f6f9c5a4debf767fa5bc6911da19;hpb=e2839a09e5eb2fc805669586554aa0a3f241c18a;p=dgit.git diff --git a/dgit-badcommit-fixup b/dgit-badcommit-fixup index ec6f57c7..bab8605a 100755 --- a/dgit-badcommit-fixup +++ b/dgit-badcommit-fixup @@ -79,6 +79,7 @@ sub rewrite_commit ($) { my $m = \ $memo{$obj}; return $$m if defined $$m; my $olddata = getobj $obj, 'commit'; +#print STDERR ">$obj|$olddata<\n"; $olddata =~ m/(?<=\n)(?=\n)/ or die "$obj ?"; my $msg = $'; local $_ = $`; @@ -104,6 +105,12 @@ sub rewrite_commit ($) { return $newobj; } +our @updates; + +sub filter_updates () { + @updates = grep { $_->[1] ne $_->[2] } @updates; +} + sub rewrite_tag ($) { my ($obj) = @_; $_ = getobj $obj, 'tag'; @@ -123,18 +130,83 @@ sub rewrite_tag ($) { return hashobj $_, 'tag'; } +sub edit_rewrite_map ($) { + my ($old) = @_; + + filter_updates(); + return $old unless @updates; + + my $td = 'dgit-broken-fixup.tmp'; + runcmd qw(rm -rf), $td; + mkdir $td, 0700 or die "$td $!"; + chdir $td or die $!; + runcmd qw(git init -q); + runcmd qw(git config gc.auto 0); + runcmd qw(rm -rf .git/objects); + symlink "../../objects", ".git/objects" or die $!; + + my %map; + + if ($old) { + runcmd qw(git checkout -q), $old; + open M, "map" or die $!; + while () { + m/^(\w+)(?:\s+(\w+))?$/ or die; + $map{$1} = $2; + $count{rewrite_map_previous}++; + } + M->error and die $!; + close M or die $!; + } + + foreach my $up (@updates) { + $map{ $up->[1] } = $up->[2]; + } + + open M, ">", "map" or die $!; + printf M "%s%s\n", + $_, (defined $map{$_} ? " $map{$_}" : "") + or die $! + foreach keys %map; + close M or die $!; + + if (!$old) { + runcmd qw(git add map); + } + + runcmd qw(git commit -q), + qw(-m), 'dgit-badcommit-fixup', + qw(map); + + $!=0; $?=0; + my $new = `git rev-parse HEAD`; + die "$? $!" if $?; + chomp $new or die; + + chdir '..' or die $!; + runcmd qw(rm -rf), $td; + + $count{rewrite_map_updated}++; + + return $new; +} + $!=0; $?=0; my $refs=`git for-each-ref`; die "$? $!" if $?; chomp $refs; -our @updates; +our $org_rewrite_map; foreach my $rline (split /\n/, $refs) { my ($obj, $type, $refname) = $rline =~ m/^(\w+)\s+(\w+)\s+(\S.*)/ or die "$_ ?"; + if ($refname eq 'refs/dgit-rewrite/map') { + $org_rewrite_map = $obj; + continue; + } my $rewrite; if ($type eq 'commit') { $rewrite = rewrite_commit($obj); @@ -147,9 +219,20 @@ foreach my $rline (split /\n/, $refs) { push @updates, [ $refname, $obj, $rewrite ]; } -our $worktree; +if ($bare eq 'true') { + my $new_rewrite_map = edit_rewrite_map($org_rewrite_map); + push @updates, [ 'refs/dgit-rewrite/map', + ($org_rewrite_map // '0'x40), + ($new_rewrite_map // '0'x40), + 1 ]; +} + +filter_updates(); -@updates = grep { $_->[1] ne $_->[2] } @updates; +if (!@updates) { + print Dumper(\%count), "nothing to do\n"; + exit 0; +} #print Dumper(\@updates); @@ -161,12 +244,14 @@ if ($real && $bare eq 'false') { } for my $up (@updates) { - my ($ref, $old, $new) = @$up; + my ($ref, $old, $new, $nobackup) = @$up; my $otherref = $ref; $otherref =~ s{^refs/}{}; if ($real) { - print U <