chiark / gitweb /
git-debrebase(5): Document commit message annotations
[dgit.git] / git-debrebase.5.pod
1 =head1 NAME
2
3 git-debrebase - git data model for Debian packaging
4
5 =head1 INTRODUCTION
6
7 git-debrebase is a tool for representing in git,
8 and manpulating,
9 Debian packages based on upstream source code.
10
11 The Debian packaging
12 has a fast forwarding history.
13 The delta queue (changes to upstream files) is represented
14 as a series of individual git commits,
15 which can worked on with rebase,
16 and also shared.
17
18 git-debrebase is designed to work well with dgit.
19 git-debrebase can also be used in workflows without source packages,
20 for example to work on Debian-format packages outside or alongside Debian.
21
22 git-debrebase is not very suitable for use by Debian derivatives,
23 to work on packages inherited from Debian,
24 because it assumes that you want to throw away any packaging
25 provided by your upstream.
26
27 =head1 DIAGRAM
28
29            ------/--A!----/--B3!--%--/--> interchange view
30                 /        /          /      with debian/ directory
31                %        %          %       entire delta queue applied
32               /        /          /        3.0 (quilt) has debian/patches
33              /        /          3*
34             /        /          /
35            2*       2*         2
36           /        /          /
37          1        1          1    breakwater branch, merging baseline
38         /        /          /     unmodified upstream code
39     ---@-----@--A----@--B--C      plus debian/ (but no debian/patches)
40       /     /       /                     no ref refers to this: we
41    --#-----#-------#-----> upstream        reconstruct its identity by
42                                            inspecting interchange branch
43     Key:
44
45       1,2,3   commits touching upstream files only
46       A,B,C   commits touching debian/ only
47       B3      mixed commit (eg made by an NMUer)
48       #       upstream releases
49
50      -@-      anchor merge, takes contents of debian/ from the
51      /         previous `breakwater' commit and rest from upstream
52
53      -/-      pseudomerge; contents are identical to
54      /         parent lower on diagram.
55
56       %       dgit-generated commit of debian/patches.
57               `3.0 (quilt)' only; generally dropped by git-debrebase.
58
59       *       Maintainer's HEAD was here while they were editing,
60               before they said they were done, at which point their
61               tools made -/- (and maybe %) to convert to
62               the fast-forwarding interchange branch.
63
64       !       NMUer's HEAD was here when they said `dgit push'.
65               Rebase branch launderer turns each ! into an
66               equivalent *.
67
68 =head1 BRANCHES AND BRANCH STATES
69
70 git-debrebase has one primary branch,
71 the B<interchange branch>.
72 This branch is found on Debian contributor's workstations
73 (typically, a maintainer would call it B<master>),
74 in the Debian dgit git server as the suite branch (B<dgit/dgit/sid>)
75 and on other git servers which support Debian work
76 (eg B<master> on salsa).
77
78 The interchange branch is fast-forwarding
79 (by virtue of pseudomerges, where necessary).
80
81 It is possible to have multiple different interchange branches
82 for the same package,
83 stored as different local and remote git branches.
84 However, divergence should be avoided where possible -
85 see L</OTHER MERGES>.
86
87 A suitable interchange branch can be used directly with dgit.
88 In this case each dgit archive suite branch is a separate
89 interchange branch.
90
91 Within the ancestry of the interchange branch,
92 there is another important, implicit branch, the
93 B<breakwater>.
94 The breakwater contains unmodified upstream source,
95 but with Debian's packaging superimposed
96 (replacing any C<debian/> directory that may be in upstream).
97 The breakwater does not contain any representation of
98 the delta queue.
99 The part of the breakwater processed by git-debrebase
100 is the part since the most reecent B<anchor>,
101 which is usually a special merge generated by git-debrebase.
102
103 When working, locally,
104 the user's branch can be in a rebasing state,
105 known as B<unstitched>.
106 While a branch is unstitched,
107 its previous tip is recorded,
108 so that the previous history
109 and the user's work
110 can later be
111 stitched into the fast-forwarding interchange form.
112
113 An unstitched branch may be in
114 B<laundered>
115 state,
116 which means it has a more particular special form
117 convenient for manipulating the delta queue.
118
119 =head1 BRANCH CONTENTS
120
121 It is most convenient to describe the
122 B<laundered>
123 state first.
124 It contains B<in this order> (ancestors first):
125
126 =over
127
128 =item Anchor
129
130 An B<anchor> commit,
131 which is usually a special two-parent merge:
132 The first parent is
133 a previous branch tip with Debian packaging tip
134 (perhaps a previous breakwater tip)
135 whose upstream files are irrelevant,
136 and whose packaging files are identical to the anchor's.
137 The second parent is an upstream source commit,
138 whose packaging files (if any) are irrelevant,
139 and whose upstream files are identical to the anchor's.
140 Anchor merges always contain
141 C<[git-debrebase anchor: ...]>
142 as a line in the commit message.
143 Alternatively,
144 an anchor may be a single-parent commit which introduces
145 the C<debian/> directory and makes no other changes:
146 ie, the start of Debian packaging.
147
148 =item Packaging
149
150 Zero or more single-parent commits
151 containing only packaging changes.
152 (And no quilt patch changes.)
153
154 =item Delta queue commits
155
156 Zero or more single-parent commits
157 contaioning only changes to upstream files.
158
159 =back
160
161 The
162 B<unstitched>
163 (unlaundered)
164 branch state is the same,
165 except that it may contain,
166 additionally,
167 in B<in any order>:
168
169 =over
170
171 =item Linear commits to the source
172
173 Further commit(s) containing changes to
174 to upstream files
175 and/or
176 to packaging,
177 possibly mixed within a single commit.
178 (But not quilt patch changes.)
179
180 =item Quilt patch addition for `3.0 (quilt)'
181
182 Commit(s) which add patches to B<debian/patches/>,
183 and add those patches to the end of B<series>.
184 These are only necessary when working with
185 packages in C<.dsc 3.0 (quilt)> format.
186 For git-debrebase they are purely an output;
187 they are deleted when branches are laundered.
188
189 =back
190
191 The
192 B<interchange>
193 branch state is the same, but may additionally contain
194 (in some order,
195 possibly intermixed with the extra commits
196 which may be found on an unstitched unlaundered branch):
197
198 =over
199
200 =item Pseudomerge to make fast forward
201
202 A pseudomerge making the branch fast forward from
203 previous history.
204 The contributing parent is itself in interchange format.
205 Normally the overwritten parent is
206 a previous tip of the interchange branch,
207 but this is not necessary as the overwritten
208 parent is not examined.
209
210 If the two parents have identical trees,
211 the contributing parent is taken to be
212 the one with the later commit date,
213 or if the commit dates are the same,
214 the left parent.
215
216 =item dgit dsc import
217
218 Debian .dsc source package import(s) made by dgit.
219 Each such import must be a two-parent pseudomerge
220 whose contributing parent is in the special
221 dgit format (not described further here).
222 The overwritten parent must be
223 the previous interchange tip.
224 This is the form normally generated by dgit
225 when it imports .dsc-based uploads.
226
227 =back
228
229 =head1 STITCHING, PSEUDO-MERGES, FFQ RECORD
230
231 Whenever the branch C<refs/B> is unstitched,
232 the previous tip is recorded in the git ref C<refs/ffq-prev/heads/B>.
233
234 Unstiched branches are not fast forward from the published
235 interchange branches. [1]
236 So before a branch can be pushed,
237 the right pseudomerge must be reestablished.
238 This is the stitch operation,
239 which consumes the ffq-prev ref.
240
241 When the user has an unstituched branch,
242 they may rewrite it freely,
243 from the breakwater tip onwards.
244 Such a git rebase is the default operation for git-debrebase.
245 Rebases should not go back before the breakwater tip,
246 and certainly not before the most recent anchor.
247
248 Unstitched branches must not be pushed to interchange branch refs
249 (by the use of C<git push -f> or equivalent).
250 It is OK to share an unstitched branch
251 in similar circumstances and with similar warnings
252 to sharing any other rebasing git branch.
253
254 [1] Strictly, for a package
255 which has never had a Debian delta queue,
256 the interchange and breakwater branches may be identical,
257 in which case the unstitched branch is fast forward
258 from the interchange branch and no pseudomerge is needed.
259
260 =head1 OTHER MERGES
261
262 Note that the representation described here does not permit
263 general merges on any of the relevant branches.
264 For this reason the tools will try to help the user
265 avoid divergence of the interchange branch.
266
267 Automatic resolution of divergent interchange branches
268 (or laundering of merges on the interchange branch)
269 is thought to be possible,
270 but there is no tooling for this yet:
271
272 Nonlinear (merging) history in the interchange branch is awkward
273 because it (obviously) does not preserve
274 the linearity of the delta queue.
275 Easy merging of divergent delta queues is a research problem.
276
277 Nonlinear (merging) history in the breakwater branch is
278 in principle tolerable,
279 but each of the parents would have to be, in turn,
280 a breakwater,
281 and difficult qeustions arise if they don't have the same anchor.
282
283 We use the commit message annotation to
284 distinguish the special anchor merges from other general merges,
285 so we can at least detect unsupported merges.
286
287 =head1 LEGAL OPERATIONS
288
289 The following basic operations follows from this model
290 (refer to the diagram above):
291
292 =over
293
294 =item Append linear commits
295
296 No matter the branch state,
297 it is always fine to simply git commit
298 (or cherry-pick etc.)
299 commits containing upstream file changes, packaging changes,
300 or both.
301
302 =item Launder branch
303
304 Record the previous tip in ffq-prev,
305 if we were stitched before.
306
307 Reorganise the current branch so that the packaging
308 changes come first,
309 followed by the delta queue,
310 turning C<-@-A-1-2-B3> into C<...@-A-B-1-2-3>.
311
312 Drop pseudomerges and any quilt patches.
313
314 =item Interactive rebase
315
316 With a laundered branch,
317 one can do an interactive git rebase of the delta queue.
318
319 =item New upstream rebase
320
321 Start rebasing onto a new upstream version,
322 turning C<...#..@-A-B-1-2-3> into C<(...#..@-A-B-|...#'-)@'-1-2>.
323
324 This has to be a wrapper around git-rebase,
325 which prepares @' and then tries to rebase 1 2 onto @'.
326 If the user asks for an interactive rebase,
327 @' doesn't appear in the commit list.
328
329 Note that the construction of @' cannot fail
330 because @' simply copies debian/ from B and and everything else from #'.
331 (Rebasing A and B is undesirable.
332 We want the debian/ files to be non-rebasing
333 so that git log shows the packaging history.)
334
335 =item Stitch 
336
337 Make a pseudomerge,
338 whose contributing parent to is the unstitched branch
339 and
340 whose overwritten parent is ffq-prev,
341 consuming ffq-prev in the process.
342 Ideally the contributing parent would be a laundered branch,
343 or perhaps a laundered branch with a quilt patch addition commit.
344
345 =item Commit quilt patches
346
347 To generate a tree which can be represented as a
348 3.0 (quilt) .dsc source packages,
349 the delta queue must be reified inside the git tree
350 in B<debian/patches/>.
351 (These can be stripped out and/or regenerated as needed.)
352
353 =back
354
355 =head1 COMMIT MESSAGE ANNOTATIONS
356
357 git-debrebase makes annotations
358 in the messages of commits it generates.
359
360 The general form is
361
362   [git-debrebase[ COMMIT-TYPE [ ARGS...]]: PROSE, MORE PROSE]
363
364 git-debrebase does not pay attention to anything after the colon,
365 so PROSE is ignored.
366
367 The full set of annotations is:
368   [git-debrebase: split mixed commit, debian part]
369   [git-debrebase: split mixed commit, upstream-part]
370   [git-debrebase: convert dgit import, debian changes]
371   [git-debrebase anchor: convert dgit import, upstream changes]
372
373   [git-debrebase upstream-combine . PIECE[ PIECE...]: new upstream]
374   [git-debrebase anchor: new upstream NEW-UPSTREAM-VERSION, merge]
375   [git-debrebase: new upstream NEW-UPSTREAM-VERSION, changelog]
376
377   [git-debrebase convert-from-gbp: drop patches]
378   [git-debrebase anchor: declare upstream]
379   [git-debrebase pseudomerge: stitch]
380
381   [git-debrebase convert-to-gbp: commit patches]
382
383 Only anchor merges have the C<[git-debrebase anchor: ...]> tag.
384 Single-parent anchors are not generated by git-debrebase,
385 and when made manually should not be tagged.
386
387 The C<split mixed commit> and C<convert dgit import>
388 tags are added to the pre-existing commit message,
389 when git-debrebase rewrites the commit.
390
391 =head1 TERMINOLOGY
392
393 =over
394
395 =item Pseudomerge
396
397 A merge which does not actually merge the trees;
398 instead, it takes its tree, by construction, from only one parent.
399 These are used to make a rewritten history fast forward
400 from a previous tip,
401 so that it can be pushed and pulled normally.
402 Manual construction of pseudomerges can be done with
403 C<git merge -s ours>
404 but is not normally needed when using git-debrebase.
405
406 =item Packaging files
407
408 Files in the source tree within B<debian/>.
409 (Does not include anything which may exist in B<debian/patches/>.)
410
411 =item Upstream
412
413 The version of the package without Debian's packaging.
414 Typically provided by the actual upstream project,
415 and often tracked by Debian contributors in a branch C<upstream>.
416
417 =item Upstream files
418
419 Files in the source tree outside B<debian/>.
420 These may include unmodified source from upstream,
421 but also files which have been modified or created for Debian.
422
423 =item Delta queue
424
425 Debian's changes to upstream files:
426 a series of git commits.
427
428 =item Quilt patches
429
430 Files in B<debian/patches/> generated for the benefit of
431 dpkg-source's 3.0 (quilt) .dsc source package format.
432 Not used, and often deleted, by git-debrebase.
433
434 =back
435
436 =head1 APPENDIX - DGIT IMPORT HANDLING
437
438 Consider a non-dgit NMU followed by a dgit NMU:
439
440             interchange --/--B3!--%--/----D*-->
441                          /          /
442                         %          4
443                        /          3
444                       /          2
445                      /          1
446                     2*         &_
447                    /          /| \
448                   1          0 00 =XBC%
449                  /
450                 /
451           --@--A     breakwater
452            /
453         --#--------> upstream
454
455
456  Key:
457
458     =XBC%     dgit tarball import of .debian.tar.gz containing
459               Debian packaging including changes B C and quilt patches
460
461     0         dgit tarball import of upstream tarball
462     00        dgit tarball import of supplementary upstream tarball
463     &_        dgit nearly-breakwater import
464     &'        git-debrebase converted import (upstream files only)
465     D'        git-debrebase converted debian/ changes import
466
467     * **      before and after HEAD
468
469 We want to transform this into:
470
471 =over
472
473 =item I. No new upstream version
474
475  (0 + 00 eq #)
476                         --/--B3!--%--/------D*-------------/-->
477                          /          /                     /
478                         %          4                     4**
479                        /          3                     3
480                       /          2                     2
481                      /          1                     1
482                     2*         &_                    /
483                    /          /| \                  /
484                   1          0 00 =XBC%            /
485                  /                                /
486                 /                                /
487           --@--A-----B-----------------------C--D
488            /
489         --#----------------------------------------->
490
491 =item II. New upstream
492
493  (0 + 00 neq #)
494
495                         --/--B3!--%--/------D*-------------/-->
496                          /          /                     /
497                         %          4                     4**
498                        /          3                     3
499                       /          2                     2
500                      /          1                     1
501                     2*         &_                    /
502                    /          /| \                  /
503                   1          0 00 =XBC%            /
504                  /                                /
505                 /                                /
506           --@--A-----B--------------------@--C--D
507            /                             /
508         --#----------------------- - -  /  - - ----->
509                                        /
510                                       &'
511                                      /|
512                                     0 00
513
514 =back
515
516 =head1 SEE ALSO
517
518 git-debrebase(1),
519 dgit-maint-rebase(7),
520 dgit(1)