X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=blobdiff_plain;f=dgit-badcommit-fixup;fp=dgit-badcommit-fixup;h=a9a8f60f88aa94d7e459e968a091f826abcd955d;hp=c119c4acae99f65f8e7e626b0a7960fb54bcb1fd;hb=e0feac940e7af31c5ddfa3c54b54567ef6632e4f;hpb=af81e78b203ee91bbea8b5923cf6f085f6840f2f diff --git a/dgit-badcommit-fixup b/dgit-badcommit-fixup index c119c4ac..a9a8f60f 100755 --- a/dgit-badcommit-fixup +++ b/dgit-badcommit-fixup @@ -3,6 +3,7 @@ # Script to help with fallout from #849041. # # usage: +# dgit-badcommit-fixup --check # dgit-badcommit-fixup --test # dgit-badcommit-fixup --real @@ -34,6 +35,8 @@ foreach my $a (@ARGV) { $real = 0; } elsif ($a eq '--real') { $real = 1; + } elsif ($a eq '--check') { + $real = -1; } else { die "$a ?"; } @@ -254,40 +257,45 @@ if ($bare eq 'true') { filter_updates(); if (!@updates) { - print Dumper(\%count), "nothing to do\n"; + print Dumper(\%count), "all is well - nothing to do\n"; exit 0; } #print Dumper(\@updates); -open U, "|git update-ref -m 'dgit bad commit fixup' --stdin" or die $!; +open U, "|git update-ref -m 'dgit bad commit fixup' --stdin" or die $! + if $real >= 0; for my $up (@updates) { my ($ref, $old, $new, $nobackup) = @$up; my $otherref = $ref; $otherref =~ s{^refs/}{}; - if ($real) { + if ($real > 0) { print U <= 0) { + $?=0; $!=0; + close U or die "$? $!"; + die $? if $?; +} print Dumper(\%count); -if ($real) { +if ($real >= 0) { print "old values saved in refs/dgit-badcommit/\n" or die $!; -} else { +} elsif ($real == 0) { print "testing output saved in refs/dgit-badfixuptest/\n" or die $!; }