X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=dgit-badcommit-fixup;h=c119c4acae99f65f8e7e626b0a7960fb54bcb1fd;hb=af81e78b203ee91bbea8b5923cf6f085f6840f2f;hp=ec6f57c78395f6f9c5a4debf767fa5bc6911da19;hpb=e2839a09e5eb2fc805669586554aa0a3f241c18a;p=dgit.git diff --git a/dgit-badcommit-fixup b/dgit-badcommit-fixup index ec6f57c7..c119c4ac 100755 --- a/dgit-badcommit-fixup +++ b/dgit-badcommit-fixup @@ -6,12 +6,27 @@ # dgit-badcommit-fixup --test # dgit-badcommit-fixup --real +# Update procedure, from server operator's point of view: +# +# 1. Test in an offline tree that this DTRT +# +# 2. Announce a transition time. Tell everyone that between +# the transition time and their next upload, they must +# run this script. +# +# 3. At the transition time, run this script in every repo. +# +# 4. Run the mirror script to push changes, if necessary. + + use strict; use POSIX; use IPC::Open2; use Data::Dumper; +our $our_version = 'UNRELEASED'; ###substituted### + my $real; foreach my $a (@ARGV) { @@ -97,13 +112,21 @@ sub rewrite_commit ($) { if ($newdata eq $olddata) { $newobj = $obj; $count{unchanged}++; +#print STDERR "UNCHANGED $obj\n"; } else { $newobj = hashobj $newdata, 'commit'; +#print STDERR "REWRITTEN $obj $newobj\n"; } $$m= $newobj; return $newobj; } +our @updates; + +sub filter_updates () { + @updates = grep { $_->[1] ne $_->[2] } @updates; +} + sub rewrite_tag ($) { my ($obj) = @_; $_ = getobj $obj, 'tag'; @@ -123,18 +146,91 @@ 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 $oldc (keys %memo) { + my $newc = $memo{$oldc}; + next if $oldc eq $newc; + $map{$oldc} = $newc; + } + foreach my $up (@updates) { # catches tags + $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), <[1] ne $_->[2] } @updates; +filter_updates(); + +if (!@updates) { + print Dumper(\%count), "nothing to do\n"; + exit 0; +} #print Dumper(\@updates); open U, "|git update-ref -m 'dgit bad commit fixup' --stdin" or die $!; -if ($real && $bare eq 'false') { - print "detaching your HEAD\n" or die $!; - runcmd 'git checkout --detach'; -} - 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 <