From e6ef76e06de2ab76c2d25029008ac1df8872caf0 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 5 Jan 2017 01:43:22 +0000 Subject: [PATCH] badcommit-fixup: seems to do main thing --- badcommit-fixup | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/badcommit-fixup b/badcommit-fixup index af4b89d2..2eeaefe1 100755 --- a/badcommit-fixup +++ b/badcommit-fixup @@ -30,7 +30,7 @@ sub getobj ($$) { sub hashobj ($$) { my ($data,$type) = @_; my $gwopid = open2 \*GWO, \*GWI, - "git hash-object -t $type --stdin" + "git hash-object -w -t $type --stdin" or die $!; print GWI $data or die $!; close GWI or die $!; @@ -55,14 +55,14 @@ sub rewrite_commit ($) { my $msg = $'; $_ = $`; s{^(parent )(\w+)$}{ $1 . rewrite_commit($2) }gme; - $count{fix_overwrite} += s{^commiter }{committer }gm; + $count{'fix overwrite'} += s{^commiter }{committer }gm; if (!m{^author }m && !m{^committer }m) { m{^parent (\w+)}m or die "$obj ?"; my $parent = getobj $1, 'commit'; $parent =~ m/^(?:.+\n)+(author .*\ncommitter .*\n)/; m/\n$/ or die "$obj ?"; $_ .= $1; - $count{fix_import}++; + $count{'fix import'}++; } my $newdata = $_.$msg; my $newobj; @@ -82,7 +82,7 @@ sub rewrite_tag ($) { m/^type (\w+)\n/m or die "$obj ?"; if ($1 ne 'commit') { $count{"oddtags $1"}++; - return; + return $obj; } m/^object (\w+)\n/m or die "$obj ?"; my $oldref = $1; @@ -111,12 +111,12 @@ foreach my $rline (split /\n/, $refs) { if ($type eq 'commit') { $rewrite = rewrite_commit($obj); } elsif ($type eq 'tag') { - my $rewrite = rewrite_tag($obj); + $rewrite = rewrite_tag($obj); } else { warn "ref $refname refers to $type\n"; next; } - next if $rewrite = $obj; + next if $rewrite eq $obj; push @updates, [ $refname, $rewrite ]; } -- 2.30.2