X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=badcommit-fixup;h=b8cb88adbaaf9e257dfd94152f1b4176de94d3e6;hb=6f69676c5ca035f70488e4b73c07ee1113b49bb3;hp=af4b89d2bbb30a39e6d78a93adcd849e9bbf1a72;hpb=5374279253457f5f43878619afc4533f809f1e05;p=dgit.git diff --git a/badcommit-fixup b/badcommit-fixup index af4b89d2..b8cb88ad 100755 --- a/badcommit-fixup +++ b/badcommit-fixup @@ -1,11 +1,20 @@ #!/usr/bin/perl -w +# usage: +# .../badcommit-fixup --test +# .../badcommit-fixup --real + use strict; use POSIX; use IPC::Open2; use Data::Dumper; +die unless "@ARGV" eq "--test" or "@ARGV" eq "--real"; + +my ($modeopt) = @ARGV; +my $real = ($modeopt eq '--real'); + my $gcfpid = open2 \*GCFO, \*GCFI, 'git cat-file --batch' or die $!; our %count; @@ -30,7 +39,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 +64,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 +91,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; @@ -96,7 +105,7 @@ sub rewrite_tag ($) { } $!=0; $?=0; -my $refs=`git-for-each-ref`; +my $refs=`git for-each-ref`; die "$? $!" if $?; chomp $refs; @@ -111,13 +120,51 @@ 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; - push @updates, [ $refname, $rewrite ]; + next if $rewrite eq $obj; + push @updates, [ $refname, $obj, $rewrite ]; +} + +open U, "|git update-ref -m 'dgit bad commit fixup' --stdin" or die $!; + +if ($real) { + $!=0; $?=0; + my $bare = `git rev-parse --is-bare-repository`; + die "$? $!" if $?; + if ($bare eq 'false') { + print "detaching your HEAD\n" or die $!; + system 'git checkout --detach' and die "$! $?"; + } } -print Dumper(\@updates, \%count); +for my $up (@updates) { + my ($ref, $old, $new) = @$up; + my $otherref = $ref; + $otherref =~ s{^refs/}{}; + if ($real) { + print U <