chiark / gitweb /
git-debrebase: Provide and test "conclude"
[dgit.git] / git-debrebase.1.pod
1 =head1 NAME
2
3 git-debrebase - delta queue rebase tool for Debian packaging
4
5 =head1 SYNOPSYS
6
7  git-debrebase [<options...>] [-- <git-rebase options...>]
8  git-debrebase [<options...>] <operation> [<operation options...>
9
10 =head1 INTRODUCTION
11
12 git-debrebase is a tool for representing in git,
13 and manpulating,
14 Debian packages based on upstream source code.
15
16 This is the command line reference.
17 Please read the tutorial
18 L<dgit-maint-debrebase(5)>.
19 For background, theory of operation,
20 and definitions see L<git-debrebase(5)>.
21
22 You should read this manpage in conjunction with
23 L<git-debrebase(5)/TERMINOLOGY>,
24 which defines many important terms used here.
25
26 =head1 PRINCIPAL OPERATIONS
27
28 =over
29
30 =item git-debrebase [-- <git-rebase options...>]
31
32 =item git-debrebase [-i <further git-rebase options...>]
33
34 Unstitches and launders the branch.
35 (See L</UNSTITCHING AND LAUNDERING> below.)
36
37 Then, if any git-rebase options were supplied,
38 edits the Debian delta queue,
39 using git-rebase, by running
40
41     git rebase <git-rebase options> <breakwater-tip>
42
43 Do not pass a base branch argument:
44 git-debrebase will supply that.
45 Do not use --onto, or --fork-point.
46 Useful git-rebase options include -i and --autosquash.
47
48 If git-rebase stops for any reason,
49 you may git-rebase --abort, --continue, or --skip, as usual.
50 If you abort the git-rebase,
51 the branch will still have been laundered,
52 but everything in the rebase will be undone.
53
54 The options for git-rebase must either start with C<-i>,
55 or be prececded by C<-->,
56 to distinguish them from options for git-debrebase.
57
58 =item git-debrebase conclude
59
60 Finishes a git-debrebase session,
61 tidying up the branch and making it fast forward again.
62
63 Specifically: if the branch is unstitched,
64 launders and restitches it,
65 making a new pseudomerge.
66 Otherwise, it is an error,
67 unless --noop-ok.
68
69 =item git-debrebase quick
70
71 Unconditionally launders and restitches the branch,
72 consuming any ffq-prev
73 and making a new pseudomerge.
74
75 If the branch is already laundered and stitched, does nothing.
76
77 =item git-debrebase stitch [--prose=<for commit message>]
78
79 Stitches the branch,
80 consuming ffq-prev.
81
82 If there is no ffq-prev, it is an error, unless --noop-ok.
83
84 It is a snag (see B<-f>) if the branch is not laundered.
85
86 =item git-debrebase new-upstream-v0 <new-version> [<upstream-details>...]
87
88 Rebases the delta queue
89 onto a new upstream version.  In detail:
90
91 Firstly, checks that the proposed rebase seems to make sense:
92 It is a snag unless the new upstream(s)
93 are fast forward from the previous upstream(s)
94 as found in the current breakwater anchor.
95 And, in the case of a multi-piece upstream
96 (a multi-component upstream, in dpkg-source terminology),
97 if the pieces are not in the same order, with the same names.
98
99 If all seems well, unstitches and launders the branch.
100
101 Then,
102 generates
103 (in a private working area)
104 a new anchor merge commit,
105 on top of the breakwater tip,
106 and on top of that a commit to
107 update the version number in debian/changelog.
108
109 Finally,
110 starts a git-rebase
111 of the delta queue onto these new commits.
112
113 That git-rebase may complete successfully,
114 or it may require your assistance,
115 just like a normal git-rebase.
116
117 If you git-rebase --abort,
118 the whole new upstream operation is aborted,
119 except for the laundering.
120
121 The <upstream-details> are, optionally, in order:
122
123 =over
124
125 =item <upstream-commit-ish>
126
127 The new upstream branch (or commit-ish).
128 Default is C<upstream>.
129
130 It is a snag if the upstream contains a debian/ directory;
131 if forced to proceed,
132 git-debrebase will disregard the upstream's debian/ and
133 take (only) the packaging from the current breakwater.
134
135 =item <piece-name> <piece-upstream-commit-ish>
136
137 Specifies that this is a multi-piece upstream.
138 May be repeated.
139
140 When such a pair is specified,
141 git-debrebase will first combine the pieces of the upstream
142 together,
143 and then use the result as the combined new upstream.
144
145 For each <piece-name>,
146 the tree of the <piece-upstream-commit-ish>
147 becomes the subdirectory <piece-name>
148 in the combined new upstream
149 (supplanting any subdirectory that might be there in
150 the main upstream branch).
151
152 <piece-name> has a restricted syntax:
153 it may contain only ASCII alphanumerics and hyphens.
154
155 The combined upstream is itself recorded as a commit,
156 with each of the upstream pieces' commits as parents.
157 The combined commit contains an annotation
158 to allow a future git-debrebase new upstream operation
159 to make the coherency checks described above.
160
161 =item <git-rebase options>
162
163 These will be passed to git rebase.
164
165 If the upstream rebase is troublesome, -i may be helpful.
166 As with plain git-debrebase,
167 do not specify a base, or --onto, or --fork-point.
168
169 =back
170
171 If you are planning to generate a .dsc,
172 you will also need to have, or generate,
173 actual orig tarball(s),
174 which must be identical to the rev-spec(s)
175 passed to git-debrebase.
176 git-debrebase does not concern itself with source packages
177 so neither helps with this, nor checks it.
178 L<git-deborig(1)>,
179 L<git-archive(1)>, L<dgit(1)> and
180 L<gbp-import-orig(1)> may be able to help.
181
182 This subcommand has -v0 in its name because we are not yet sure
183 that its command line syntax is optimal.
184 We may want to introduce an incompatible replacement syntax
185 under the name C<new-upstream>.
186
187 =item git-debrebase convert-from-gbp [<upstream-commit-ish>]
188
189 Cnnverts a gbp patches-unapplied branch
190 (not a gbp pq patch queue branch)
191 into a git-debrebase interchange branch.
192
193 This is done by generating a new anchor merge,
194 converting the quilt patches as a delta queue,
195 and dropping the patches from the tree.
196
197 The upstream commit-ish should correspond to
198 the gbp upstream branch, if there is one.
199 It is a snag if it is not an ancestor of HEAD,
200 or if the history between the upstream and HEAD
201 contains commits which make changes to upstream files.
202
203 It is also a snag if the specified upstream
204 has a debian/ subdirectory.
205 This check exists to detect certain likely user errors,
206 but if this situation is true and expected,
207 forcing it is fine.
208
209 The result is a well-formed git-debrebase interchange branch.
210 The result is also fast-forward from the gbp branch.
211
212 Note that it is dangerous not to know whether you are
213 dealing with a gbp patches-unappled branch containing quilt patches,
214 or a git-debrebase interchange branch.
215 At worst,
216 using the wrong tool for the branch format might result in
217 a dropped patch queue!
218
219 =back
220
221 =head1 UNDERLYING AND SUPPLEMENTARY OPERATIONS
222
223 =over
224
225 =item git-debrebase breakwater
226
227 Prints the breakwater tip commitid.
228 If your HEAD branch is not fully laundered,
229 prints the tip of the so-far-laundered breakwater.
230
231 =item git-debrebase anchor
232
233 Prints the breakwater anchor commitid.
234
235 =item git-debrebase analyse
236
237 Walks the history of the current branch,
238 most recent commit first,
239 back until the most recent anchor,
240 printing the commit object id,
241 and commit type and info
242 (ie the semantics in the git-debrebase model)
243 for each commit.
244
245 =item git-debrebase record-ffq-prev
246
247 Establishes the current branch's ffq-prev,
248 as discussed in L</UNSTITCHING AND LAUNDERING>,
249 but does not launder the branch or move HEAD.
250
251 It is an error if the ffq-prev could not be recorded.
252 It is also an error if an ffq-prev has already been recorded,
253 unless --noop-ok.
254
255 =item git-debrebase launder-v0
256
257 Launders the branch without recording anything in ffq-prev.
258 Then prints some information about the current branch.
259 Do not use this operation;
260 it will be withdrawn soon.
261
262 =item git-debrebase convert-to-gbp
263
264 Converts a laundered branch into a
265 gbp patches-unapplied branch containing quilt patches.
266 The result is not fast forward from the interchange branch,
267 and any ffq-prev is deleted.
268
269 This is provided mostly for the test suite
270 and for unusual situations.
271 It should only be used with a care and 
272 with a proper understanding of the underlying theory.
273
274 Be sure to not accidentally treat the result as
275 a git-debrebase branch,
276 or you will drop all the patches!
277
278 =back
279
280 =head1 OPTIONS
281
282 This section documents the general options
283 to git-debrebase
284 (ie, the ones which immediately follow
285 git-debrebase
286 or
287 git debrebase
288 on the command line).
289 Individual operations may have their own options which are
290 docuented under each operation.
291
292 =over
293
294 =item -f<snag-id>
295
296 Turns snag(s) with id <snag-id> into warnings.
297
298 Some troublesome things which git-debrebase encounters
299 are B<snag>s.
300 (The specific instances are discussed
301 in the text for the relvant operation.)
302
303 When a snag is detected,
304 a message is printed to stderr containing the snag id
305 (in the form C<-f<snag-idE<gt>>),
306 along with some prose.
307
308 If snags are detected, git-debrebase does not continue,
309 unless the relevant -f<snag-id> is specified,
310 or --force is specified.
311
312 =item --force
313
314 Turns all snags into warnings.
315 See the -f<snag-id> option.
316
317 Do not invoke git-debrebase --force in scripts and aliases;
318 instead, specify the particular -f<snag-id> for expected snags.
319
320 =item --noop-ok
321
322 Suppresses the error in
323 some situations where git-debrebase does nothing,
324 because there is nothing to do.
325
326 The specific instances are discussed
327 in the text for the relvant operation.
328
329 =item --anchor=<commit-ish>
330
331 Treats <commit-ish> as an anchor.
332 This overrides the usual logic which automatically classifies
333 commits as anchors, pseudomerges, delta queue commits, etc.
334
335 It also disables some coherency checks
336 which depend on metadata extracted from its commit message,
337 so
338 it is a snag if <commit-ish> is the anchor
339 for the previous upstream version in
340 git-debrebase new-upstream operations.
341
342 =item -D
343
344 Requests (more) debugging.  May be repeated.
345
346 =back
347
348 =head1 UNSTITCHING AND LAUNDERING
349
350 Several operations unstitch and launder the branch first.
351 In detail this means:
352
353 =head2 Establish the current branch's ffq-prev
354
355 If ffq-prev is not yet recorded,
356 git-debrebase checks that the current branch is ahead of relevant
357 remote tracking branches.
358 The relevant branches depend on
359 the current branch (and its
360 git configuration)
361 and are as follows:
362
363 =over
364
365 =item
366
367 The branch that git would merge from
368 (remote.<branch>.merge, remote.<branch>.remote);
369
370 =item
371
372 The branch git would push to, if different
373 (remote.<branch>.pushRemote etc.);
374
375 =item
376
377 For local dgit suite branches,
378 the corresponding tracking remote;
379
380 =item
381
382 If you are on C<master>,
383 remotes/dgit/dgit/sid.
384
385 =back
386
387 The apparently relevant ref names to check are filtered through
388 branch.<branch>.ffq-ffrefs,
389 which is a semicolon-separated list of glob patterns,
390 each optionally preceded by !; first match wins.
391
392 In each case it is a snag if
393 the local HEAD is behind the checked remote,
394 or if local HEAD has diverged from it.
395 All the checks are done locally using the remote tracking refs:
396 git-debrebase does not fetch anything from anywhere.
397
398 If these checks pass,
399 or are forced,
400 git-debrebse then records the current tip as ffq-prev.
401
402 =head2 Examine the branch
403
404 git-debrebase
405 analyses the current HEAD's history to find the anchor
406 in its breakwater,
407 and the most recent breakwater tip.
408
409 =head2 Rewrite the commits into laundered form
410
411 Mixed debian+upstream commits are split into two commits each.
412 Delta queue (upstream files) commits bubble to the top.
413 Pseudomerges,
414 and quilt patch additions,
415 are dropped.
416
417 This rewrite will always succeed, by construction.
418 The result is the laundered branch.
419
420 =head1 SEE ALSO
421
422 git-debrebase(1),
423 dgit-maint-rebase(7),
424 dgit(1),
425 gitglossary(7)