summaryrefslogtreecommitdiff
path: root/dgit-badcommit-fixup
diff options
context:
space:
mode:
Diffstat (limited to 'dgit-badcommit-fixup')
-rwxr-xr-xdgit-badcommit-fixup26
1 files changed, 17 insertions, 9 deletions
diff --git a/dgit-badcommit-fixup b/dgit-badcommit-fixup
index c119c4a..a9a8f60 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 <<END or die $! unless $nobackup;
create refs/dgit-badcommit/$otherref $old
END
print U <<END or die $!;
update $ref $new $old
END
- } else {
+ } elsif ($real==0) {
print U <<END or die $!;
update refs/dgit-badfixuptest/$otherref $new
END
+ } else {
+ print "found trouble in history of $ref\n" or die $!;
}
}
-$?=0; $!=0;
-close U or die "$? $!";
-die $? if $?;
+if ($real >= 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 $!;
}