chiark / gitweb /
git-debrebase: dgit import: honour $upp_limit
[dgit.git] / git-debrebase
1 #!/usr/bin/perl -w
2 # git-debrebase
3 # Script helping make fast-forwarding histories while still rebasing
4 # upstream deltas when working on Debian packaging
5 #
6 # Copyright (C)2017,2018 Ian Jackson
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21
22 # usages:
23 #
24 #    git-debrebase [<options>] new-upstream-v0 \
25 #             <new-version> <orig-commitish> \
26 #            [<extra-orig-name> <extra-orig-commitish> ...] \
27 #            [<git-rebase options>...]
28 #
29 #    git-debrebase [<options> --] [<git-rebase options...>]
30 #    git-debrebase [<options>] analyse
31 #    git-debrebase [<options>] launder         # prints breakwater tip etc.
32 #    git-debrebase [<options>] stitch [--prose=<for commit message>]
33 #    git-debrebase [<options>] downstream-rebase-launder-v0  # experimental
34 #
35 #    git-debrebase [<options>] gbp2debrebase-v0 \
36 #             <upstream>
37
38 # problems / outstanding questions:
39 #
40 #  *  dgit push with a `3.0 (quilt)' package means doing quilt
41 #     fixup.  Usually this involves recommitting the whole patch
42 #     series, one at a time, with dpkg-source --commit.  This is
43 #     terribly terribly slow.  (Maybe this should be fixed in dgit.)
44 #
45 #  * dgit push usually needs to (re)make a pseudomerge.  The "first"
46 #    git-debrebase stripped out the previous pseudomerge and could
47 #    have remembeed the HEAD.  But it's not quite clear what history
48 #    ought to be preserved and what should be discarded.  For now
49 #    the user will have to tell dgit --overwrite.
50 #
51 #    To fix this, do we need a new push hook for dgit ?
52 #
53 #  * Workflow is currently clumsy.  Lots of spurious runes to type.
54 #    There's not even a guide.
55 #
56 #  * There are no tests.
57 #
58 #  * new-upstream-v0 has a terrible UI.  You end up with giant
59 #    runic command lines.
60 #
61 #    One consequence of the lack of richness it can need --force in
62 #    fairly sensible situations and there is no way to tell it what
63 #    you are really trying to do, other than just --force.  There
64 #    should be an interface with some default branch names.
65 #
66 #  * There should be a standard convention for the version number,
67 #    and unfinalised or not changelog, after new-upstream.
68 #
69 #  * Handing of multi-orig dgit new-upstream .dsc imports is known to
70 #    be broken.  They may be not recognised, improperly converted, or
71 #    their conversion may be unrecognised.
72 #
73 #  * Docs need writing and updating.  Even README.git-debrebase
74 #    describes a design but may not reflect the implementation.
75 #
76 #  * We need to develop a plausible model that works for derivatives,
77 #    who probably want to maintain their stack on top of Debian's.
78 #    downstream-rebase-launder-v0 may be a starting point?
79
80 use strict;
81
82 use Debian::Dgit qw(:DEFAULT :playground);
83 setup_sigwarn();
84
85 use Memoize;
86 use Carp;
87 use POSIX;
88 use Data::Dumper;
89 use Getopt::Long qw(:config posix_default gnu_compat bundling);
90 use Dpkg::Version;
91 use File::FnMatch qw(:fnmatch);
92
93 our ($opt_force, $opt_noop_ok);
94
95 our $us = qw(git-debrebase);
96
97 sub badusage ($) {
98     my ($m) = @_;
99     die "bad usage: $m\n";
100 }
101
102 sub cfg ($;$) {
103     my ($k, $optional) = @_;
104     local $/ = "\0";
105     my @cmd = qw(git config -z);
106     push @cmd, qw(--get-all) if wantarray;
107     push @cmd, $k;
108     my $out = cmdoutput_errok @cmd;
109     if (!defined $out) {
110         fail "missing required git config $k" unless $optional;
111         return ();
112     }
113     return split /\0/, $out;
114 }
115
116 memoize('cfg');
117
118 sub dd ($) {
119     my ($v) = @_;
120     my $dd = new Data::Dumper [ $v ];
121     Terse $dd 1; Indent $dd 0; Useqq $dd 1;
122     return Dump $dd;
123 }
124
125 sub get_commit ($) {
126     my ($objid) = @_;
127     my $data = (git_cat_file $objid, 'commit');
128     $data =~ m/(?<=\n)\n/ or die "$objid ($data) ?";
129     return ($`,$');
130 }
131
132 sub D_UPS ()      { 0x02; } # upstream files
133 sub D_PAT_ADD ()  { 0x04; } # debian/patches/ extra patches at end
134 sub D_PAT_OTH ()  { 0x08; } # debian/patches other changes
135 sub D_DEB_CLOG () { 0x10; } # debian/ (not patches/ or changelog)
136 sub D_DEB_OTH ()  { 0x20; } # debian/changelog
137 sub DS_DEB ()     { D_DEB_CLOG | D_DEB_OTH; } # debian/ (not patches/)
138
139 our $playprefix = 'debrebase';
140 our $rd;
141 our $workarea;
142
143 our @git = qw(git);
144
145 sub in_workarea ($) {
146     my ($sub) = @_;
147     changedir $workarea;
148     my $r = eval { $sub->(); };
149     { local $@; changedir $maindir; }
150     die $@ if $@;
151 }
152
153 sub fresh_workarea () {
154     $workarea = fresh_playground "$playprefix/work";
155     in_workarea sub { playtree_setup };
156 }
157
158 sub get_differs ($$) {
159     my ($x,$y) = @_;
160     # This resembles quiltify_trees_differ, in dgit, a bit.
161     # But we don't care about modes, or dpkg-source-unrepresentable
162     # changes, and we don't need the plethora of different modes.
163     # Conversely we need to distinguish different kinds of changes to
164     # debian/ and debian/patches/.
165
166     my $differs = 0;
167
168     my $rundiff = sub {
169         my ($opts, $limits, $fn) = @_;
170         my @cmd = (@git, qw(diff-tree -z --no-renames));
171         push @cmd, @$opts;
172         push @cmd, "$_:" foreach $x, $y;
173         push @cmd, '--', @$limits;
174         my $diffs = cmdoutput @cmd;
175         foreach (split /\0/, $diffs) { $fn->(); }
176     };
177
178     $rundiff->([qw(--name-only)], [], sub {
179         $differs |= $_ eq 'debian' ? DS_DEB : D_UPS;
180     });
181
182     if ($differs & DS_DEB) {
183         $differs &= ~DS_DEB;
184         $rundiff->([qw(--name-only -r)], [qw(debian)], sub {
185             $differs |=
186                 m{^debian/patches/}      ? D_PAT_OTH  :
187                 $_ eq 'debian/changelog' ? D_DEB_CLOG :
188                                            D_DEB_OTH;
189         });
190         die "mysterious debian changes $x..$y"
191             unless $differs & (D_PAT_OTH|DS_DEB);
192     }
193
194     if ($differs & D_PAT_OTH) {
195         my $mode;
196         $differs &= ~D_PAT_OTH;
197         my $pat_oth = sub {
198             $differs |= D_PAT_OTH;
199             no warnings qw(exiting);  last;
200         };
201         $rundiff->([qw(--name-status -r)], [qw(debian/patches/)], sub {
202             no warnings qw(exiting);
203             if (!defined $mode) {
204                 $mode = $_;  next;
205             }
206             die unless s{^debian/patches/}{};
207             my $ok;
208             if ($mode eq 'A' && !m/\.series$/s) {
209                 $ok = 1;
210             } elsif ($mode eq 'M' && $_ eq 'series') {
211                 my $x_s = (git_cat_file "$x:debian/patches/series", 'blob');
212                 my $y_s = (git_cat_file "$y:debian/patches/series", 'blob');
213                 chomp $x_s;  $x_s .= "\n";
214                 $ok = $x_s eq substr($y_s, 0, length $x_s);
215             } else {
216                 # nope
217             }
218             $mode = undef;
219             $differs |= $ok ? D_PAT_ADD : D_PAT_OTH;
220         });
221         die "mysterious debian/patches changes $x..$y"
222             unless $differs & (D_PAT_ADD|D_PAT_OTH);
223     }
224
225     printdebug sprintf "get_differs %s, %s = %#x\n", $x, $y, $differs;
226
227     return $differs;
228 }
229
230 sub commit_pr_info ($) {
231     my ($r) = @_;
232     return Data::Dumper->dump([$r], [qw(commit)]);
233 }
234
235 sub calculate_committer_authline () {
236     my $c = cmdoutput @git, qw(commit-tree --no-gpg-sign -m),
237         'DUMMY COMMIT (git-debrebase)', "HEAD:";
238     my ($h,$m) = get_commit $c;
239     $h =~ m/^committer .*$/m or confess "($h) ?";
240     return $&;
241 }
242
243 sub rm_subdir_cached ($) {
244     my ($subdir) = @_;
245     runcmd @git, qw(rm --quiet -rf --cached --ignore-unmatch), $subdir;
246 }
247
248 sub read_tree_subdir ($$) {
249     my ($subdir, $new_tree_object) = @_;
250     rm_subdir_cached $subdir;
251     runcmd @git, qw(read-tree), "--prefix=$subdir/", $new_tree_object;
252 }
253
254 sub make_commit ($$) {
255     my ($parents, $message_paras) = @_;
256     my $tree = cmdoutput @git, qw(write-tree);
257     my @cmd = (@git, qw(commit-tree), $tree);
258     push @cmd, qw(-p), $_ foreach @$parents;
259     push @cmd, qw(-m), $_ foreach @$message_paras;
260     return cmdoutput @cmd;
261 }
262
263 our @fproblem_force_opts;
264 our $fproblems_forced;
265 our $fproblems_tripped;
266 sub fproblem ($$) {
267     my ($tag,$msg) = @_;
268     if (grep { $_ eq $tag } @fproblem_force_opts) {
269         $fproblems_forced++;
270         print STDERR "git-debrebase: safety catch overridden (-f$tag): $msg\n";
271     } else {
272         $fproblems_tripped++;
273         print STDERR "git-debrebase: safety catch tripped (-f$tag): $msg\n";
274     }
275 }
276
277 sub fproblems_maybe_bail () {
278     if ($fproblems_forced) {
279         printf STDERR
280             "%s: safety catch trips: %d overriden by individual -f options\n",
281             $us, $fproblems_forced;
282     }
283     if ($fproblems_tripped) {
284         if ($opt_force) {
285             printf STDERR
286                 "%s: safety catch trips: %d overriden by global --force\n",
287                 $us, $fproblems_tripped;
288         } else {
289             fail sprintf
290   "%s: safety catch trips: %d blockers (you could -f<tag>, or --force)",
291                 $us, $fproblems_tripped;
292         }
293     }
294 }
295 sub any_fproblems () {
296     return $fproblems_forced || $fproblems_tripped;
297 }
298
299 # classify returns an info hash like this
300 #   CommitId => $objid
301 #   Hdr => # commit headers, including 1 final newline
302 #   Msg => # commit message (so one newline is dropped)
303 #   Tree => $treeobjid
304 #   Type => (see below)
305 #   Parents = [ {
306 #       Ix => $index # ie 0, 1, 2, ...
307 #       CommitId
308 #       Differs => return value from get_differs
309 #       IsOrigin
310 #       IsDggitImport => 'orig' 'tarball' 'unpatched' 'package' (as from dgit)
311 #     } ...]
312 #   NewMsg => # commit message, but with any [dgit import ...] edited
313 #             # to say "[was: ...]"
314 #
315 # Types:
316 #   Packaging
317 #   Changelog
318 #   Upstream
319 #   AddPatches
320 #   Mixed
321 #   Unknown
322 #
323 #   Pseudomerge
324 #     has additional entres in classification result
325 #       Overwritten = [ subset of Parents ]
326 #       Contributor = $the_remaining_Parent
327 #
328 #   DgitImportUnpatched
329 #     has additional entry in classification result
330 #       OrigParents = [ subset of Parents ]
331 #
332 #   BreakwaterUpstreamMerge
333 #     has additional entry in classification result
334 #       OrigParents = [ subset of Parents ]  # singleton list
335
336 sub parsecommit ($;$) {
337     my ($objid, $p_ref) = @_;
338     # => hash with                   CommitId Hdr Msg Tree Parents
339     #    Parents entries have only   Ix CommitId
340     #    $p_ref, if provided, must be [] and is used as a base for Parents
341
342     $p_ref //= [];
343     die if @$p_ref;
344
345     my ($h,$m) = get_commit $objid;
346
347     my ($t) = $h =~ m/^tree (\w+)$/m or die $objid;
348     my (@ph) = $h =~ m/^parent (\w+)$/mg;
349
350     my $r = {
351         CommitId => $objid,
352         Hdr => $h,
353         Msg => $m,
354         Tree => $t,
355         Parents => $p_ref,
356     };
357
358     foreach my $ph (@ph) {
359         push @$p_ref, {
360             Ix => scalar @$p_ref,
361             CommitId => $ph,
362         };
363     }
364
365     return $r;
366 }    
367
368 sub classify ($) {
369     my ($objid) = @_;
370
371     my @p;
372     my $r = parsecommit($objid, \@p);
373     my $t = $r->{Tree};
374
375     foreach my $p (@p) {
376         $p->{Differs} = (get_differs $p->{CommitId}, $t),
377     }
378
379     printdebug "classify $objid \$t=$t \@p",
380         (map { sprintf " %s/%#x", $_->{CommitId}, $_->{Differs} } @p),
381         "\n";
382
383     my $classify = sub {
384         my ($type, @rest) = @_;
385         $r = { %$r, Type => $type, @rest };
386         if ($debuglevel) {
387             printdebug " = $type ".(dd $r)."\n";
388         }
389         return $r;
390     };
391     my $unknown = sub {
392         my ($why) = @_;
393         $r = { %$r, Type => qw(Unknown) };
394         printdebug " ** Unknown\n";
395         return $r;
396     };
397
398     my $claims_to_be_breakwater =
399         $r->{Msg} =~ m{^\[git-debrebase breakwater.*\]$}m;
400
401     if (@p == 1) {
402         if ($claims_to_be_breakwater) {
403             return $unknown->("single-parent git-debrebase breakwater \`merge'");
404         }
405         my $d = $r->{Parents}[0]{Differs};
406         if ($d == D_PAT_ADD) {
407             return $classify->(qw(AddPatches));
408         } elsif ($d & (D_PAT_ADD|D_PAT_OTH)) {
409             return $unknown->("edits debian/patches");
410         } elsif ($d & DS_DEB and !($d & ~DS_DEB)) {
411             my ($ty,$dummy) = git_cat_file "$p[0]{CommitId}:debian";
412             if ($ty eq 'tree') {
413                 if ($d == D_DEB_CLOG) {
414                     return $classify->(qw(Changelog));
415                 } else {
416                     return $classify->(qw(Packaging));
417                 }
418             } elsif ($ty eq 'missing') {
419                 return $classify->(qw(BreakwaterStart));
420             } else {
421                 return $unknown->("parent's debian is not a directory");
422             }
423         } elsif ($d == D_UPS) {
424             return $classify->(qw(Upstream));
425         } elsif ($d & DS_DEB and $d & D_UPS and !($d & ~(DS_DEB|D_UPS))) {
426             return $classify->(qw(Mixed));
427         } elsif ($d == 0) {
428             return $unknown->("no changes");
429         } else {
430             confess "internal error $objid ?";
431         }
432     }
433     if (!@p) {
434         return $unknown->("origin commit");
435     }
436
437     my @identical = grep { !$_->{Differs} } @p;
438     if (@p == 2 && @identical == 1 && !$claims_to_be_breakwater
439         # breakwater merges can look like pseudomerges, if they are
440         # "declare" commits (ie, there are no upstream changes)
441        ) {
442         my @overwritten = grep { $_->{Differs} } @p;
443         confess "internal error $objid ?" unless @overwritten==1;
444         return $classify->(qw(Pseudomerge),
445                            Overwritten => [ $overwritten[0] ],
446                            Contributor => $identical[0]);
447     }
448     if (@p == 2 && @identical == 2) {
449         my @bytime = nsort_by {
450             my ($ph,$pm) = get_commit $_->{CommitId};
451             $ph =~ m/^committer .* (\d+) [-+]\d+$/m or die "$_->{CommitId} ?";
452             $1;
453         } @p;
454         return $classify->(qw(Pseudomerge),
455                            SubType => qw(Ambiguous),
456                            Overwritten => [ $bytime[0] ],
457                            Contributor => $bytime[1]);
458     }
459     foreach my $p (@p) {
460         my ($p_h, $p_m) = get_commit $p->{CommitId};
461         $p->{IsOrigin} = $p_h !~ m/^parent \w+$/m;
462         ($p->{IsDgitImport},) = $p_m =~ m/^\[dgit import ([0-9a-z]+) .*\]$/m;
463     }
464     my @orig_ps = grep { ($_->{IsDgitImport}//'X') eq 'orig' } @p;
465     my $m2 = $r->{Msg};
466     if (!(grep { !$_->{IsOrigin} } @p) and
467         (@orig_ps >= @p - 1) and
468         $m2 =~ s{^\[(dgit import unpatched .*)\]$}{[was: $1]}m) {
469         $r->{NewMsg} = $m2;
470         return $classify->(qw(DgitImportUnpatched),
471                            OrigParents => \@orig_ps);
472     }
473
474     my ($stype, $series) = git_cat_file "$t:debian/patches/series";
475     my $haspatches = $stype ne 'missing' && $series =~ m/^\s*[^#\n\t ]/m;
476
477     # How to decide about l/r ordering of breakwater merges ?  git
478     # --topo-order prefers to expand 2nd parent first.  There's
479     # already an easy rune to look for debian/ history anyway (git log
480     # debian/) so debian breakwater branch should be 1st parent; that
481     # way also there's also an easy rune to look for the upstream
482     # patches (--topo-order).
483
484     # The above tells us which way *we* will generate them.  But we
485     # might encounter ad-hoc breakwater merges generated manually,
486     # which might be the other way around.  In principle, in some odd
487     # situations, a breakwater merge might have two identical parents.
488     # In that case we guess which way round it is (ie, which parent
489     # has the upstream history).  The order of the 2-iteration loop
490     # controls which guess we make.
491
492     foreach my $prevbrw (qw(0 1)) {
493         if (@p == 2 &&
494             !$haspatches &&
495             !$p[$prevbrw]{IsOrigin} && # breakwater never starts with an origin
496             !($p[!$prevbrw]{Differs} & ~DS_DEB) && # no non-debian changess
497             !($p[$prevbrw]{Differs} & ~D_UPS)) { # no non-upstream changes
498             return $classify->(qw(BreakwaterUpstreamMerge),
499                                OrigParents => [ $p[!$prevbrw] ]);
500         }
501     }
502
503     # multi-orig upstreams are represented with a breakwater merge
504     # from a single upstream commit which combines the orig tarballs
505
506     return $unknown->("complex merge");
507 }
508
509 sub walk ($;$$);
510 sub walk ($;$$) {
511     my ($input,
512         $nogenerate,$report) = @_;
513     # => ($tip, $breakwater_tip, $last_upstream_merge_in_breakwater)
514     # (or nothing, if $nogenerate)
515
516     printdebug "*** WALK $input ".($nogenerate//0)." ".($report//'-')."\n";
517
518     # go through commits backwards
519     # we generate two lists of commits to apply:
520     # breakwater branch and upstream patches
521     my (@brw_cl, @upp_cl, @processed);
522     my %found;
523     my $upp_limit;
524     my @pseudomerges;
525
526     my $cl;
527     my $xmsg = sub {
528         my ($prose, $info) = @_;
529         my $ms = $cl->{Msg};
530         chomp $ms;
531         $info //= '';
532         $ms .= "\n\n[git-debrebase$info: $prose]\n";
533         return (Msg => $ms);
534     };
535     my $rewrite_from_here = sub {
536         my $sp_cl = { SpecialMethod => 'StartRewrite' };
537         push @brw_cl, $sp_cl;
538         push @processed, $sp_cl;
539     };
540     my $cur = $input;
541
542     my $prdelim = "";
543     my $prprdelim = sub { print $report $prdelim if $report; $prdelim=""; };
544
545     my $prline = sub {
546         return unless $report;
547         print $report $prdelim, @_;
548         $prdelim = "\n";
549     };
550
551     my $bomb = sub { # usage: return $bomb->();
552         print $report " Unprocessable" if $report;
553         $prprdelim->();
554         if ($nogenerate) {
555             return (undef,undef);
556         }
557         die "commit $cur: Cannot cope with this commit (d.".
558             (join ' ', map { sprintf "%#x", $_->{Differs} }
559              @{ $cl->{Parents} }). ")";
560     };
561
562     my $build;
563     my $breakwater;
564
565     my $build_start = sub {
566         my ($msg, $parent) = @_;
567         $prline->(" $msg");
568         $build = $parent;
569         no warnings qw(exiting); last;
570     };
571
572     my $last_upstream_update;
573
574     for (;;) {
575         $cl = classify $cur;
576         my $ty = $cl->{Type};
577         my $st = $cl->{SubType};
578         $prline->("$cl->{CommitId} $cl->{Type}");
579         $found{$ty. ( defined($st) ? "-$st" : '' )}++;
580         push @processed, $cl;
581         my $p0 = @{ $cl->{Parents} }==1 ? $cl->{Parents}[0]{CommitId} : undef;
582         if ($ty eq 'AddPatches') {
583             $cur = $p0;
584             $rewrite_from_here->();
585             next;
586         } elsif ($ty eq 'Packaging' or $ty eq 'Changelog') {
587             push @brw_cl, $cl;
588             $cur = $p0;
589             next;
590         } elsif ($ty eq 'BreakwaterStart') {
591             $last_upstream_update = $cur;
592             $build_start->('FirstPackaging', $cur);
593         } elsif ($ty eq 'Upstream') {
594             push @upp_cl, $cl;
595             $cur = $p0;
596             next;
597         } elsif ($ty eq 'Mixed') {
598             my $queue = sub {
599                 my ($q, $wh) = @_;
600                 my $cls = { %$cl, $xmsg->("split mixed commit: $wh part") };
601                 push @$q, $cls;
602             };
603             $queue->(\@brw_cl, "debian");
604             $queue->(\@upp_cl, "upstream");
605             $rewrite_from_here->();
606             $cur = $p0;
607             next;
608         } elsif ($ty eq 'Pseudomerge') {
609             my $contrib = $cl->{Contributor}{CommitId};
610             print $report " Contributor=$contrib" if $report;
611             push @pseudomerges, $cl;
612             $rewrite_from_here->();
613             $cur = $contrib;
614             next;
615         } elsif ($ty eq 'BreakwaterUpstreamMerge') {
616             $last_upstream_update = $cur;
617             $build_start->("PreviousBreakwater", $cur);
618         } elsif ($ty eq 'DgitImportUnpatched') {
619             my $pm = $pseudomerges[-1];
620             if (defined $pm) {
621                 # To an extent, this is heuristic.  Imports don't have
622                 # a useful history of the debian/ branch.  We assume
623                 # that the first pseudomerge after an import has a
624                 # useful history of debian/, and ignore the histories
625                 # from later pseudomerges.  Often the first pseudomerge
626                 # will be the dgit import of the upload to the actual
627                 # suite intended by the non-dgit NMUer, and later
628                 # pseudomerges may represent in-archive copies.
629                 my $ovwrs = $pm->{Overwritten};
630                 printf $report " PM=%s \@Overwr:%d",
631                     $pm->{CommitId}, (scalar @$ovwrs)
632                     if $report;
633                 if (@$ovwrs != 1) {
634                     printdebug "*** WALK BOMB DgitImportUnpatched\n";
635                     return $bomb->();
636                 }
637                 my $ovwr = $ovwrs->[0]{CommitId};
638                 printf $report " Overwr=%s", $ovwr if $report;
639                 # This import has a tree which is just like a
640                 # breakwater tree, but it has the wrong history.  It
641                 # ought to have the previous breakwater (which the
642                 # pseudomerge overwrote) as an ancestor.  That will
643                 # make the history of the debian/ files correct.  As
644                 # for the upstream version: either it's the same as
645                 # was ovewritten (ie, same as the previous
646                 # breakwater), in which case that history is precisely
647                 # right; or, otherwise, it was a non-gitish upload of a
648                 # new upstream version.  We can tell these apart by
649                 # looking at the tree of the supposed upstream.
650                 push @brw_cl, {
651                     %$cl,
652                     SpecialMethod => 'DgitImportDebianUpdate',
653                     $xmsg->("convert dgit import: debian changes")
654                 }, {
655                     %$cl,
656                     SpecialMethod => 'DgitImportUpstreamUpdate',
657                     $xmsg->("convert dgit import: upstream update",
658                             " breakwater")
659                 };
660                 $prline->(" Import");
661                 $rewrite_from_here->();
662                 $upp_limit //= $#upp_cl; # further, deeper, patches discarded
663                 $cur = $ovwr;
664                 next;
665             } else {
666                 # Everything is from this import.  This kind of import
667                 # is already in valid breakwater format, with the
668                 # patches as commits.
669                 printf $report " NoPM" if $report;
670                 # last thing we processed will have been the first patch,
671                 # if there is one; which is fine, so no need to rewrite
672                 # on account of this import
673                 $build_start->("ImportOrigin", $cur);
674             }
675             die "$ty ?";
676         } else {
677             printdebug "*** WALK BOMB unrecognised\n";
678             return $bomb->();
679         }
680     }
681     $prprdelim->();
682
683     printdebug "*** WALK prep done cur=$cur".
684         " brw $#brw_cl upp $#upp_cl proc $#processed pm $#pseudomerges\n";
685
686     return if $nogenerate;
687
688     # Now we build it back up again
689
690     fresh_workarea();
691
692     my $rewriting = 0;
693
694     my $read_tree_debian = sub {
695         my ($treeish) = @_;
696         read_tree_subdir 'debian', "$treeish:debian";
697         rm_subdir_cached 'debian/patches';
698     };
699     my $read_tree_upstream = sub {
700         my ($treeish) = @_;
701         runcmd @git, qw(read-tree), $treeish;
702         $read_tree_debian->($build);
703     };
704
705     $#upp_cl = $upp_limit if defined $upp_limit;
706  
707     my $committer_authline = calculate_committer_authline();
708
709     printdebug "WALK REBUILD $build ".(scalar @processed)."\n";
710
711     confess "internal error" unless $build eq (pop @processed)->{CommitId};
712
713     in_workarea sub {
714         mkdir $rd or $!==EEXIST or die $!;
715         my $current_method;
716         runcmd @git, qw(read-tree), $build;
717         foreach my $cl (qw(Debian), (reverse @brw_cl),
718                         { SpecialMethod => 'RecordBreakwaterTip' },
719                         qw(Upstream), (reverse @upp_cl)) {
720             if (!ref $cl) {
721                 $current_method = $cl;
722                 next;
723             }
724             my $method = $cl->{SpecialMethod} // $current_method;
725             my @parents = ($build);
726             my $cltree = $cl->{CommitId};
727             printdebug "WALK BUILD ".($cltree//'undef').
728                 " $method (rewriting=$rewriting)\n";
729             if ($method eq 'Debian') {
730                 $read_tree_debian->($cltree);
731             } elsif ($method eq 'Upstream') {
732                 $read_tree_upstream->($cltree);
733             } elsif ($method eq 'StartRewrite') {
734                 $rewriting = 1;
735                 next;
736             } elsif ($method eq 'RecordBreakwaterTip') {
737                 $breakwater = $build;
738                 next;
739             } elsif ($method eq 'DgitImportDebianUpdate') {
740                 $read_tree_debian->($cltree);
741                 rm_subdir_cached qw(debian/patches);
742             } elsif ($method eq 'DgitImportUpstreamUpdate') {
743                 confess unless $rewriting;
744                 my $differs = (get_differs $build, $cltree);
745                 next unless $differs & D_UPS;
746                 $read_tree_upstream->($cltree);
747                 push @parents, map { $_->{CommitId} } @{ $cl->{OrigParents} };
748             } else {
749                 confess "$method ?";
750             }
751             if (!$rewriting) {
752                 my $procd = (pop @processed) // 'UNDEF';
753                 if ($cl ne $procd) {
754                     $rewriting = 1;
755                     printdebug "WALK REWRITING NOW cl=$cl procd=$procd\n";
756                 }
757             }
758             my $newtree = cmdoutput @git, qw(write-tree);
759             my $ch = $cl->{Hdr};
760             $ch =~ s{^tree .*}{tree $newtree}m or confess "$ch ?";
761             $ch =~ s{^parent .*\n}{}m;
762             $ch =~ s{(?=^author)}{
763                 join '', map { "parent $_\n" } @parents
764             }me or confess "$ch ?";
765             if ($rewriting) {
766                 $ch =~ s{^committer .*$}{$committer_authline}m
767                     or confess "$ch ?";
768             }
769             my $cf = "$rd/m$rewriting";
770             open CD, ">", $cf or die $!;
771             print CD $ch, "\n", $cl->{Msg} or die $!;
772             close CD or die $!;
773             my @cmd = (@git, qw(hash-object));
774             push @cmd, qw(-w) if $rewriting;
775             push @cmd, qw(-t commit), $cf;
776             my $newcommit = cmdoutput @cmd;
777             confess "$ch ?" unless $rewriting or $newcommit eq $cl->{CommitId};
778             $build = $newcommit;
779             if (grep { $method eq $_ } qw(DgitImportUpstreamUpdate)) {
780                 $last_upstream_update = $cur;
781             }
782         }
783     };
784
785     my $final_check = get_differs $build, $input;
786     die sprintf "internal error %#x %s %s", $final_check, $build, $input
787         if $final_check & ~D_PAT_ADD;
788
789     my @r = ($build, $breakwater, $last_upstream_update);
790     printdebug "*** WALK RETURN @r\n";
791     return @r
792 }
793
794 sub get_head () {
795     git_check_unmodified();
796     return git_rev_parse qw(HEAD);
797 }
798
799 sub update_head ($$$) {
800     my ($old, $new, $mrest) = @_;
801     runcmd @git, qw(update-ref -m), "debrebase: $mrest", 'HEAD', $new, $old;
802 }
803
804 sub update_head_checkout ($$$) {
805     my ($old, $new, $mrest) = @_;
806     update_head $old, $new, $mrest;
807     runcmd @git, qw(reset --hard);
808 }
809
810 sub update_head_postlaunder ($$$) {
811     my ($old, $tip, $reflogmsg) = @_;
812     return if $tip eq $old;
813     print "git-debrebase: laundered (head was $old)\n";
814     update_head $old, $tip, $reflogmsg;
815     # no tree changes except debian/patches
816     runcmd @git, qw(rm --quiet --ignore-unmatch -rf debian/patches);
817 }
818
819 sub cmd_launder () {
820     badusage "no arguments to launder allowed" if @ARGV;
821     my $old = get_head();
822     my ($tip,$breakwater,$last_upstream_merge) = walk $old;
823     update_head_postlaunder $old, $tip, 'launder';
824     printf "# breakwater tip\n%s\n", $breakwater;
825     printf "# working tip\n%s\n", $tip;
826     printf "# last upstream merge\n%s\n", $last_upstream_merge;
827 }
828
829 sub defaultcmd_rebase () {
830     my $old = get_head();
831     my ($status, $message) = record_ffq_prev();
832     if ($status eq 'written' || $status eq 'exists') {
833     } else {
834         fproblem $status, "could not record ffq-prev: $message";
835         fproblems_maybe_bail();
836     }
837     my ($tip,$breakwater) = walk $old;
838     update_head_postlaunder $old, $tip, 'launder for rebase';
839     runcmd @git, qw(rebase), @ARGV, $breakwater;
840 }
841
842 sub cmd_analyse () {
843     die if ($ARGV[0]//'') =~ m/^-/;
844     badusage "too many arguments to analyse" if @ARGV>1;
845     my ($old) = @ARGV;
846     if (defined $old) {
847         $old = git_rev_parse $old;
848     } else {
849         $old = git_rev_parse 'HEAD';
850     }
851     my ($dummy,$breakwater) = walk $old, 1,*STDOUT;
852     STDOUT->error and die $!;
853 }
854
855 sub ffq_prev_branchinfo () {
856     # => ('status', "message", [$current, $ffq_prev])
857     # 'status' may be
858     #    branch         message is undef
859     #    weird-symref   } no $current,
860     #    notbranch      }  no $ffq_prev
861     my $current = git_get_symref();
862     return ('detached', 'detached HEAD') unless defined $current;
863     return ('weird-symref', 'HEAD symref is not to refs/')
864         unless $current =~ m{^refs/};
865     my $ffq_prev = "refs/$ffq_refprefix/$'";
866     return ('branch', undef, $current, $ffq_prev);
867 }
868
869 sub record_ffq_prev () {
870     # => ('status', "message")
871     # 'status' may be
872     #    written          message is undef
873     #    exists
874     #    detached
875     #    weird-symref
876     #    notbranch
877     # if not ff from some branch we should be ff from, is an fproblem
878     # if "written", will have printed something about that to stdout,
879     #   and also some messages about ff checks
880     my ($status, $message, $current, $ffq_prev) = ffq_prev_branchinfo();
881     return ($status, $message) unless $status eq 'branch';
882
883     my $currentval = get_head();
884
885     my $exists = git_get_ref $ffq_prev;
886     return ('exists',"$ffq_prev already exists") if $exists;
887
888     return ('not-branch', 'HEAD symref is not to refs/heads/')
889         unless $current =~ m{^refs/heads/};
890     my $branch = $';
891
892     my @check_specs = split /\;/, (cfg "branch.$branch.ffq-ffrefs",1) // '*';
893     my %checked;
894
895     my $check = sub {
896         my ($lrref, $desc) = @_;
897         my $invert;
898         for my $chk (@check_specs) {
899             my $glob = $chk;
900             $invert = $glob =~ s{^[^!]}{};
901             last if fnmatch $glob, $lrref;
902         }
903         return if $invert;
904         my $lrval = git_get_ref $lrref;
905         return unless defined $lrval;
906
907         if (is_fast_fwd $lrval, $currentval) {
908             print "OK, you are ahead of $lrref\n" or die $!;
909             $checked{$lrref} = 1;
910         } if (is_fast_fwd $currentval, $lrval) {
911             $checked{$lrref} = -1;
912             fproblem 'behind', "you are behind $lrref, divergence risk";
913         } else {
914             $checked{$lrref} = -1;
915             fproblem 'diverged', "you have diverged from $lrref";
916         }
917     };
918
919     my $merge = cfg "branch.$branch.merge",1;
920     if (defined $merge && $merge =~ m{^refs/heads/}) {
921         my $rhs = $';
922         my $check_remote = sub {
923             my ($remote, $desc) = (@_);
924             return unless defined $remote;
925             $check->("refs/remotes/$remote/$rhs", $desc);
926         };
927         $check_remote->((cfg "branch.$branch.remote",1),
928                         'remote fetch/merge branch');
929         $check_remote->((cfg "branch.$branch.pushRemote",1) //
930                         (cfg "branch.$branch.pushDefault",1),
931                         'remote push branch');
932     }
933     if ($branch =~ m{^dgit/}) {
934         $check->("remotes/dgit/$branch", 'remote dgit branch');
935     } elsif ($branch =~ m{^master$}) {
936         $check->("remotes/dgit/dgit/sid", 'remote dgit branch for sid');
937     }
938
939     fproblems_maybe_bail();
940     runcmd @git, qw(update-ref -m), "record current head for preservation",
941         $ffq_prev, $currentval, $git_null_obj;
942     print "Recorded current head for preservation\n" or die $!;
943     return ('written', undef);
944 }
945
946 sub cmd_new_upstream_v0 () {
947     # automatically and unconditionally launders before rebasing
948     # if rebase --abort is used, laundering has still been done
949
950     my %pieces;
951
952     badusage "need NEW-VERSION UPS-COMMITTISH" unless @ARGV >= 2;
953
954     # parse args - low commitment
955     my $new_version = (new Dpkg::Version scalar(shift @ARGV), check => 1);
956     my $new_upstream_version = $new_version->version();
957
958     my $new_upstream = git_rev_parse shift @ARGV;
959
960     my $piece = sub {
961         my ($n, @x) = @_; # may be ''
962         my $pc = $pieces{$n} //= {
963             Name => $n,
964             Desc => ($n ? "upstream piece \`$n'" : "upstream (main piece"),
965         };
966         while (my $k = shift @x) { $pc->{$k} = shift @x; }
967         $pc;
968     };
969
970     my @newpieces;
971     my $newpiece = sub {
972         my ($n, @x) = @_; # may be ''
973         my $pc = $piece->($n, @x, NewIx => (scalar @newpieces));
974         push @newpieces, $pc;
975     };
976
977     $newpiece->('',
978         OldIx => 0,
979         New => $new_upstream,
980     );
981     while (@ARGV && $ARGV[0] !~ m{^-}) {
982         my $n = shift @ARGV;
983
984         badusage "for each EXTRA-UPS-NAME need EXTRA-UPS-COMMITISH"
985             unless @ARGV && $ARGV[0] !~ m{^-};
986
987         my $c = git_rev_parse shift @ARGV;
988         die unless $n =~ m/^$extra_orig_namepart_re$/;
989         $newpiece->($n, New => $c);
990     }
991
992     # now we need to investigate the branch this generates the
993     # laundered version but we don't switch to it yet
994     my $old_head = get_head();
995     my ($old_laundered_tip,$old_bw,$old_upstream_update) = walk $old_head;
996
997     my $old_bw_cl = classify $old_bw;
998     my $old_upstream_update_cl = classify $old_upstream_update;
999     confess unless $old_upstream_update_cl->{OrigParents};
1000     my $old_upstream = parsecommit
1001         $old_upstream_update_cl->{OrigParents}[0]{CommitId};
1002
1003     $piece->('', Old => $old_upstream->{CommitId});
1004
1005     if ($old_upstream->{Msg} =~ m{^\[git-debrebase }m) {
1006         if ($old_upstream->{Msg} =~
1007  m{^\[git-debrebase upstream-combine \.((?: $extra_orig_namepart_re)+)\:.*\]$}m
1008            ) {
1009             my @oldpieces = ('', split / /, $1);
1010             my $parentix = -1 + scalar @{ $old_upstream->{Parents} };
1011             foreach my $i (0..$#oldpieces) {
1012                 my $n = $oldpieces[$i];
1013                 $piece->($n, Old => $old_upstream->{CommitId}.'^'.$parentix);
1014             }
1015         } else {
1016             fproblem 'upstream-confusing',
1017                 "previous upstream $old_upstream->{CommitId} is from".
1018                " git-debrebase but not an \`upstream-combine' commit";
1019         }
1020     }
1021
1022     foreach my $pc (values %pieces) {
1023         if (!$pc->{Old}) {
1024             fproblem 'upstream-new-piece',
1025                 "introducing upstream piece \`$pc->{Name}'";
1026         } elsif (!$pc->{New}) {
1027             fproblem 'upstream-rm-piece',
1028                 "dropping upstream piece \`$pc->{Name}'";
1029         } elsif (!is_fast_fwd $pc->{Old}, $pc->{New}) {
1030             fproblem 'upstream-not-ff',
1031                 "not fast forward: $pc->{Name} $pc->{Old}..$pc->{New}";
1032         }
1033     }
1034
1035     printdebug "%pieces = ", (dd \%pieces), "\n";
1036     printdebug "\@newpieces = ", (dd \@newpieces), "\n";
1037
1038     fproblems_maybe_bail();
1039
1040     my $new_bw;
1041
1042     fresh_workarea();
1043     in_workarea sub {
1044         my @upstream_merge_parents;
1045
1046         if (!any_fproblems()) {
1047             push @upstream_merge_parents, $old_upstream->{CommitId};
1048         }
1049
1050         foreach my $pc (@newpieces) { # always has '' first
1051             if ($pc->{Name}) {
1052                 read_tree_subdir $pc->{Name}, $pc->{New};
1053             } else {
1054                 runcmd @git, qw(read-tree), $pc->{New};
1055             }
1056             push @upstream_merge_parents, $pc->{New};
1057         }
1058
1059         # index now contains the new upstream
1060
1061         if (@newpieces > 1) {
1062             # need to make the upstream subtree merge commit
1063             $new_upstream = make_commit \@upstream_merge_parents,
1064                 [ "Combine upstreams for $new_upstream_version",
1065  ("[git-debrebase upstream-combine . ".
1066  (join " ", map { $_->{Name} } @newpieces[1..$#newpieces]).
1067  ": new upstream]"),
1068                 ];
1069         }
1070
1071         # $new_upstream is either the single upstream commit, or the
1072         # combined commit we just made.  Either way it will be the
1073         # "upstream" parent of the breakwater special merge.
1074
1075         read_tree_subdir 'debian', "$old_bw:debian";
1076
1077         # index now contains the breakwater merge contents
1078         $new_bw = make_commit [ $old_bw, $new_upstream ],
1079             [ "Update to upstream $new_upstream_version",
1080  "[git-debrebase breakwater: new upstream $new_upstream_version, merge]",
1081             ];
1082
1083         # Now we have to add a changelog stanza so the Debian version
1084         # is right.
1085         die if unlink "debian";
1086         die $! unless $!==ENOENT or $!==ENOTEMPTY;
1087         unlink "debian/changelog" or $!==ENOENT or die $!;
1088         mkdir "debian" or die $!;
1089         open CN, ">", "debian/changelog" or die $!;
1090         my $oldclog = git_cat_file ":debian/changelog";
1091         $oldclog =~ m/^($package_re) \(\S+\) / or
1092             fail "cannot parse old changelog to get package name";
1093         my $p = $1;
1094         print CN <<END, $oldclog or die $!;
1095 $p ($new_version) UNRELEASED; urgency=medium
1096
1097   * Update to new upstream version $new_upstream_version.
1098
1099  -- 
1100
1101 END
1102         close CN or die $!;
1103         runcmd @git, qw(update-index --add --replace), 'debian/changelog';
1104
1105         # Now we have the final new breakwater branch in the index
1106         $new_bw = make_commit [ $new_bw ],
1107             [ "Update changelog for new upstream $new_upstream_version",
1108               "[git-debrebase: new upstream $new_upstream_version, changelog]",
1109             ];
1110     };
1111
1112     # we have constructed the new breakwater. we now need to commit to
1113     # the laundering output, because git-rebase can't easily be made
1114     # to make a replay list which is based on some other branch
1115
1116     update_head_postlaunder $old_head, $old_laundered_tip,
1117         'launder for new upstream';
1118
1119     my @cmd = (@git, qw(rebase --onto), $new_bw, $old_bw, @ARGV);
1120     runcmd @cmd;
1121     # now it's for the user to sort out
1122 }
1123
1124 sub cmd_record_ffq_prev () {
1125     badusage "no arguments allowed" if @ARGV;
1126     my ($status, $msg) = record_ffq_prev();
1127     if ($status eq 'exists' && $opt_noop_ok) {
1128         print "Previous head already recorded\n" or die $!;
1129     } elsif ($status eq 'written') {
1130     } else {
1131         fail "Could not preserve: $msg";
1132     }
1133 }
1134
1135 sub cmd_stitch () {
1136     my $prose = '';
1137     GetOptions('prose=s', \$prose) or die badusage("bad options to stitch");
1138     badusage "no arguments allowed" if @ARGV;
1139     my ($status, $message, $current, $ffq_prev) = ffq_prev_branchinfo();
1140     if ($status ne 'branch') {
1141         fproblem $status, "could not check ffq-prev: $message";
1142         fproblems_maybe_bail();
1143     }
1144     my $prev = $ffq_prev && git_get_ref $ffq_prev;
1145     if (!$prev) {
1146         fail "No ffq-prev to stitch." unless $opt_noop_ok;
1147     }
1148     fresh_workarea();
1149     my $old_head = get_head();
1150     my $new_head = make_commit [ $old_head, $ffq_prev ], [
1151         'Declare fast forward / record previous work',
1152         "[git-debrebase pseudomerge: stitch$prose]",
1153     ];
1154     my @upd_cmd = (@git, qw(update-ref --stdin));
1155     debugcmd '>|', @upd_cmd;
1156     open U, "|-", @upd_cmd or die $!;
1157     my $u = <<END;
1158 update HEAD $new_head $old_head
1159 delete $ffq_prev $prev
1160 END
1161     printdebug ">= ", $_, "\n" foreach split /\n/, $u;
1162     print U $u;
1163     printdebug ">\$\n";
1164     close U or failedcmd @upd_cmd;
1165 }
1166
1167 sub cmd_gbp2debrebase () {
1168     badusage "needs 1 optional argument, the upstream" unless @ARGV<=1;
1169     my ($upstream_spec) = @ARGV;
1170     $upstream_spec //= 'refs/heads/upstream';
1171     my $upstream = git_rev_parse $upstream_spec;
1172     my $old_head = get_head();
1173
1174     my $upsdiff = get_differs $upstream, $old_head;
1175     if ($upsdiff & D_UPS) {
1176         runcmd @git, qw(--no-pager diff),
1177             $upstream, $old_head,
1178             qw( -- :!/debian :/);
1179  fail "upstream ($upstream_spec) and HEAD are not identical in upstream files";
1180     }
1181
1182     if (!is_fast_fwd $upstream, $old_head) {
1183         fproblem 'upstream-not-ancestor',
1184             "upstream ($upstream) is not an ancestor of HEAD";
1185     } else {
1186         my $wrong = cmdoutput
1187             (@git, qw(rev-list --ancestry-path), "$upstream..HEAD",
1188              qw(-- :/ :!/debian));
1189         if (length $wrong) {
1190             fproblem 'unexpected-upstream-changes',
1191                 "history between upstream ($upstream) and HEAD contains direct changes to upstream files - are you sure this is a gbp (patches-unapplied) branch?";
1192             print STDERR "list expected changes with:  git log --stat --ancestry-path $upstream_spec..HEAD -- :/ ':!/debian'\n";
1193         }
1194     }
1195
1196     if ((git_cat_file "$upstream:debian")[0] ne 'missing') {
1197         fproblem 'upstream-has-debian',
1198             "upstream ($upstream) contains debian/ directory";
1199     }
1200
1201     fproblems_maybe_bail();
1202
1203     my $work;
1204
1205     fresh_workarea();
1206     in_workarea sub {
1207         runcmd @git, qw(checkout -q -b gdr-internal), $old_head;
1208         # make a branch out of the patch queue - we'll want this in a mo
1209         runcmd qw(gbp pq import);
1210         # strip the patches out
1211         runcmd @git, qw(checkout -q gdr-internal~0);
1212         rm_subdir_cached 'debian/patches';
1213         $work = make_commit ['HEAD'], [
1214  'git-debrebase import: drop patch queue',
1215  'Delete debian/patches, as part of converting to git-debrebase format.',
1216  '[git-debrebase: gbp2debrebase, drop patches]'
1217                               ];
1218         # make the breakwater pseudomerge
1219         # the tree is already exactly right
1220         $work = make_commit [$work, $upstream], [
1221  'git-debrebase import: declare upstream',
1222  'First breakwater merge.',
1223  '[git-debrebase breakwater: declare upstream]'
1224                               ];
1225
1226         # rebase the patch queue onto the new breakwater
1227         runcmd @git, qw(reset --quiet --hard patch-queue/gdr-internal);
1228         runcmd @git, qw(rebase --quiet --onto), $work, qw(gdr-internal);
1229         $work = git_rev_parse 'HEAD';
1230     };
1231
1232     update_head_checkout $old_head, $work, 'gbp2debrebase';
1233 }
1234
1235 sub cmd_downstream_rebase_launder_v0 () {
1236     badusage "needs 1 argument, the baseline" unless @ARGV==1;
1237     my ($base) = @ARGV;
1238     $base = git_rev_parse $base;
1239     my $old_head = get_head();
1240     my $current = $old_head;
1241     my $topmost_keep;
1242     for (;;) {
1243         if ($current eq $base) {
1244             $topmost_keep //= $current;
1245             print " $current BASE stop\n";
1246             last;
1247         }
1248         my $cl = classify $current;
1249         print " $current $cl->{Type}";
1250         my $keep = 0;
1251         my $p0 = $cl->{Parents}[0]{CommitId};
1252         my $next;
1253         if ($cl->{Type} eq 'Pseudomerge') {
1254             print " ^".($cl->{Contributor}{Ix}+1);
1255             $next = $cl->{Contributor}{CommitId};
1256         } elsif ($cl->{Type} eq 'AddPatches' or
1257                  $cl->{Type} eq 'Changelog') {
1258             print " strip";
1259             $next = $p0;
1260         } else {
1261             print " keep";
1262             $next = $p0;
1263             $keep = 1;
1264         }
1265         print "\n";
1266         if ($keep) {
1267             $topmost_keep //= $current;
1268         } else {
1269             die "to-be stripped changes not on top of the branch\n"
1270                 if $topmost_keep;
1271         }
1272         $current = $next;
1273     }
1274     if ($topmost_keep eq $old_head) {
1275         print "unchanged\n";
1276     } else {
1277         print "updating to $topmost_keep\n";
1278         update_head_checkout
1279             $old_head, $topmost_keep,
1280             'downstream-rebase-launder-v0';
1281     }
1282 }
1283
1284 GetOptions("D+" => \$debuglevel,
1285            'noop-ok', => \$opt_noop_ok,
1286            'f=s' => \@fproblem_force_opts,
1287            'force!') or die badusage "bad options\n";
1288 initdebug('git-debrebase ');
1289 enabledebug if $debuglevel;
1290
1291 my $toplevel = cmdoutput @git, qw(rev-parse --show-toplevel);
1292 chdir $toplevel or die "chdir $toplevel: $!";
1293
1294 $rd = fresh_playground "$playprefix/misc";
1295
1296 if (!@ARGV || $ARGV[0] =~ m{^-}) {
1297     defaultcmd_rebase();
1298 } else {
1299     my $cmd = shift @ARGV;
1300     my $cmdfn = $cmd;
1301     $cmdfn =~ y/-/_/;
1302     $cmdfn = ${*::}{"cmd_$cmdfn"};
1303
1304     $cmdfn or badusage "unknown git-debrebase sub-operation $cmd";
1305     $cmdfn->();
1306 }