chiark / gitweb /
Compute "-v" option default value (changelog version since) correctly for Debian...
[dgit.git] / dgit.1
1 .TH dgit 1 "" "Debian Project" "dgit"
2 .SH NAME
3 dgit \- git integration with the Debian archive
4 .
5 .SH SYNOPSIS
6 .B dgit
7 [\fIdgit\-opts\fP] \fBclone\fP [\fIdgit\-opts\fP]
8 \fIpackage\fP [\fIsuite\fP] [\fB./\fP\fIdir|\fB/\fP\fIdir\fR]
9 .br
10 .B dgit
11 [\fIdgit\-opts\fP] \fBfetch\fP|\fBpull\fP [\fIdgit\-opts\fP]
12 [\fIsuite\fP]
13 .br
14 .B dgit
15 [\fIdgit\-opts\fP] \fBbuild\fP|\fBsbuild\fP|\fBbuild-source\fP
16 [\fIbuild\-opts\fp]
17 .br
18 .B dgit
19 [\fIdgit\-opts\fP] \fBpush\fP [\fIdgit\-opts\fP]
20 [\fIsuite\fP]
21 .br
22 .B dgit
23 [\fIdgit\-opts\fP] \fBrpush\fR \fIbuild-host\fR\fB:\fR\fIbuild-dir\fR
24 [\fIpush args...\fR]
25 .br
26 .B dgit
27 [\fIdgit\-opts\fP] \fIaction\fR ...
28 .SH DESCRIPTION
29 .B dgit
30 treats the Debian archive as a version control system, and
31 bidirectionally gateways between the archive and git.  The git view of
32 the package can contain the usual upstream git history, and will be
33 augmented by commits representing uploads done by other developers not
34 using dgit.  This git history is stored in a canonical location known
35 as
36 .B dgit-repos
37 which lives outside the Debian archive (currently, on Alioth).
38
39 The usual workflow is: 1. clone or fetch; 2. make and commit changes
40 in git as desired; 3. run dgit build, dgit sbuild or dgit
41 build-source, or generate the source and binary packages for upload
42 some other way; 4. do pre-upload tests of the proposed upload; 5. run
43 dgit push.
44 .TP
45 \fBdgit clone\fR \fIpackage\fP [\fIsuite\fP] [\fB./\fP\fIdir|\fB/\fP\fIdir\fR]
46 Consults the archive and dgit-repos to construct the git view of
47 history for
48 .I package
49 in
50 .I suite
51 .RB ( sid
52 by default)
53 in a new directory (named
54 .BI ./ package
55 by default);
56 also, downloads any necessary orig tarballs.
57
58 The suite's git tip is
59 left on the local branch
60 .BI dgit/ suite
61 ready for work, and on the corresponding dgit remote tracking branch.
62 Also, the
63 .B origin
64 remote will be set up to point to the package's dgit-repos tree
65 for the distro to which
66 .I suite
67 belongs.
68 .TP
69 \fBdgit fetch\fR [\fIsuite\fP]
70 Consults the archive and git-repos to update the git view of
71 history for a specific suite (and downloads any necessary orig
72 tarballs), and updates the remote tracking branch
73 .BR remotes/dgit/dgit/ \fIsuite\fR.
74 If the current branch is
75 .BI dgit/ suite
76 then dgit fetch defaults to
77 .IR suite ;
78 otherwise it parses debian/changelog and uses the suite specified
79 there.
80 .TP
81 \fBdgit pull\fR [\fIsuite\fP]
82 Does dgit fetch, and then merges the new head of the remote tracking
83 branch
84 .BI remotes/dgit/dgit/ suite
85 into the current branch.
86 .TP
87 \fBdgit build\fR ...
88 Runs
89 .B dpkg-buildpackage
90 with some suitable options.  Options and argumments after build
91 will be passed on to dpkg-buildpackage.  It is not necessary to use
92 dgit build when using dgit; it is OK to use any approach which ensures
93 that the generated source package corresponds to the relevant git
94 commit.
95
96 Tagging, signing and actually uploading should be left to dgit push.
97 .TP
98 \fBdgit build-source\fR ...
99 Builds the source package, and a changes file for a prospective
100 source-only upload, using
101 .BR dpkg-source .
102 The output is left in
103 .IR package \fB_\fR version \fB.dsc\fR
104 and
105 .IR package \fB_\fR version \fB_source.changes\fR.
106
107 Tagging, signing and actually uploading should be left to dgit push.
108 .TP
109 .B dgit help
110 Print a usage summary.
111 .TP
112 \fBdgit sbuild\fR ...
113 Constructs the source package, uses
114 .B  sbuild
115 to do a binary build, and uses mergechanges to merge the source and
116 binary changes files.  Options and argumments after sbuild will be
117 passed on to sbuild.  Changes files matching
118 .IB package _ version _*.changes
119 in the parent directory will be removed; the output is left in
120 .IR package \fB_\fR version \fB_multi.changes\fR.
121
122 Tagging, signing and actually uploading should be left to dgit push.
123 .TP
124 \fBdgit git-build\fR ...
125 Runs
126 .B git-buildpackage
127 with some suitable options.  Options and argumments after git-build
128 will be passed on to git-buildpackage.
129
130 Tagging, signing and actually uploading should be left to dgit push.
131 .TP
132 \fBdgit push\fR [\fIsuite\fP]
133 Does an `upload', pushing the current HEAD to the archive (as a source
134 package) and to dgit-repos (as git commits).  The package must already
135 have been built ready for upload, with the .dsc and .changes
136 left in the parent directory.
137
138 In more detail: dgit push checks that the current HEAD corresponds to
139 the .dsc.  It then pushes the HEAD to the suite's dgit-repos branch,
140 makes a signed git tag, edits the .dsc to contain the dgit metadata
141 field, runs debsign to sign the upload (.dsc and .changes), pushes the
142 signed tag, and finally uses dput to upload the .changes to the
143 archive.
144
145 dgit push always uses the package, suite and version specified in the
146 debian/changelog and the .dsc, which must agree.  If the command line
147 specifies a suite then that must match too.
148
149 If dgit push fails while uploading, it is fine to simply retry the
150 dput on the .changes file at your leisure.
151 .TP
152 \fBdgit rpush\fR \fIbuild-host\fR\fB:\fR\fIbuild-dir\fR [\fIpush args...\fR]
153 Pushes the contents of the specified directory on a remote machine.
154 This is like running dgit push on build-host with build-dir as the
155 current directory; however, signing operations are done on the
156 invoking host.  This allows you to do a push when the system which has
157 the source code and the build outputs has no access to the key.
158
159 However, the build-host must be able to ssh to the dgit repos.  If
160 this is not already the case, you must organise it separately, for
161 example by the use of ssh agent forwarding.
162
163 The remaining arguments are treated just as dgit push would handle
164 them.
165
166 build-host and build\-dir can be passed as separate
167 arguments; this is assumed to be the case if the first argument
168 contains no : (except perhaps on in [ ], to support IPv6 address
169 literals).
170 .TP
171 .B dgit quilt-fixup
172 Looks to see if the tree is one which dpkg-source cannot properly
173 represent.  If it isn't, dgit will fix it up for you (in quilt terms,
174 by making a new debian/ patch containing your unquilty changes) and
175 make a commit of the changes it has made.
176
177 This is normally done automatically by dgit build and dgit push.
178 .TP
179 .B dgit version
180 Prints version information and exits.
181 .SH OPTIONS
182 .TP
183 .BR --dry-run | -n
184 Go through the motions, fetching all information needed, but do not
185 actually update the output(s).  For push, dgit does
186 the required checks and leaves the new .dsc in a temporary file,
187 but does not sign, tag, push or upload.
188 .TP
189 .BR --damp-run | -L
190 Go through many more of the motions: do everything that doesn't
191 involve either signing things, or making changes on the public
192 servers.
193 .TP
194 .BI -k keyid
195 Use
196 .I keyid
197 for signing the tag and the upload.
198 .TP
199 .BR --no-sign
200 does not sign tags or uploads (meaningful only with push).
201 .TP
202 .TP
203 .BI -p package
204 Specifies that we should process source package
205 .I package
206 rather than looking in debian/control or debian/changelog.
207 Valid with dgit fetch and dgit pull, only.
208 .TP
209 .BR --clean=git | -wg
210 The source tree should be cleaned, before building a source package
211 with one of the build options, using
212 .BR "git clean -xdf" .
213 This will delete all files which are not tracked by git.
214 .TP
215 .BR --clean=none | -wn
216 Do not clean the tree before building a source package.  If there are
217 files which are not in git, a subsequent dgit push will fail.
218 .TP
219 .BR --clean=dpkg-source | -wd
220 Use dpkg-buildpackage to do the clean, so that the source package
221 is cleaned by dpkg-source running the package's clean target.
222 This is the default.  It requires the package's build dependencies.
223 .TP
224 .BR -N | --new
225 The package may be new in this suite.  Without this, dgit will
226 refuse to push.
227 .TP
228 .BR --ignore-dirty
229 Do not complain if the working tree does not match your git HEAD.
230 This can be useful with build, if you plan to commit later.  (dgit
231 push will still ensure that the .dsc you upload and the git tree
232 you push are identical, so this option won't make broken pushes.)
233
234 This option may not work properly on `3.0 (quilt)' packages, as in
235 that case dgit needs to use and perhaps commit parts of your working
236 tree.
237 .TP
238 .BR --no-quilt-fixup
239 Do not fix up source format `3.0 (quilt)' metadata.  If you use this
240 option and the package did in fact need fixing up, dgit push will
241 fail.
242 .TP
243 .BI -D
244 Prints debugging information to stderr.  Repeating the option produces
245 more output (currently, up to -DD is meaningfully different).
246 .TP
247 .BI -c name = value
248 Specifies a git configuration option.  dgit itself is also controlled
249 by git configuration options.
250 .TP
251 .RI \fB-v\fR version "|\fB_\fR | " \fB--since-version=\fR version |\fB_\fR
252 Specifies the
253 .BI -v version
254 option to pass to dpkg-genchanges, during builds.  Changes (from
255 debian/changelog) since this version will be included in the built
256 changes file, and hence in the upload.  If this option is not
257 specified, dgit will query the archive and use the latest version
258 uploaded to the intended suite.
259
260 Specifying
261 .B _
262 inhibits this, so that no -v option will be passed to dpkg-genchanges
263 (and as a result, only the last stanza from debian/changelog will
264 be used for the build and upload).
265 .TP
266 .RI \fB-m\fR maintaineraddress
267 Passed to dpkg-genchanges (eventually).
268 .TP
269 .RI \fB--ch:\fR option
270 Specifies a single additional option to pass, eventually, to
271 dpkg-genchanges.
272 .TP
273 .RI \fB--dget=\fR program |\fB--dput=\fR program |...
274 Specifies alternative programs to use instead of
275 .BR dget ,
276 .BR dput ,
277 .BR debsign ,
278 .BR dpkg-source ,
279 .BR dpkg-buildpackage ,
280 .BR dpkg-genchanges ,
281 .BR sbuild ,
282 .BR gpg ,
283 .BR ssh ,
284 .BR dgit ,
285 or
286 .BR mergechanges .
287
288 For dpkg-buildpackage, dpkg-genchanges, mergechanges and sbuild,
289 this applies only when the program is invoked directly by dgit.
290
291 For dgit, specifies the command to run on the remote host when dgit
292 rpush needs to invoke a remote copy of itself.  (dgit also reinvokes
293 itself as the EDITOR for dpkg-source --commit; this is done using
294 argv[0], and is not affected by --dget=).
295
296 For ssh, the default value is taken from the
297 .B DGIT_SSH
298 or
299 .B GIT_SSH
300 environment variables, if set (see below).  And, for ssh, when accessing the
301 archive and dgit-repos, this command line setting is overridden by the
302 git config variables
303 .BI dgit-distro. distro .ssh
304 and
305 .B .dgit.default.ssh
306 (which can in turn be overridden with -c).  Also, when dgit is using
307 git to access dgit-repos, only git's idea of what ssh to use (eg,
308 .BR GIT_SSH )
309 is relevant.
310 .TP
311 .RI \fB--dget:\fR option |\fB--dput:\fR option |...
312 Specifies a single additional option to pass to
313 .BR dget ,
314 .BR dput ,
315 .BR debsign ,
316 .BR dpkg-source ,
317 .BR dpkg-buildpackage ,
318 .BR dpkg-genchanges ,
319 .BR sbuild ,
320 .BR ssh ,
321 .BR dgit ,
322 or
323 .BR mergechanges .
324 Can be repeated as necessary.
325
326 For dpkg-buildpackage, dpkg-genchanges, mergechanges and sbuild,
327 this applies only when the program is invoked directly by dgit.
328 Usually, for passing options to dpkg-genchanges, you should use
329 .BR --ch: \fIoption\fR.
330
331 See notes above regarding ssh and dgit.
332
333 NB that --gpg:option is not supported (because debsign does not
334 have that facility).  But see -k.
335 .TP
336 .BR -d "\fIdistro\fR | " --distro= \fIdistro\fR
337 Specifies that the suite to be operated on is part of distro
338 .IR distro .
339 This overrides the default value found from the git config option
340 .BR dgit-suite. \fIsuite\fR .distro .
341 The only effect is that other configuration variables (used
342 for accessing the archive and dgit-repos) used are
343 .BR dgit-distro. \fIdistro\fR .* .
344
345 If your suite is part of a distro that dgit already knows about, you
346 can use this option to make dgit work even if your dgit doesn't know
347 about the suite.  For example, specifying
348 .B -ddebian
349 will work when the suite is an unknown suite in the Debian archive.
350
351 To define a new distro it is necessary to define methods and URLs
352 for fetching (and, for dgit push, altering) a variety of information both
353 in the archive and in dgit-repos.  How to do this is not yet
354 documented, and currently the arrangements are unpleasant.  See
355 BUGS.
356 .TP
357 .BI -C changesfile
358 Specifies the .changes file which is to be uploaded.  By default
359 dgit push looks for single .changes file in the parent directory whose
360 filename suggests it is for the right package and version - or,
361 if there is a _multi.changes file, dgit uses that.
362
363 If the specified
364 .I changesfile
365 pathname contains slashes, the directory part is also used as
366 the value for
367 .BR --build-products-dir ;
368 otherwise, the changes file is expected in that directory (by
369 default, in
370 .BR .. ).
371 .TP
372 .BI --build-products-dir= directory
373 Specifies where to find the built files to be uploaded.
374 By default, dgit looks in the parent directory
375 .BR .. ).
376 .TP
377 .BI --existing-package= package
378 dgit push needs to canonicalise the suite name.  Sometimes, dgit
379 lacks a way to ask the archive to do this without knowing the
380 name of an existing package.  Without --new we can just use the
381 package we are trying to push.  But with --new that will not work, so
382 we guess
383 .B dpkg
384 or use the value of this option.  This option is not needed with the
385 default mechanisms for accessing the archive.
386 .TP
387 .BR -h | --help
388 Print a usage summary.
389 .TP
390 .BI --initiator-tempdir= directory
391 dgit rpush uses a temporary directory on the invoking (signing) host.
392 This option causes dgit to use
393 .I directory
394 instead.  Furthermore, the specified directory will be emptied,
395 removed and recreated before dgit starts, rather than removed
396 after dgit finishes.  The directory specified must be an absolute
397 pathname.
398 .SH WORKFLOW - SIMPLE
399 It is always possible with dgit to clone or fetch a package, make
400 changes in git (using git-commit) on the suite branch
401 .RB ( "git checkout dgit/" \fIsuite\fR)
402 and then dgit push.  You can use whatever gitish techniques you like
403 to construct the commit to push; the only requirement is that it is a
404 descendant of the state of the archive, as provided by dgit in the
405 remote tracking branch
406 .BR remotes/dgit/dgit/ \fIsuite\fR.
407
408 If you are lucky the other uploaders have also used dgit and
409 integrated the other relevant git history; if not you can fetch it
410 into your tree and cherry-pick etc. as you wish.
411 .SH WORKFLOW - INTEGRATING BETWEEN DGIT AND OTHER GIT HISTORY
412 If you are the maintainer of a package dealing with uploads made
413 without dgit, you will probably want to merge the synthetic commits
414 (made by dgit to represent the uploads) into your git history.
415 Normally you can just merge the dgit branch into your own master, or
416 indeed if you do your work on the dgit local suite branch
417 .BI dgit/ suite
418 you can just use dgit pull.
419
420 However the first time dgit is used it will generate a new origin
421 commit from the archive which won't be linked into the rest of your
422 git history.  You will need to merge this.
423
424 If last upload was in fact made with git, you should usually proceed
425 as follows: identify the commit which was actually used to build the
426 package.  (Hopefully you have a tag for this.)  Check out the dgit
427 branch
428 .RB ( "git checkout dgit/" \fIsuite\fR)
429 and merge that other commit
430 .RB ( "git merge debian/" \fIversion\fR).
431 Hopefully this merge will be trivial because the two trees should
432 be the same.  The resulting branch head can be merged into your
433 working branches
434 .RB ( "git checkout master && git merge dgit/" \fIsuite\fR).
435
436 If last upload was not made with git, a different approach is required
437 to start using dgit.  First, do
438 .B dgit fetch
439 (or clone) to obtain a git history representation of what's in the
440 archive and record it in the
441 .BI remotes/dgit/dgit/ suite
442 tracking branch.  Then somehow, using your other git history
443 plus appropriate diffs and cherry picks from the dgit remote tracking
444 branch, construct a git commit whose tree corresponds to the tree to use for the
445 next upload.  If that commit-to-be-uploaded is not a descendant of the
446 dig remote tracking branch, check it out and say
447 .BR "git merge -s ours remotes/dgit/dgit/" \fIsuite\fR;
448 that tells git that we are deliberately throwing away any differences
449 between what's in the archive and what you intend to upload.
450 Then run
451 .BR "dgit push"
452 to actually upload the result.
453 .SH MODEL
454 You may use any suitable git workflow with dgit, provided you
455 satisfy dgit's requirements:
456
457 dgit maintains a pseudo-remote called
458 .BR dgit ,
459 with one branch per suite.  This remote cannot be used with
460 plain git.
461
462 The
463 .B dgit-repos
464 repository for each package contains one ref per suite named
465 \fBrefs/dgit/\fR\fIsuite\fR.  These should be pushed to only by
466 dgit.  They are fast forwarding.  Each push on this branch
467 corresponds to an upload (or attempted upload).
468
469 However, it is perfectly fine to have other branches in dgit-repos;
470 normally the dgit-repos repo for the package will be accessible via
471 the remote name `origin'.
472
473 dgit push will also (by default) make signed tags called
474 .BI debian/ version
475 and push them to dgit-repos, but nothing depends on these tags
476 existing.
477
478 dgit push can operate on any commit which is a descendant of the
479 current dgit/suite tip in dgit-repos.
480
481 Uploads made by dgit contain an additional field
482 .B Dgit
483 in the source package .dsc.  (This is added by dgit push.)
484 This specifies a commit (an ancestor of the dgit/suite
485 branch) whose tree is identical to the unpacked source upload.
486
487 Uploads not made by dgit are represented in git by commits which are
488 synthesised by dgit.  The tree of each such commit corresponds to the
489 unpacked source; there is an origin commit with the contents, and a
490 psuedo-merge from last known upload - that is, from the contents of
491 the dgit/suite branch.
492
493 dgit expects repos that it works with to have a
494 .B dgit
495 remote.  This refers to the well-known dgit-repos location
496 (currently, the dgit-repos project on Alioth).  dgit fetch updates
497 the remote tracking branch for dgit/suite.
498
499 dgit does not (currently) represent the orig tarball(s) in git.  The
500 orig tarballs are downloaded (by dgit clone) into the parent
501 directory, as with a traditional (non-gitish) dpkg-source workflow.
502 You need to retain these tarballs in the parent directory for dgit
503 build and dgit push.
504
505 To a user looking at the archive, changes pushed using dgit look like
506 changes made in an NMU: in a `3.0 (quilt)' package the delta from the
507 previous upload is recorded in a new patch constructed by dpkg-source.
508 .SH PACKAGE SOURCE FORMATS
509 If you are not the maintainer, you do not need to worry about the
510 source format of the package.  You can just make changes as you like
511 in git.  If the package is a `3.0 (quilt)' package, the patch stack
512 will usually not be represented in the git history.
513
514 If you are the maintainer of a non-native package, you currently have
515 two sensible options:
516
517 Firstly, you can regard your git history as primary, and the archive
518 as an export format.  For example, you could maintain topic branches
519 in git and a fast-forwarding release branch; or you could do your work
520 directly in a merging way on the
521 .BI dgit/ suite
522 branches.  If you do this you should probably use a `1.0' format
523 source package if you can.  In the archive, the delta between upstream
524 will be represented in the single Debian patch.
525
526 Secondly, you can use `3.0 (quilt)', and regard your quiltish patch
527 stack in the archive as primary.  You will have to use other tools
528 besides dgit to import and export this patch stack.  But see below:
529 .SH FORMAT 3.0 (QUILT)
530 For a format `3.0 (quilt)' source package, dgit may have to make a
531 commit on your current branch to contain metadata used by quilt and
532 dpkg-source.
533
534 This is because (i) the `3.0 (quilt)' source format cannot represent
535 certain trees, and (ii) packing up a tree in `3.0 (quilt)' and then
536 unpacking it does not always yield the same tree.  Instead,
537 dpkg-source insists on the trees having extra quilty metadata and
538 patch files in the debian/ and .pc/ directories, which dpkg-source
539 sometimes modifies.
540
541 dgit will automatically work around this braindamage for you when
542 building and pushing.  The only thing you need to know is that dgit
543 build, sbuild, etc., may make a new commit on your HEAD.  If you're
544 not a quilt user this commit won't contain any changes to files you
545 care about.
546
547 You can explicitly request that dgit do just this fixup, by running
548 dgit quilt-fixup.
549
550 We recommend against the use of `3.0 (quilt)'.
551 .SH FILES IN THE SOURCE PACKAGE BUT NOT IN GIT
552 This section is mainly of interest to maintainers who want to use dgit
553 with their existing git history for the Debian package.
554
555 Some developers like to have an extra-clean git tree which lacks files
556 which are normally found in source tarballs and therefore in Debian
557 source packages.  For example, it is conventional to ship ./configure
558 in the source tarball, but some people prefer not to have it present
559 in the git view of their project.
560
561 dgit requires that the source package unpacks to exactly the same
562 files as are in the git commit on which dgit push operates.  So if you
563 just try to dgit push directly from one of these extra-clean git
564 branches, it will fail.
565
566 As the maintainer you therefore have the following options:
567 .TP
568 \(bu
569 Persuade upstream that the source code in their git history and the
570 source they ship as tarballs should be identical.  Of course simply
571 removing the files from the tarball may make the tarball hard for
572 people to use.
573 .IP
574 One answer is to commit the (maybe autogenerated)
575 files, perhaps with some simple automation to deal with conflicts and
576 spurious changes.  This has the advantage that someone who clones
577 the git repository finds the program just as easy to build as someone
578 who uses the tarball.
579 .TP
580 \(bu
581 Have separate git branches which do contain the extra files, and after
582 regenerating the extra files (whenever you would have to anyway),
583 commit the result onto those branches.
584 .TP
585 \(bu
586 Provide source packages which lack the files you don't want
587 in git, and arrange for your package build to create them as needed.
588 This may mean not using upstream source tarballs and makes the Debian
589 source package less useful for people without Debian build
590 infrastructure.
591 .LP
592 Of course it may also be that the differences are due to build system
593 bugs, which cause unintended files to end up in the source package.
594 dgit will notice this and complain.  You may have to fix these bugs
595 before you can unify your existing git history with dgit's.
596 .SH CONFIGURATION
597 dgit looks at the following git config keys to control its behaviour.
598 You may set them with git-config (either in system-global or per-tree
599 configuration), or provide
600 .BI -c key = value
601 on the dgit command line.
602 .TP
603 .BI dgit-suite. suite .distro
604 .TP
605 .BI dgit.default.distro
606 .TP
607 .BI dgit-distro. distro .username
608 .TP
609 .BI dgit-distro. distro .git-url
610 .TP
611 .BI dgit-distro. distro .git-user
612 .TP
613 .BI dgit-distro. distro .git-host
614 .TP
615 .BI dgit-distro. distro .git-proto
616 .TP
617 .BI dgit-distro. distro .git-path
618 .TP
619 .BI dgit-distro. distro .git-check
620 .TP
621 .BI dgit-distro. distro .git-create
622 .TP
623 .BI dgit-distro. distro .upload-host
624 .TP
625 .BI dgit-distro. distro .mirror
626 .TP
627 .BI dgit-distro. distro .archive-query
628 .TP
629 .BI dgit-distro. distro .archive-query-default-component
630 .TP
631 .BI dgit-distro. distro .sshpsql-user
632 .TP
633 .BI dgit-distro. distro .sshpsql-host
634 .TP
635 .BI dgit-distro. distro .sshpsql-dbname
636 .TP
637 .BI dgit-distro. distro .ssh
638 .TP
639 .BI dgit-distro. distro .keyid
640 .TP
641 .BR dgit.default. *
642 for each
643 .BR dgit-distro. \fIdistro\fR . *
644 .SH ENVIRONMENT VARIABLES
645 .TP
646 .BR DGIT_SSH ", " GIT_SSH
647 specify an alternative default program (and perhaps arguments) to use
648 instead of ssh.  DGIT_SSH is consulted first and may contain arguments;
649 if it contains any whitespace will be passed to the shell.  GIT_SSH
650 specifies just the program; no arguments can be specified, so dgit
651 interprets it the same way as git does.
652 See
653 also the --ssh= and --ssh: options.
654 .TP
655 .BR gpg ", " dpkg- "..., " debsign ", " git ", " dget ", " dput ", " LWP::UserAgent
656 and other subprograms and modules used by dgit are affected by various
657 environment variables.  Consult the documentaton for those programs
658 for details.
659 .SH BUGS
660 We should be using some kind of vhost/vpath setup for the git repos on
661 alioth, so that they can be moved later if and when this turns out to
662 be a good idea.
663
664 dgit push should perhaps do `git push origin', or something similar,
665 by default.
666
667 Debian does not have a working rmadison server, so to find out what
668 version of a package is in the archive, or to canonicalise suite
669 names, we ssh directly into the ftpmaster server and run psql there to
670 access the database.
671
672 The mechanism for checking for and creating per-package repos on
673 alioth is a hideous bodge.  One consequence is that dgit currently
674 only works for people with push access.
675
676 Debian Maintainers are currently not able to push, as there is not
677 currently any mechanism for determining and honouring the archive's
678 ideas about access control.  Currently only DDs can push.
679
680 dgit's representation of format `3.0 (quilt)' source packages does not
681 represent the patch stack.  Currently the patch series representation
682 cannot round trip through the archive.  Ideally dgit would represent a
683 quilty package with an origin commit of some kind followed by the
684 patch stack as a series of commits followed by a pseudo-merge (to make
685 the branch fast-forwarding).  This would also mean a new `dgit
686 rebase-prep' command or some such to turn such a fast-forwarding
687 branch back into a rebasing patch stack, and a `force' option to dgit
688 push (perhaps enabled automatically by a note left by rebase-prep)
689 which will make the required pseudo-merge.
690
691 If the dgit push fails halfway through, it should be restartable and
692 idempotent.  However this is not true for the git tag operation.
693 Also, it would be good to check that the proposed signing key is
694 available before starting work.
695
696 dgit's handling of .orig.tar.gz is not very sophisticated.  Ideally
697 the .orig.tar.gz could be transported via the git repo as git tags.
698 Doing this is made more complicated by the possibility of a `3.0
699 (quilt)' package with multiple .orig tarballs.
700
701 dgit's build functions, and dgit push, should not make any changes to
702 your current HEAD.  Sadly this is necessary for packages in the `3.0
703 (quilt)' source format.  This is ultimately due to design problems in
704 quilt and dpkg-source.
705
706 There should be an option which arranges for the `3.0 (quilt)'
707 autocommit to not appear on your HEAD, but instead only in the
708 remote tracking suite branch.
709
710 The option parser requires values to be cuddled to the option name.
711
712 dgit assumes knowledge of the archive database.  (The information dgit
713 needs is not currently available via any public online service with a
714 well-defined interface, let alone a secure one.)
715
716 --dry-run does not always work properly, as not doing some of the git
717 fetches may result in subsequent actions being different.  Doing a
718 non-dry-run dgit fetch first will help.
719 .SH SEE ALSO
720 \fBdget\fP(1),
721 \fBdput\fP(1),
722 \fBdebsign\fP(1),
723 \fBgit-config\fP(1),
724 \fBgit-buildpackage\fP(1),
725 \fBdpkg-buildpackage\fP(1),
726 .br
727 https://wiki.debian.org/Alioth