chiark / gitweb /
047695b9228de711af5ee31b5f37e8f60fee040a
[dgit.git] / dgit.1
1 '\" t
2 .TH dgit 1 "" "Debian Project" "dgit"
3 .SH NAME
4 dgit \- git integration with the Debian archive
5 .
6 .SH SYNOPSIS
7 .B dgit
8 [\fIdgit\-opts\fP] \fBclone\fP [\fIdgit\-opts\fP]
9 \fIpackage\fP [\fIsuite\fP] [\fB./\fP\fIdir|\fB/\fP\fIdir\fR]
10 .br
11 .B dgit
12 [\fIdgit\-opts\fP] \fBfetch\fP|\fBpull\fP [\fIdgit\-opts\fP]
13 [\fIsuite\fP]
14 .br
15 .B dgit
16 [\fIdgit\-opts\fP] \fBbuild\fP|\fBsbuild\fP|\fBbuild-source\fP
17 [\fIbuild\-opts\fp]
18 .br
19 .B dgit
20 [\fIdgit\-opts\fP] \fBpush\fP|\fBpush-source\fP [\fIdgit\-opts\fP]
21 [\fIsuite\fP]
22 .br
23 .B dgit
24 [\fIdgit\-opts\fP] \fBrpush\fR \fIbuild-host\fR\fB:\fR\fIbuild-dir\fR
25 [\fIpush args...\fR]
26 .br
27 .B dgit
28 [\fIdgit\-opts\fP] \fIaction\fR ...
29 .SH DESCRIPTION
30 .B dgit
31 allows you to treat the Debian archive as if it were a git
32 repository.
33 Conversely,
34 it allows Debian to publish the source of its packages
35 as git branches, in a format which is directly useable
36 by ordinary people.
37
38 This is the command line reference.
39 Please read the tutorial(s):
40 .TS
41 lb l.
42 dgit-user(7)    for users: editing, building and sharing packages
43 dgit-nmu-simple(7)      for DDs: doing a straightforward NMU
44 dgit-maint-native(7)    for maintainers of Debian-native packages
45 dgit-maint-merge(7)     for maintainers who want a pure git workflow
46 dgit-maint-gbp(7)       for maintainers already using git-buildpackage
47 dgit-sponsorship(7)     for sponsors and sponsored contributors
48 .TE
49 .LP
50 See \fBdgit(7)\fP for detailed information about the data
51 model,
52 common problems likely to arise with certain kinds of package,
53 etc.
54 .SH OPERATIONS
55 .TP
56 \fBdgit clone\fR \fIpackage\fP [\fIsuite\fP] [\fB./\fP\fIdir|\fB/\fP\fIdir\fR]
57 Consults the archive and dgit-repos to construct the git view of
58 history for
59 .I package
60 in
61 .I suite
62 .RB ( sid
63 by default)
64 in a new directory (named
65 .BI ./ package
66 by default);
67 also, downloads any necessary orig tarballs.
68
69 The suite's git tip is
70 left on the local branch
71 .BI dgit/ suite
72 ready for work, and on the corresponding dgit remote tracking branch.
73 The
74 .B origin
75 remote will be set up to point to the package's dgit-repos tree
76 for the distro to which
77 .I suite
78 belongs.
79
80 .I suite
81 may be a combination of several underlying suites in the form
82 .IR mainsuite \fB,\fR subsuite ...;
83 see COMBINED SUITES in dgit(7).
84
85 For your convenience, the
86 .B vcs-git
87 remote will be set up from the package's Vcs-Git field, if there is
88 one - but note that in the general case the history found there may be
89 different to or even disjoint from dgit's view.
90 .TP
91 \fBdgit fetch\fR [\fIsuite\fP]
92 Consults the archive and git-repos to update the git view of
93 history for a specific suite (and downloads any necessary orig
94 tarballs), and updates the remote tracking branch
95 .BR remotes/dgit/dgit/ \fIsuite\fR.
96 If the current branch is
97 .BI dgit/ suite
98 then dgit fetch defaults to
99 .IR suite ;
100 otherwise it parses debian/changelog and uses the suite specified
101 there.
102 suite may be a combined suite, as for clone.
103 .TP
104 \fBdgit pull\fR [\fIsuite\fP]
105 Does dgit fetch, and then merges the new head of the remote tracking
106 branch
107 .BI remotes/dgit/dgit/ suite
108 into the current branch.
109 .TP
110 \fBdgit build\fR ...
111 Runs
112 .B dpkg-buildpackage
113 with some suitable options.  Options and arguments after build
114 will be passed on to dpkg-buildpackage.  It is not necessary to use
115 dgit build when using dgit; it is OK to use any approach which ensures
116 that the generated source package corresponds to the relevant git
117 commit.
118
119 Tagging, signing and actually uploading should be left to dgit push.
120 .TP
121 \fBdgit build-source\fR ...
122 Builds the source package, and a changes file for a prospective
123 source-only upload, using
124 .BR dpkg-source .
125 The output is left in
126 .IR package \fB_\fR version \fB.dsc\fR
127 and
128 .IR package \fB_\fR version \fB_source.changes\fR.
129
130 Tagging, signing and actually uploading should be left to dgit push.
131 .TP
132 .B dgit clean
133 Cleans the current working tree (according to the --clean= option in
134 force).
135 .TP
136 .B dgit help
137 Print a usage summary.
138 .TP
139 \fBdgit sbuild\fR ...
140 Constructs the source package, uses
141 .B  sbuild
142 to do a binary build, and uses mergechanges to merge the source and
143 binary changes files.  Options and arguments after sbuild will be
144 passed on to sbuild.
145 The output is left in
146 .IR package \fB_\fR version \fB_multi.changes\fR.
147 .IP
148 Note that by default
149 sbuild does not build arch-independent packages.
150 You probably want to pass -A, to request those.
151 .IP
152 Tagging, signing and actually uploading should be left to dgit push.
153 .TP
154 \fBdgit gbp-build\fR ...
155 Runs
156 .B git-buildpackage
157 with some suitable options.  Options and arguments after gbp-build
158 will be passed on to git-buildpackage.
159
160 By default this uses \-\-quilt=gbp, so HEAD should be a
161 git-buildpackage style branch, not a patches-applied branch.
162
163 Tagging, signing and actually uploading should be left to dgit push.
164 .TP
165 \fBdgit push\fR [\fIsuite\fP]
166 Does an `upload', pushing the current HEAD to the archive (as a source
167 package) and to dgit-repos (as git commits).  The package must already
168 have been built ready for upload, with the .dsc and .changes
169 left in the parent directory.  It is normally best to do the build
170 with dgit too (eg with dgit sbuild): some existing build tools pass
171 unhelpful options to dpkg-source et al by default, which can result in
172 the built source package not being identical to the git tree.
173
174 In more detail: dgit push checks that the current HEAD corresponds to
175 the .dsc.  It then pushes the HEAD to the suite's dgit-repos branch,
176 adjusts the .changes to include any .origs which the archive lacks
177 and exclude .origs which the archive has
178 (so -sa and -sd are not needed when building for dgit push),
179 makes a signed git tag, edits the .dsc to contain the dgit metadata
180 field, runs debsign to sign the upload (.dsc and .changes), pushes the
181 signed tag, and finally uses dput to upload the .changes to the
182 archive.
183
184 dgit push always uses the package, suite and version specified in the
185 debian/changelog and the .dsc, which must agree.  If the command line
186 specifies a suite then that must match too.
187 .TP
188 \fBdgit push-source\fR [\fIsuite\fP]
189 Without \fB-C\fR, builds a source package and dgit pushes it.  Saying
190 \fBdgit push-source\fR is like saying "update the source code in the
191 archive to match my git HEAD, and let the autobuilders do the rest."
192
193 With \fB-C\fR, performs a dgit push, additionally ensuring that no
194 binary packages are uploaded.
195 .TP
196 \fBdgit rpush\fR \fIbuild-host\fR\fB:\fR\fIbuild-dir\fR [\fIpush args...\fR]
197 Pushes the contents of the specified directory on a remote machine.
198 This is like running dgit push on build-host with build-dir as the
199 current directory; however, signing operations are done on the
200 invoking host.  This allows you to do a push when the system which has
201 the source code and the build outputs has no access to the key:
202
203 .TS
204 l l.
205 1.      Clone on build host (dgit clone)
206 2.      Edit code on build host (edit, git commit)
207 3.      Build package on build host (dgit build)
208 4.      Test package on build host or elsewhere (dpkg -i, test)
209 5.      Upload by invoking dgit rpush on host with your GPG key.
210 .TE
211
212 However, the build-host must be able to ssh to the dgit repos.  If
213 this is not already the case, you must organise it separately, for
214 example by the use of ssh agent forwarding.
215
216 The remaining arguments are treated just as dgit push would handle
217 them.
218
219 build-host and build\-dir can be passed as separate
220 arguments; this is assumed to be the case if the first argument
221 contains no : (except perhaps one in [ ], to support IPv6 address
222 literals).
223
224 You will need similar enough versions of dgit on the build-host and
225 the invocation host.  The build-host needs gnupg installed, with your
226 public key in its keyring (but not your private key, obviously).
227 .TP
228 .B dgit setup-new-tree
229 Configure the current working tree the way that dgit clone would have
230 set it up.  Like running
231 .BR "dgit setup-useremail" ,
232 .B setup-mergechangelogs
233 and
234 .B setup-gitattributes
235 (but only does each thing if dgit is configured to do it automatically).
236 You can use these in any git repository, not just ones used with
237 the other dgit operations.
238 .TP
239 .B dgit setup-useremail
240 Set the working tree's user.name and user.email from the
241 distro-specific dgit configuration
242 .RB ( dgit-distro. \fIdistro\fR .user-name " and " .user-email ),
243 or DEBFULLNAME or DEBEMAIL.
244 .TP
245 .B dgit setup-mergechangelogs
246 Configures a git merge helper for the file
247 .B debian/changelog
248 which uses
249 .BR dpkg-mergechangelogs .
250 .TP
251 .B dgit setup-gitattributes
252 Set up the working tree's
253 .B .git/info/attributes
254 to disable all transforming attributes for all files.
255 This is done by defining a macro attribute
256 .B dgit-defuse-attrs
257 and applying it to
258 .BR * .
259 For why, see
260 .B GITATTRIBUTES
261 in
262 .BR dgit(7) .
263
264 (If there is already a macro attribute line
265 .B [attr]dgit-defuse-attrs
266 in .git/info/attributes
267 (whatever its effects),
268 this operation does nothing further.
269 This fact can be used to defeat or partially defeat
270 dgit setup-gitattributes
271 and hence
272 dgit setup-new-tree.)
273 .TP
274 .B dgit quilt-fixup
275 `3.0 (quilt)' format source packages need changes representing not
276 only in-tree but also as patches in debian/patches.  dgit quilt-fixup
277 checks whether this has been done; if not, dgit will make appropriate
278 patches in debian/patches and also commit the resulting changes to
279 git.
280
281 This is normally done automatically by dgit build and dgit push.
282
283 dgit will try to turn each relevant commit in your git history into a
284 new quilt patch.  dgit cannot convert nontrivial merges, or certain
285 other kinds of more exotic history.  If dgit can't find a suitable
286 linearisation of your history, by default it will fail, but you can
287 ask it to generate a single squashed patch instead.
288 .TP
289 \fBdgit import-dsc\fR [\fIsub-options\fR] \fI../path/to/.dsc\fR [\fB+\fR|\fB..\fR]branch
290 Import a Debian-format source package,
291 specified by its .dsc,
292 into git,
293 the way dgit fetch would do.
294
295 This does about half the work of dgit fetch:
296 it will convert the .dsc into a new, orphan git branch.
297 Since dgit has no access to a corresponding source package archive
298 or knowledge of the history
299 it does not consider whether this version is newer
300 than any previous import
301 or corresponding git branches;
302 and it therefore does not
303 make a pseudomerge to bind the import
304 into any existing git history.
305
306 Because a .dsc can contain a Dgit field naming a git commit
307 (which you might not have),
308 and specifying where to find that commit
309 (and any history rewrite table),
310 import-dsc might need online access.
311 If this is a problem
312 (or dgit's efforts to find the commit fail),
313 consider --no-chase-dsc-distro
314 or --force-import-dsc-with-dgit-field.
315
316 There is only only sub-option:
317
318 .B --require-valid-signature
319 causes dgit to insist that the signature on the .dsc is valid
320 (using the same criteria as dpkg-source -x).
321 Otherwise, dgit tries to verify the signature but
322 the outcome is reported only as messages to stderr.
323
324 If
325 .I branch
326 is prefixed with
327 .B +
328 then if it already exists, it will be simply ovewritten,
329 no matter its existing contents.
330 If
331 .I branch
332 is prefixed with
333 .B ..
334 then if it already exists
335 and dgit actually imports the dsc
336 (rather than simply reading the git commit out of the Dgit field),
337 dgit will make a pseudomerge
338 so that the result is necessarily fast forward
339 from the existing branch.
340 Otherwise, if branch already exists,
341 dgit will stop with an error message.
342
343 If
344 .I branch
345 does not start with refs/, refs/heads/ is prepended.
346 .TP
347 .B dgit version
348 Prints version information and exits.
349 .TP
350 .BI "dgit clone-dgit-repos-server" " destdir"
351 Tries to fetch a copy of the source code for the dgit-repos-server,
352 as actually being used on the dgit git server, as a git tree.
353 .TP
354 .BI "dgit print-dgit-repos-server-source-url"
355 Prints the url used by dgit clone-dgit-repos-server.
356 This is hopefully suitable for use as a git remote url.
357 It may not be useable in a browser.
358 .TP
359 .BI "dgit print-dpkg-source-ignores"
360 Prints the -i and -I arguments which must be passed to dpkg-souce
361 to cause it to exclude exactly the .git diredcory
362 and nothing else.
363 The separate arguments are unquoted, separated by spaces,
364 and do not contain spaces.
365 .SH OPTIONS
366 .TP
367 .BR --dry-run " | " -n
368 Go through the motions, fetching all information needed, but do not
369 actually update the output(s).  For push, dgit does
370 the required checks and leaves the new .dsc in a temporary file,
371 but does not sign, tag, push or upload.
372 .TP
373 .BR --damp-run " | " -L
374 Go through many more of the motions: do everything that doesn't
375 involve either signing things, or making changes on the public
376 servers.
377 .TP
378 .BI -k keyid
379 Use
380 .I keyid
381 for signing the tag and the upload.  The default comes from the
382 distro's
383 .B keyid
384 config setting (see CONFIGURATION, below), or failing that, the
385 uploader trailer line in debian/changelog.
386 .TP
387 .BR --no-sign
388 does not sign tags or uploads (meaningful only with push).
389 .TP
390 .TP
391 .BI -p package
392 Specifies that we should process source package
393 .I package
394 rather than looking in debian/control or debian/changelog.
395 Valid with dgit fetch and dgit pull, only.
396 .TP
397 .BR --clean=git " | " -wg
398 Use
399 .BR "git clean -xdf"
400 to clean the working tree,
401 rather than running the package's rules clean target.
402
403 This will delete all files which are not tracked by git.
404 (Including any files you forgot to git add.)
405
406 .BI --clean= ...
407 options other than dpkg-source
408 are useful when the package's clean target is troublesome, or
409 to avoid needing the build-dependencies.
410 .TP
411 .BR --clean=git-ff " | " -wgf
412 Use
413 .BR "git clean -xdff"
414 to clean the working tree.
415 Like
416 git clean -xdf
417 but it also removes any subdirectories containing different git
418 trees (which only unusual packages are likely to create).
419 .TP
420 .BR --clean=check " | " -wc
421 Merely check that the tree is clean (does not contain uncommitted
422 files).
423 Avoids running rules clean,
424 and can avoid needing the build-dependencies.
425 .TP
426 .BR --clean=none " | " -wn
427 Do not clean the tree, nor check that it is clean.
428 Avoids running rules clean,
429 and can avoid needing the build-dependencies.
430 If there are
431 files which are not in git, or if the build creates such files, a
432 subsequent dgit push will fail.
433 .TP
434 .BR --clean=dpkg-source " | " -wd
435 Use dpkg-buildpackage to do the clean, so that the source package
436 is cleaned by dpkg-source running the package's clean target.
437 This is the default.
438 Requires the package's build dependencies.
439 .TP
440 .BR --clean=dpkg-source-d " | " -wdd
441 Use
442 .B dpkg-buildpackage -d
443 to do the clean,
444 so that the source package
445 is cleaned by dpkg-source running the package's clean target.
446 The build-dependencies are not checked (due to
447 .BR -d ),
448 which violates policy, but may work in practice.
449 .TP
450 .BR -N " | " --new
451 The package is or may be new in this suite.  Without this, dgit will
452 refuse to push.  It may (for Debian, will) be unable to access the git
453 history for any packages which have been newly pushed and have not yet
454 been published.
455 .TP
456 .BR --ignore-dirty
457 Do not complain if the working tree does not match your git HEAD.
458 This can be useful with build, if you plan to commit later.  (dgit
459 push will still ensure that the .dsc you upload and the git tree
460 you push are identical, so this option won't make broken pushes.)
461 .TP
462 .BR --overwrite [=\fIprevious-version\fR]
463 Declare that even though your git branch is not a descendant
464 of the version in the archive
465 according to the revision history,
466 it really does contain
467 all the (wanted) changes from that version.
468
469 This option is useful if you are the maintainer, and you have
470 incorporated NMU changes into your own git workflow in a way that
471 doesn't make your branch a fast forward from the NMU.
472
473 .I previous-version
474 ought to be the version currently in the archive.  If
475 .I previous-version
476 is not
477 specified, dgit will check that the version in the archive is
478 mentioned in your debian/changelog.
479 (This will avoid losing
480 changes unless someone committed to git a finalised changelog
481 entry, and then made later changes to that version.)
482
483 dgit push --overwrite
484 will make a
485 pseudo-merge (that is, something that looks like the result
486 of git merge -s ours) to stitch the archive's version into your own
487 git history, so that your push is a fast forward from the archive.
488
489 (In quilt mode
490 .BR gbp ", " dpm " or " unpatched ,
491 implying a split between the dgit view and the
492 maintainer view, the pseudo-merge will appear only in the dgit view.)
493 .TP
494 .BR --delayed =\fIdays\fR
495 Upload to a DELAYED queue.
496
497 .B WARNING:
498 If the maintainer responds by cancelling
499 your upload from the queue,
500 and does not make an upload of their own,
501 this will not rewind the git branch on the dgit git server.
502 Other dgit users will then see your push
503 (with a warning message from dgit)
504 even though the maintainer wanted to abolish it.
505 Such users might unwittingly reintroduce your changes.
506
507 If this situation arises,
508 someone should make a suitable dgit push
509 to update the contents of dgit-repos
510 to a version without the controversial changes.
511 .TP
512 .BR --no-chase-dsc-distro
513 Tells dgit not to look online
514 for additional git repositories
515 containing information about a particular .dsc being imported.
516 Chasing is the default.
517
518 For most operations
519 (such as fetch and pull),
520 disabling chasing
521 means dgit will access only the git server
522 for the distro you are directly working with,
523 even if the .dsc was copied verbatim from another distro.
524 For import-dsc,
525 disabling chasing
526 means dgit will work completely offline.
527
528 Disabling chasing can be hazardous:
529 if the .dsc names a git commit which has been rewritten
530 by those in charge of the distro,
531 this option may prevent that rewrite from being effective.
532 Also,
533 it can mean that
534 dgit fails to find necessary git commits.
535 .TP
536 .BR --dgit-view-save= \fIbranch\fR|\fIref\fR
537 Specifies that when a split view quilt mode is in operation,
538 and dgit calculates
539 (or looks up in its cache)
540 a dgit view corresponding to your HEAD,
541 the dgit view will be left in
542 .IR ref .
543 The specified ref is unconditionally overwritten,
544 so don't specify a branch you want to keep.
545
546 This option is effective only with the following operations:
547 quilt-fixup; push; all builds.
548 And it is only effective with
549 --[quilt=]gbp,
550 --[quilt=]dpm,
551 --quilt=unpatched.
552
553 If ref does not start with refs/
554 it is taken to to be a branch -
555 i.e. refs/heads/ is prepended.
556 .TP
557 .BI --deliberately- something
558 Declare that you are deliberately doing
559 .IR something .
560 This can be used to override safety catches, including safety catches
561 which relate to distro-specific policies.
562 The use of --deliberately is declared and published in the signed tags
563 generated for you by dgit,
564 so that the archive software can give effect to your intent,
565 and
566 for the benefit humans looking at the history.
567 The meanings of
568 .IR something s
569 understood in the context of Debian are discussed below:
570 .TP
571 .BR --deliberately-not-fast-forward
572 Declare that you are deliberately rewinding history.  When pushing to
573 Debian, use this when you are making a renewed upload of an entirely
574 new source package whose previous version was not accepted for release
575 from NEW because of problems with copyright or redistributibility.
576
577 In split view quilt modes,
578 this also prevents the construction by dgit of a pseudomerge
579 to make the dgit view fast forwarding.
580 Normally only one of
581 --overwrite (which creates a suitable pseudomerge)
582 and
583 --deliberately-not-fast-forward
584 (which suppresses the pseudomerge and the fast forward checks)
585 should be needed;
586 --overwrite is usually better.
587 .TP
588 .BR --deliberately-include-questionable-history
589 Declare that you are deliberately including, in the git history of
590 your current push, history which contains a previously-submitted
591 version of this package which was not approved (or has not yet been
592 approved) by the ftpmasters.  When pushing to Debian, only use this
593 option after verifying that: none of the rejected-from-NEW (or
594 never-accepted) versions in the git history of your current push, were
595 rejected by ftpmaster for copyright or redistributability reasons.
596 .TP
597 .BR --deliberately-fresh-repo
598 Declare that you are deliberately rewinding history and want to
599 throw away the existing repo.  Not relevant when pushing to Debian,
600 as the Debian server will do this automatically when necessary.
601 .TP
602 .BR --quilt=linear
603 When fixing up source format `3.0 (quilt)' metadata, insist on
604 generating a linear patch stack: one new patch for each relevant
605 commit.
606 If such a stack cannot be generated, fail.
607 This is the default for Debian.
608
609 HEAD should be a series of plain commits
610 (not touching debian/patches/),
611 and pseudomerges,
612 with as ancestor a patches-applied branch.
613 .TP
614 .BR --quilt=auto
615 When fixing up source format `3.0 (quilt)' metadata, prefer to
616 generate a linear patch stack
617 (as with --quilt=auto)
618 but if that doesn't seem possible,
619 try to generate a single squashed patch for all the changes made in git
620 (as with --quilt=smash).
621 This is not a good idea for an NMU in Debian.
622 .TP
623 .BR --quilt=smash
624 When fixing up source format `3.0 (quilt)' metadata,
625 generate a single additional patch for all the changes made in git.
626 This is not a good idea for an NMU in Debian.
627
628 (If HEAD has any in-tree patches already, they must apply cleanly.
629 This will be the case for any trees produced by dgit fetch or clone;
630 if you do not change the upstream version
631 nor make changes in debian/patches,
632 it will remain true.)
633 .TP
634 .BR --quilt=nofix
635 Check whether source format `3.0 (quilt)' metadata would need fixing
636 up, but, if it does, fail.  You must then fix the metadata yourself
637 somehow before pushing.  (NB that dpkg-source --commit will not work
638 because the dgit git tree does not have a
639 .B .pc
640 directory.)
641 .TP
642 .BR --quilt=nocheck " | " --no-quilt-fixup
643 Do not check whether up source format `3.0 (quilt)' metadata needs
644 fixing up.  If you use this option and the metadata did in fact need
645 fixing up, dgit push will fail.
646 .TP
647 .BR -- [ quilt= ] gbp " | " -- [ quilt= ] dpm " | " --quilt=unapplied
648 Tell dgit that you are using a nearly-dgit-compatible git branch,
649 aka a
650 .BR "maintainer view" ,
651 and
652 do not want your branch changed by dgit.
653
654 .B --gbp
655 (short for
656 .BR --quilt=gbp )
657 is for use with git-buildpackage.
658 Your HEAD is expected to be
659 a patches-unapplied git branch, except that it might contain changes
660 to upstream .gitignore files.  This is the default for dgit gbp-build.
661
662 .B --dpm
663 (short for
664 .BR --quilt=dpm )
665 is for use with git-dpm.
666 Your HEAD is expected to be
667 a patches-applied git branch,
668 except that it might contain changes to upstream .gitignore files.
669
670 .B --quilt=unapplied
671 specifies that your HEAD is a patches-unapplied git branch (and
672 that any changes to upstream .gitignore files are represented as
673 patches in debian/patches).
674
675 With --quilt=gbp|dpm|unapplied,
676 dgit push (or precursors like quilt-fixup and build) will automatically
677 generate a conversion of your git branch into the right form.
678 dgit push will push the
679 dgit-compatible form (the
680 .BR "dgit view" )
681 to the dgit git server.
682 The dgit view will be visible to you
683 in the dgit remote tracking branches, but your own branch will
684 not be modified.
685 dgit push will create a tag
686 .BI debian/ version
687 for the maintainer view, and the dgit tag
688 .BI archive/debian/ version
689 for the dgit view.
690 dgit quilt-fixup will merely do some checks,
691 and cache the maintainer view.
692
693 .B If you have a branch like this it is essential to specify the appropriate --quilt= option!
694 This is because it is not always possible to tell: a patches-unapplied
695 git branch of a package with one patch, for example, looks very like
696 a patches-applied branch where the user has used git revert to
697 undo the patch, expecting to actually revert it.
698 However, if you fail to specify the right \-\-quilt option,
699 and you aren't too lucky, dgit will notice the problem and stop,
700 with a useful hint. 
701 .TP
702 .BR -d "\fIdistro\fR | " --distro= \fIdistro\fR
703 Specifies that the suite to be operated on is part of distro
704 .IR distro .
705 This overrides the default value found from the git config option
706 .BR dgit-suite. \fIsuite\fR .distro .
707 The only effect is that other configuration variables (used
708 for accessing the archive and dgit-repos) used are
709 .BR dgit-distro. \fIdistro\fR .* .
710
711 If your suite is part of a distro that dgit already knows about, you
712 can use this option to make dgit work even if your dgit doesn't know
713 about the suite.  For example, specifying
714 .B -ddebian
715 will work when the suite is an unknown suite in the Debian archive.
716
717 To define a new distro it is necessary to define methods and URLs
718 for fetching (and, for dgit push, altering) a variety of information both
719 in the archive and in dgit-repos.
720 How to set this up is not yet documented.
721 .TP
722 .BI -C changesfile
723 Specifies the .changes file which is to be uploaded.  By default
724 dgit push looks for single .changes file in the parent directory whose
725 filename suggests it is for the right package and version.
726
727 If the specified
728 .I changesfile
729 pathname contains slashes, the directory part is also used as
730 the value for
731 .BR --build-products-dir ;
732 otherwise, the changes file is expected in that directory (by
733 default, in
734 .BR .. ).
735 .TP
736 .B --rm-old-changes
737 When doing a build, delete any changes files matching
738 .IB package _ version _*.changes
739 before starting.  This ensures that
740 dgit push (and dgit sbuild) will be able to unambigously
741 identify the relevant changes files from the most recent build, even
742 if there have been previous builds with different tools or options.
743 The default is not to remove, but
744 .B \-\-no-rm-old-changes
745 can be used to override a previous \-\-rm-old-changes
746 or the .rm-old-changes configuration setting.
747 .TP
748 .BI --build-products-dir= directory
749 Specifies where to find the built files to be uploaded.
750 By default, dgit looks in the parent directory
751 .RB ( .. ).
752 .TP
753 .BI --no-rm-on-error
754 Do not delete the destination directory if clone fails.
755 .TP
756 .BI --dep14tag
757 Generates a DEP-14 tag (eg
758 .BR debian/ \fIversion\fR)
759 as well as a dgit tag (eg
760 .BR archive/debian/ \fIversion\fR)
761 where possible.  This is the default.
762 .TP
763 .BI --no-dep14tag
764 Do not generate a DEP-14 tag, except in split quilt view mode.
765 (On servers where only the old tag format is supported,
766 the dgit tag will have the DEP-14 name.
767 This option does not prevent that.)
768 .TP
769 .BI --dep14tag-always
770 Insist on generating a DEP-14 tag
771 as well as a dgit tag.
772 If the server does not support that, dgit push will fail.
773 .TP
774 .BI -D
775 Prints debugging information to stderr.  Repeating the option produces
776 more output (currently, up to -DDDD is meaningfully different).
777 .TP
778 .BI -c name = value
779 Specifies a git configuration option, to be used for this run.
780 dgit itself is also controlled by git configuration options.
781 .TP
782 .RI \fB-v\fR version "|\fB_\fR | " \fB--since-version=\fR version |\fB_\fR
783 Specifies the
784 .BI -v version
785 option to pass to dpkg-genchanges, during builds.  Changes (from
786 debian/changelog) since this version will be included in the built
787 changes file, and hence in the upload.  If this option is not
788 specified, dgit will query the archive and use the latest version
789 uploaded to the intended suite.
790
791 Specifying
792 .B _
793 inhibits this, so that no -v option will be passed to dpkg-genchanges
794 (and as a result, only the last stanza from debian/changelog will
795 be used for the build and upload).
796 .TP
797 .RI \fB-m\fR maintaineraddress
798 Passed to dpkg-genchanges (eventually).
799 .TP
800 .RI \fB--ch:\fR option
801 Specifies a single additional option to pass, eventually, to
802 dpkg-genchanges.
803
804 Options which are safe to pass include
805 .BR -C
806 (and also
807 .BR "-si -sa -sd"
808 although these should never be necessary with Debian since dgit
809 automatically calculates whether .origs need to be uploaded.)
810
811 For other options the caveat below applies.
812 .TP
813 .RI \fB--curl:\fR option " | \fB--dput:\fR" option " |..."
814 Specifies a single additional option to pass to
815 .BR curl ,
816 .BR dput ,
817 .BR debsign ,
818 .BR dpkg-source ,
819 .BR dpkg-buildpackage ,
820 .BR dpkg-genchanges ,
821 .BR sbuild ,
822 .BR ssh ,
823 .BR dgit ,
824 .BR apt-get ,
825 .BR apt-cache ,
826 .BR gbp-pq ,
827 .BR gbp-build ,
828 or
829 .BR mergechanges .
830 Can be repeated as necessary.
831
832 Use of this ability should not normally be necessary.
833 It is provided for working around bugs,
834 or other unusual situations.
835 If you use these options,
836 you may violate dgit's assumptions
837 about the behaviour of its subprograms
838 and cause lossage.
839
840 For dpkg-buildpackage, dpkg-genchanges, mergechanges and sbuild,
841 the option applies only when the program is invoked directly by dgit.
842 Usually, for passing options to dpkg-genchanges, you should use
843 .BR --ch: \fIoption\fR.
844
845 Specifying --git is not effective for some lower-level read-only git
846 operations performed by dgit, and also not when git is invoked by
847 another program run by dgit.
848
849 See notes below regarding ssh and dgit.
850
851 NB that --gpg:option is not supported (because debsign does not
852 have that facility).
853 But see
854 .B -k
855 and the
856 .B keyid
857 distro config setting.
858 .TP
859 .RI \fB--curl=\fR program " | \fB--dput=\fR" program  " |..."
860 Specifies alternative programs to use instead of
861 .BR curl ,
862 .BR dput ,
863 .BR debsign ,
864 .BR dpkg-source ,
865 .BR dpkg-buildpackage ,
866 .BR dpkg-genchanges ,
867 .BR sbuild ,
868 .BR gpg ,
869 .BR ssh ,
870 .BR dgit ,
871 .BR apt-get ,
872 .BR apt-cache ,
873 .BR git ,
874 .BR gbp-pq ,
875 .BR gbp-build ,
876 or
877 .BR mergechanges .
878
879 For
880 .BR dpkg-buildpackage ,
881 .BR dpkg-genchanges ,
882 .B mergechanges
883 and
884 .BR sbuild ,
885 this applies only when the program is invoked directly by dgit.
886
887 For
888 .BR dgit ,
889 specifies the command to run on the remote host when dgit
890 rpush needs to invoke a remote copy of itself.  (dgit also reinvokes
891 itself as the EDITOR for dpkg-source --commit; this is done using
892 argv[0], and is not affected by --dgit=).
893
894 .BR gbp-build 's
895 value
896 is used instead of gbp build or git-buildpackage.  (The default is
897 the latter unless the former exists on PATH.)
898 .BR gbp-pq 's
899 value
900 is used instead of gbp pq.
901 In both cases,
902 unusually, the specified value is split on whitespace
903 to produce a command and possibly some options and/or arguments.
904
905 For
906 .BR ssh ,
907 the default value is taken from the
908 .B DGIT_SSH
909 or
910 .B GIT_SSH
911 environment variables, if set (see below).  And, for ssh, when accessing the
912 archive and dgit-repos, this command line setting is overridden by the
913 git config variables
914 .BI dgit-distro. distro .ssh
915 and
916 .B .dgit.default.ssh
917 (which can in turn be overridden with -c).  Also, when dgit is using
918 git to access dgit-repos, only git's idea of what ssh to use (eg,
919 .BR GIT_SSH )
920 is relevant.
921 .TP
922 .BI --existing-package= package
923 dgit push needs to canonicalise the suite name.  Sometimes, dgit
924 lacks a way to ask the archive to do this without knowing the
925 name of an existing package.  Without --new we can just use the
926 package we are trying to push.  But with --new that will not work, so
927 we guess
928 .B dpkg
929 or use the value of this option.  This option is not needed with the
930 default mechanisms for accessing the archive.
931 .TP
932 .BR -h | --help
933 Print a usage summary.
934 .TP
935 .BI --initiator-tempdir= directory
936 dgit rpush uses a temporary directory on the invoking (signing) host.
937 This option causes dgit to use
938 .I directory
939 instead.  Furthermore, the specified directory will be emptied,
940 removed and recreated before dgit starts, rather than removed
941 after dgit finishes.  The directory specified must be an absolute
942 pathname.
943 .TP
944 .BI --force- something
945 Instructs dgit to try to proceed despite detecting
946 what it thinks is going to be a fatal problem.
947 .B This is probably not going to work.
948 These options are provided as an escape hatch,
949 in case dgit is confused.
950 (They might also be useful for testing error cases.)
951 .TP
952 .B --force-import-dsc-with-dgit-field
953 Tell dgit import-dsc to treat a .dsc with a Dgit field
954 like one without it.
955 The result is a fresh import,
956 discarding the git history
957 that the person who pushed that .dsc was working with.
958 .TP
959 .B --force-unrepresentable
960 Carry on even if
961 dgit thinks that your git tree contains changes
962 (relative to your .orig tarballs)
963 which dpkg-source is not able to represent.
964 Your build or push will probably fail later.
965 .TP
966 .B --force-changes-origs-exactly
967 Use the set of .origs specified in your .changes, exactly,
968 without regard to what is in the archive already.
969 The archive may well reject your upload.
970 .TP
971 .B --force-unsupported-source-format
972 Carry on despite dgit not understanding your source package format.
973 dgit will probably mishandle it.
974 .TP
975 .B --force-dsc-changes-mismatch
976 Do not check whether .dsc and .changes match.
977 The archive will probably reject your upload.
978 .TP
979 .BR --force-import-gitapply-absurd " | " --force-import-gitapply-no-absurd
980 Force on or off the use of the absurd git-apply emulation
981 when running gbp pq import
982 when importing a package from a .dsc.
983 See Debian bug #841867.
984 .SH CONFIGURATION
985 dgit can be configured via the git config system.
986 You may set keys with git-config (either in system-global or per-tree
987 configuration), or provide
988 .BI -c key = value
989 on the dgit command line.
990 .LP
991 Settings likely to be useful for an end user include:
992 .TP
993 .BR dgit-suite. \fIsuite\fR .distro " \fIdistro\fR"
994 Specifies the distro for a suite.  dgit keys off the suite name (which
995 appears in changelogs etc.), and uses that to determine the distro
996 which is involved.  The config used is thereafter that for the distro.
997
998 .I suite
999 may be a glob pattern.
1000 .TP
1001 .BI dgit.default.distro " distro"
1002 The default distro for an unknown suite.
1003 .TP
1004 .BI dgit.default.default-suite " suite"
1005 The default suite (eg for clone).
1006 .TP
1007 .BR dgit.default. *
1008 for each
1009 .BR dgit-distro. \fIdistro\fR . *,
1010 the default value used if there is no distro-specific setting.
1011 .TP
1012 .BR dgit-distro. \fIdistro\fR .clean-mode
1013 One of the values for the command line --clean= option; used if
1014 --clean is not specified.
1015 .TP
1016 .BR dgit-distro. \fIdistro\fR .quilt-mode
1017 One of the values for the command line --quilt= option; used if
1018 --quilt is not specified.
1019 .TP
1020 .BR dgit-distro. \fIdistro\fR .rm-old-changes
1021 Boolean, used if neither \-\-rm-old-changes nor \-\-no-rm-old-changes
1022 is specified.  The default is not to remove.
1023 .TP
1024 .BR dgit-distro. \fIdistro\fR .readonly " " auto | a " | " true | t | y | 1 " | " false | f | n | 0
1025 Whether you have push access to the distro.
1026 For Debian, it is OK to use auto, which uses readonly mode if you are
1027 not pushing right now;
1028 but, setting this to false will avoid relying on the mirror of the dgit
1029 git repository server.
1030 .TP
1031 .BI dgit-distro. distro .keyid
1032 See also
1033 .BR -k .
1034 .TP
1035 .BI dgit-distro. distro .mirror " url"
1036 .TP
1037 .BI dgit-distro. distro .username
1038 Not relevant for Debian.
1039 .TP
1040 .BI dgit-distro. distro .upload-host
1041 Might be useful if you have an intermediate queue server.
1042 .TP
1043 .BI dgit-distro. distro .user-name " " dgit-distro. distro .user-email
1044 Values to configure for user.name and user.email in new git trees.  If
1045 not specified, the DEBFULLNAME and DEBEMAIL environment variables are
1046 used, respectively.  Only used if .setup-usermail is not disabled.
1047 .TP
1048 .BI dgit-distro. distro .setup-useremail
1049 Whether to set user.name and user.email in new git trees.
1050 True by default.  Ignored for dgit setup-setup-useremail, which does it anyway.
1051 .TP
1052 .BI dgit-distro. distro .setup-mergechangelogs
1053 Whether to setup a merge driver which uses dpkg-mergechangelogs for
1054 debian/changelog.  True by default.  Ignored for dgit
1055 setup-mergechangelogs, which does it anyway.
1056 .TP
1057 .BI dgit-distro. distro .setup-gitattributes
1058 Whether to configure .git/info/attributes
1059 to suppress checkin/checkout file content transformations
1060 in new git trees.
1061 True by default.  Ignored for dgit setup-gitattributes, which does it anyway.
1062 .TP
1063 .BI dgit-distro. distro .cmd- cmd
1064 Program to use instead of
1065 .IR cmd .
1066 Works like
1067 .BR -- \fIcmd\fR = "... ."
1068 .TP
1069 .BI dgit-distro. distro .opts- cmd
1070 Extra options to pass to
1071 .IR cmd .
1072 Works like
1073 .BR -- \fIcmd\fR : "... ."
1074 To pass several options, configure multiple values in git config
1075 (with git config --add).  The options for
1076 .BI dgit.default.opts- cmd
1077 .BI dgit-distro. distro /push.opts- cmd
1078 and are all used, followed by options from dgit's command line.
1079 .SH ACCESS CONFIGURATION
1080 There are many other settings which specify how a particular distro's
1081 services (archive and git) are provided.  These should not normally be
1082 adjusted, but are documented for the benefit of distros who wish to
1083 adopt dgit.
1084 .TP
1085 .BI dgit-distro. distro .nominal-distro
1086 Shown in git tags, Dgit fields, and so on.
1087 .TP
1088 .BI dgit-distro. distro .alias-canon
1089 Used for all access configuration lookup.
1090 .TP
1091 .BR dgit-distro. \fIdistro\fR /push. *
1092 If set, overrides corresponding non \fB/push\fR config when
1093 .BR readonly=false ,
1094 or when pushing and
1095 .BR readonly=auto .
1096 .TP
1097 .BI dgit-distro. distro .git-url
1098 .TP
1099 .BR dgit-distro. \fIdistro\fR .git-url [ -suffix ]
1100 .TP
1101 .BI dgit-distro. distro .git-proto
1102 .TP
1103 .BI dgit-distro. distro .git-path
1104 .TP
1105 .BR dgit-distro. \fIdistro\fR .git-check " " true | false | url | ssh-cmd
1106 .TP
1107 .BI dgit-distro. distro .git-check-suffix
1108 .TP
1109 .BR dgit-distro. \fIdistro\fR .diverts.divert " " new-distro | / \fIdistro-suffix\fR
1110 .TP
1111 .BI dgit-distro. distro .git-create " " ssh-cmd | true
1112 .TP
1113 .BR dgit-distro. \fIdistro\fR .archive-query " " ftpmasterapi: " | " madison: "\fIdistro\fR | " dummycat: "\fI/path\fR  | " sshpsql: \fIuser\fR @ \fIhost\fR : \fIdbname\fR
1114 .TP
1115 .BR dgit-distro. \fIdistro\fR .archive-query- ( url | tls-key | curl-ca-args )
1116 .TP
1117 .BI dgit-distro. distro .madison-distro
1118 .TP
1119 .BI dgit-distro. distro .archive-query-default-component
1120 .TP
1121 .BI dgit-distro. distro .dgit-tag-format
1122 .TP
1123 .BR dgit-distro. \fIdistro\fR .dep14tag " " want | no | always
1124 .TP
1125 .BI dgit-distro. distro .ssh
1126 .TP
1127 .BI dgit-distro. distro .sshpsql-dbname
1128 .TP
1129 .BR dgit-distro. \fIdistro\fR . ( git | sshpsql ) - ( user | host | user-force )
1130 .TP
1131 .BI dgit-distro. distro .backports-quirk
1132 .TP
1133 .BI dgit-distro. distro .rewrite-map-enable
1134 .TP
1135 .BI dgit.default.old-dsc-distro
1136 .TP
1137 .BI dgit.dsc-url-proto-ok. protocol
1138 .TP
1139 .BI dgit.dsc-url-proto-ok.bad-syntax
1140 .TP
1141 .BI dgit.default.dsc-url-proto-ok
1142 .SH ENVIRONMENT VARIABLES
1143 .TP
1144 .BR DGIT_SSH ", " GIT_SSH
1145 specify an alternative default program (and perhaps arguments) to use
1146 instead of ssh.  DGIT_SSH is consulted first and may contain arguments;
1147 if it contains any whitespace will be passed to the shell.  GIT_SSH
1148 specifies just the program; no arguments can be specified, so dgit
1149 interprets it the same way as git does.
1150 See
1151 also the --ssh= and --ssh: options.
1152 .TP
1153 .BR DEBEMAIL ", " DEBFULLNAME
1154 Default git user.email and user.name for new trees.  See
1155 .BR "dgit setup-new-tree" .
1156 .TP
1157 .BR gpg ", " dpkg- "..., " debsign ", " git ", " curl ", " dput ", " LWP::UserAgent
1158 and other subprograms and modules used by dgit are affected by various
1159 environment variables.  Consult the documentaton for those programs
1160 for details.
1161 .SH BUGS
1162 There should be
1163 a `dgit rebase-prep' command or some such to turn a
1164 fast-forwarding branch containing pseudo-merges
1165 back into a rebasing patch stack.
1166 It might have to leave a note
1167 for a future dgit push.
1168
1169 If the dgit push fails halfway through,
1170 it is not necessarily restartable and
1171 idempotent.
1172 It would be good to check that the proposed signing key is
1173 available before starting work.
1174
1175 dgit's build functions, and dgit push, may make changes to
1176 your current HEAD.  Sadly this is necessary for packages in the `3.0
1177 (quilt)' source format.  This is ultimately due to what I consider
1178 design problems in quilt and dpkg-source.
1179
1180 --dry-run does not always work properly, as not doing some of the git
1181 fetches may result in subsequent actions being different.  Doing a
1182 non-dry-run dgit fetch first will help.
1183 --damp-run is likely to work much better.
1184 .SH SEE ALSO
1185 \fBdgit\fP(7),
1186 \fBdgit-*\fP(7),
1187 \fBcurl\fP(1),
1188 \fBdput\fP(1),
1189 \fBdebsign\fP(1),
1190 \fBgit-config\fP(1),
1191 \fBgit-buildpackage\fP(1),
1192 \fBdpkg-buildpackage\fP(1),
1193 .br
1194 https://browse.dgit.debian.org/