chiark / gitweb /
Reorganise manpage sections to be in a more conventional order.
[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] \fIaction\fR ...
24 .SH DESCRIPTION
25 .B dgit
26 treats the Debian archive as a version control system, and
27 bidirectionally gateways between the archive and git.  The git view of
28 the package can contain the usual upstream git history, and will be
29 augmented by commits representing uploads done by other developers not
30 using dgit.  This git history is stored in a canonical location known
31 as
32 .B dgit-repos
33 which lives outside the Debian archive (currently, on Alioth).
34
35 The usual workflow is: 1. clone or fetch; 2. make and commit changes
36 in git as desired; 3. run dgit build, dgit sbuild or dgit
37 build-source, or generate the source and binary packages for upload
38 some other way; 4. do pre-upload tests of the proposed upload; 5. run
39 dgit push.
40 .TP
41 \fBdgit clone\fR \fIpackage\fP [\fIsuite\fP] [\fB./\fP\fIdir|\fB/\fP\fIdir\fR]
42 Consults the archive and dgit-repos to construct the git view of
43 history for
44 .I package
45 in
46 .I suite
47 .RB ( sid
48 by default)
49 in a new directory (named
50 .BI ./ package
51 by default);
52 also, downloads any necessary orig tarballs.
53
54 The suite's git tip is
55 left on the local branch
56 .BI dgit/ suite
57 ready for work, and on the corresponding dgit remote tracking branch.
58 Also, the
59 .B origin
60 remote will be set up to point to the package's dgit-repos tree
61 for the distro to which
62 .I suite
63 belongs.
64 .TP
65 \fBdgit fetch\fR [\fIsuite\fP]
66 Consults the archive and git-repos to update the git view of
67 history for a specific suite (and downloads any necessary orig
68 tarballs), and updates the remote tracking branch
69 .BR remotes/dgit/dgit/ \fIsuite\fR.
70 If the current branch is
71 .BI dgit/ suite
72 then dgit fetch defaults to
73 .IR suite ;
74 otherwise it parses debian/changelog and uses the suite specified
75 there.
76 .TP
77 \fBdgit pull\fR [\fIsuite\fP]
78 Does dgit fetch, and then merges the new head of the remote tracking
79 branch
80 .BI remotes/dgit/dgit/ suite
81 into the current branch.
82 .TP
83 \fBdgit build\fR ...
84 Runs
85 .B dpkg-buildpackage
86 with some suitable options.  Options and argumments after build
87 will be passed on to dpkg-buildpackage.  It is not necessary to use
88 dgit build when using dgit; it is OK to use any approach which ensures
89 that the generated source package corresponds to the relevant git
90 commit.
91
92 Tagging, signing and actually uploading should be left to dgit push.
93 .TP
94 \fBdgit build-source\fR ...
95 Builds the source package, and a changes file for a prospective
96 source-only upload, using
97 .BR dpkg-source .
98 The output is left in
99 .IR package \fB_\fR version \fB.dsc\fR
100 and
101 .IR package \fB_\fR version \fB_source.changes\fR.
102
103 Tagging, signing and actually uploading should be left to dgit push.
104 .TP
105 \fBdgit sbuild\fR ...
106 Constructs the source package, uses
107 .B  sbuild
108 to do a binary build, and uses mergechanges to merge the source and
109 binary changes files.  Options and argumments after sbuild will be
110 passed on to sbuild.  Changes files matching
111 .IB package _ version _*.changes
112 in the parent directory will be removed; the output is left in
113 .IR package \fB_\fR version \fB_multi.changes\fR.
114
115 Tagging, signing and actually uploading should be left to dgit push.
116 .TP
117 \fBdgit git-build\fR ...
118 Runs
119 .B git-buildpackage
120 with some suitable options.  Options and argumments after git-build
121 will be passed on to git-buildpackage.
122
123 Tagging, signing and actually uploading should be left to dgit push.
124 .TP
125 .B dgit push
126 Does an `upload', pushing the current HEAD to the archive (as a source
127 package) and to dgit-repos (as git commits).  The package must already
128 have been built ready for upload, with the .dsc and .changes
129 left in the parent directory.
130
131 In more detail: dgit push checks that the current HEAD corresponds to
132 the .dsc.  It then pushes the HEAD to the suite's dgit-repos branch,
133 makes a signed git tag, edits the .dsc to contain the dgit metadata
134 field, runs debsign to sign the upload (.dsc and .changes), pushes the
135 signed tag, and finally uses dput to upload the .changes to the
136 archive.
137
138 dgit push always uses the package, suite and version specified in the
139 debian/changelog and the .dsc, which must agree.
140
141 If dgit push fails while uploading, it is fine to simply retry the
142 dput on the .changes file at your leisure.
143 .TP
144 .B dgit quilt-fixup
145 Looks to see if the tree is one which dpkg-source cannot properly
146 represent.  If it isn't, dgit will fix it up for you (in quilt terms,
147 by making a new debian/ patch containing your unquilty changes) and
148 make a commit of the changes it has made.
149
150 This is normally done automatically by dgit build and dgit push.
151 .SH OPTIONS
152 .TP
153 .BR --dry-run | -n
154 Go through the motions, fetching all information needed, but do not
155 actually update the output(s).  For push, dgit does
156 the required checks and leaves the new .dsc in a temporary file,
157 but does not sign, tag, push or upload.
158 .TP
159 .BI -k keyid
160 Use
161 .I keyid
162 for signing the tag and the upload.
163 .TP
164 .BR --no-sign
165 does not sign tags or uploads (meaningful only with push).
166 .TP
167 .TP
168 .BI -p package
169 Specifies that we should process source package
170 .I package
171 rather than looking in debian/control or debian/changelog.
172 Valid with dgit fetch and dgit pull, only.
173 .TP
174 .BR --clean=git | -wg
175 The source tree should be cleaned, before building a source package
176 with one of the build options, using
177 .BR "git clean -xdf" .
178 This will delete all files which are not tracked by git.
179 .TP
180 .BR --clean=none | -wn
181 Do not clean the tree before building a source package.  If there are
182 files which are not in git, a subsequent dgit push will fail.
183 .TP
184 .BR --clean=dpkg-source | -wd
185 Use dpkg-buildpackage to do the build, so that the source package
186 is cleaned by dpkg-source running the package's clean target.
187 This is the default.  It requires the package's build dependencies.
188 .TP
189 .BR -N | --new
190 The package may be new in this suite.  Without this, dgit will
191 refuse to push.
192 .TP
193 .BR --ignore-dirty
194 Do not complain if the working tree does not match your git HEAD.
195 This can be useful with build, if you plan to commit later.  (dgit
196 push will still ensure that the .dsc you upload and the git tree
197 you push are identical, so this option won't make broken pushes.)
198
199 This option may not work properly on `3.0 (quilt)' packages, as in
200 that case dgit needs to use and perhaps commit parts of your working
201 tree.
202 .TP
203 .BR --no-quilt-fixup
204 Do not fix up source format `3.0 (quilt)' metadata.  If you use this
205 option and the package did in fact need fixing up, dgit push will
206 fail.
207 .TP
208 .BI -D
209 Prints debugging information to stderr.  Repeating the option produces
210 more output (currently, up to -DD is meaningfully different).
211 .TP
212 .BI -c name = value
213 Specifies a git configuration option.  dgit itself is also controlled
214 by git configuration options.
215 .TP
216 .RI \fB-v\fR version |\fB-m\fR maintaineraddress
217 Passed to dpkg-genchanges (eventually).
218 .TP
219 .RI \fB--ch:\fR option
220 Specifies a single additional option to pass, eventually, to
221 dpkg-genchanges.
222 .TP
223 .RI \fB--dget=\fR program |\fB--dput=\fR program |...
224 Specifies alternative programs to use instead of
225 .BR dget ,
226 .BR dput ,
227 .BR debsign ,
228 .BR dpkg-source ,
229 .BR dpkg-buildpackage ,
230 .BR dpkg-genchanges ,
231 .BR sbuild ,
232 or
233 .BR mergechanges .
234 This applies only when the program is invoked directly by dgit.
235 .TP
236 .RI \fB--dget:\fR option |\fB--dput:\fR option |...
237 Specifies a single additional option to pass to
238 .BR dget ,
239 .BR dput ,
240 .BR debsign ,
241 .BR dpkg-source ,
242 .BR dpkg-buildpackage ,
243 .BR dpkg-genchanges ,
244 .BR sbuild ,
245 or
246 .BR mergechanges .
247 Can be repeated as necessary.
248 This applies only when the program is invoked directly by dgit.
249 Usually, for passing options to dpkg-genchanges, use
250 .BR --ch: \fIoption\fR.
251 .TP
252 .BR -d "\fIdistro\fR | " --distro= \fIdistro\fR
253 Specifies that the suite to be operated on is part of distro
254 .IR distro .
255 This overrides the default value found from the git config option
256 .BR dgit-suite. \fIsuite\fR .distro .
257 The only effect is that other configuration variables (used
258 for accessing the archive and dgit-repos) used are
259 .BR dgit-distro. \fIdistro\fR .* .
260
261 If your suite is part of a distro that dgit already knows about, you
262 can use this option to make dgit work even if your dgit doesn't know
263 about the suite.  For example, specifying
264 .B -ddebian
265 will work when the suite is an unknown suite in the Debian archive.
266
267 To define a new distro it is necessary to define methods and URLs
268 for fetching (and, for dgit push, altering) a variety of information both
269 in the archive and in dgit-repos.  How to do this is not yet
270 documented, and currently the arrangements are unpleasant.  See
271 BUGS.
272 .TP
273 .BI -C changesfile
274 Specifies the .changes file which is to be uploaded.  By default
275 dgit push looks for single .changes file in the parent directory whose
276 filename suggests it is for the right package and version - or,
277 if there is a _multi.changes file, dgit uses that.
278 .TP
279 .BI --existing-package= package
280 dgit push needs to canonicalise the suite name.  But currently
281 there is no way to ask the archive to do this without knowing the
282 name of an existing package.  Without --new we can just use the
283 package we are trying to push.  But with --new that will not work, so
284 we guess
285 .B dpkg
286 or use the value of this option.
287 .TP
288 .BR -h | --help
289 Print a usage summary.
290 .SH WORKFLOW - SIMPLE
291 It is always possible with dgit to clone or fetch a package, make
292 changes in git (using git-commit) on the suite branch
293 .RB ( "git checkout dgit/" \fIsuite\fR)
294 and then dgit push.  You can use whatever gitish techniques you like
295 to construct the commit to push; the only requirement is that it is a
296 descendant of the state of the archive, as provided by dgit in the
297 remote tracking branch
298 .BR remotes/dgit/dgit/ \fIsuite\fR.
299
300 If you are lucky the other uploaders have also used dgit and
301 integrated the other relevant git history; if not you can fetch it
302 into your tree and cherry-pick etc. as you wish.
303 .SH WORKFLOW - INTEGRATING BETWEEN DGIT AND OTHER GIT HISTORY
304 If you are the maintainer of a package dealing with uploads made
305 without dgit, you will probably want to merge the synthetic commits
306 (made by dgit to represent the uploads) into your git history.
307 Normally you can just merge the dgit branch into your own master, or
308 indeed if you do your work on the dgit local suite branch
309 .BI dgit/ suite
310 you can just use dgit pull.
311
312 However the first time dgit is used it will generate a new origin
313 commit from the archive which won't be linked into the rest of your
314 git history.  You will need to merge this.
315
316 If last upload was in fact made with git, you should usually proceed
317 as follows: identify the commit which was actually used to build the
318 package.  (Hopefully you have a tag for this.)  Check out the dgit
319 branch
320 .RB ( "git checkout dgit/" \fIsuite\fR)
321 and merge that other commit
322 .RB ( "git merge debian/" \fIversion\fR).
323 Hopefully this merge will be trivial because the two trees should
324 be the same.  The resulting branch head can be merged into your
325 working branches
326 .RB ( "git checkout master && git merge dgit/" \fIsuite\fR).
327
328 If last upload was not made with git, a different approach is required
329 to start using dgit.  First, do
330 .B dgit fetch
331 (or clone) to obtain a git history representation of what's in the
332 archive and record it in the
333 .BI remotes/dgit/dgit/ suite
334 tracking branch.  Then somehow, using your other git history
335 plus appropriate diffs and cherry picks from the dgit remote tracking
336 branch, construct a git commit whose tree corresponds to the tree to use for the
337 next upload.  If that commit-to-be-uploaded is not a descendant of the
338 dig remote tracking branch, check it out and say
339 .BR "git merge -s ours remotes/dgit/dgit/" \fIsuite\fR;
340 that tells git that we are deliberately throwing away any differences
341 between what's in the archive and what you intend to upload.
342 Then run
343 .BR "dgit push"
344 to actually upload the result.
345 .SH MODEL
346 You may use any suitable git workflow with dgit, provided you
347 satisfy dgit's requirements:
348
349 dgit maintains a pseudo-remote called
350 .BR dgit ,
351 with one branch per suite.  This remote cannot be used with
352 plain git.
353
354 The
355 .B dgit-repos
356 repository for each package contains one ref per suite named
357 \fBrefs/dgit/\fR\fIsuite\fR.  These should be pushed to only by
358 dgit.  They are fast forwarding.  Each push on this branch
359 corresponds to an upload (or attempted upload).
360
361 However, it is perfectly fine to have other branches in dgit-repos;
362 normally the dgit-repos repo for the package will be accessible via
363 the remote name `origin'.
364
365 dgit push will also (by default) make signed tags called
366 .BI debian/ version
367 and push them to dgit-repos, but nothing depends on these tags
368 existing.
369
370 dgit push can operate on any commit which is a descendant of the
371 current dgit/suite tip in dgit-repos.
372
373 Uploads made by dgit contain an additional field
374 .B Dgit
375 in the source package .dsc.  (This is added by dgit push.)
376 This specifies a commit (an ancestor of the dgit/suite
377 branch) whose tree is identical to the unpacked source upload.
378
379 Uploads not made by dgit are represented in git by commits which are
380 synthesised by dgit.  The tree of each such commit corresponds to the
381 unpacked source; there is an origin commit with the contents, and a
382 psuedo-merge from last known upload - that is, from the contents of
383 the dgit/suite branch.
384
385 dgit expects repos that it works with to have a
386 .B dgit
387 remote.  This refers to the well-known dgit-repos location
388 (currently, the dgit-repos project on Alioth).  dgit fetch updates
389 the remote tracking branch for dgit/suite.
390
391 dgit does not (currently) represent the orig tarball(s) in git; nor
392 does it represent the patch statck of a `3.0 (quilt)' package.  The
393 orig tarballs are downloaded and kept in the parent directory, as with
394 a traditional (non-gitish) dpkg-source workflow.
395
396 To a user looking at the archive, changes pushed using dgit look like
397 changes made in an NMU: in a `3.0 (quilt)' package the delta from the
398 previous upload is recorded in a new patch constructed by dpkg-source.
399 .SH PACKAGE SOURCE FORMATS
400 If you are not the maintainer, you do not need to worry about the
401 source format of the package.  You can just make changes as you like
402 in git.  If the package is a `3.0 (quilt)' package, the patch stack
403 will usually not be represented in the git history.
404
405 If you are the maintainer of a non-native package, you currently have
406 two sensible options:
407
408 Firstly, you can regard your git history as primary, and the archive
409 as an export format.  For example, you could maintain topic branches
410 in git and a fast-forwarding release branch; or you could do your work
411 directly in a merging way on the
412 .BI dgit/ suite
413 branches.  If you do this you should probably use a `1.0' format
414 source package if you can.  In the archive, the delta between upstream
415 will be represented in the single Debian patch.
416
417 Secondly, you can use `3.0 (quilt)', and regard your quiltish patch
418 stack in the archive as primary.  You will have to use other tools
419 besides dgit to import and export this patch stack.  But see below:
420 .SH FORMAT 3.0 (QUILT)
421 For a format `3.0 (quilt)' source package, dgit may have to make a
422 commit on your current branch to contain metadata used by quilt and
423 dpkg-source.
424
425 This is because (i) the `3.0 (quilt)' source format cannot represent
426 certain trees, and (ii) packing up a tree in `3.0 (quilt)' and then
427 unpacking it does not always yield the same tree.  Instead,
428 dpkg-source insists on the trees having extra quilty metadata and
429 patch files in the debian/ and .pc/ directories, which dpkg-source
430 sometimes modifies.
431
432 dgit will automatically work around this braindamage for you when
433 building and pushing.  The only thing you need to know is that dgit
434 build, sbuild, etc., may make a new commit on your HEAD.  If you're
435 not a quilt user this commit won't contain any changes to files you
436 care about.
437
438 You can explicitly request that dgit do just this fixup, by running
439 dgit quilt-fixup.
440
441 We recommend against the use of `3.0 (quilt)'.
442 .SH CONFIGURATION
443 dgit looks at the following git config keys to control its behaviour.
444 You may set them with git-config (either in system-global or per-tree
445 configuration), or provide
446 .BI -c key = value
447 on the dgit command line.
448 .TP
449 .BI dgit-suite. suite .distro
450 .TP
451 .BI dgit.default.distro
452 .TP
453 .BI dgit-distro. distro .username
454 .TP
455 .BI dgit-distro. distro .git-url
456 .TP
457 .BI dgit-distro. distro .git-user
458 .TP
459 .BI dgit-distro. distro .git-host
460 .TP
461 .BI dgit-distro. distro .git-proto
462 .TP
463 .BI dgit-distro. distro .git-path
464 .TP
465 .BI dgit-distro. distro .git-check
466 .TP
467 .BI dgit-distro. distro .git-create
468 .TP
469 .BI dgit-distro. distro .upload-host
470 .TP
471 .BI dgit-distro. distro .mirror
472 .TP
473 .BI dgit-distro. distro .archive-query
474 .TP
475 .BI dgit-distro. distro .archive-query-default-component
476 .TP
477 .BI dgit-distro. distro .sshdakls-user
478 .TP
479 .BI dgit-distro. distro .sshdakls-host
480 .TP
481 .BI dgit-distro. distro .sshdakls-dir
482 .TP
483 .BI dgit-distro. distro .ssh
484 .TP
485 .BI dgit-distro. distro .keyid
486 .TP
487 .BR dgit.default. *
488 for each
489 .BR dgit-distro. \fIdistro\fR . *
490 .SH BUGS
491 We should be using some kind of vhost/vpath setup for the git repos on
492 alioth, so that they can be moved later if and when this turns out to
493 be a good idea.
494
495 Debian Policy needs to be updated to describe the new Dgit .dsc
496 field (and to specify that it is an RC bug for that field to refer
497 to an unavailable commit).
498
499 The method of canonicalising suite names is bizarre.  See the
500 .B --existing-package
501 option for one of the implications.
502
503 dgit push should perhaps do `git push origin', or something similar,
504 by default.
505
506 Debian does not have a working rmadison server, so to find out what
507 version of a package is in the archive, or to canonicalise suite
508 names, we ssh directly into the ftpmaster server.
509
510 The mechanism for checking for and creating per-package repos on
511 alioth is a hideous bodge.  One consequence is that dgit currently
512 only works for people with push access.
513
514 Debian Maintainers are currently not able to push, as there is not
515 currently any mechanism for determining and honouring the archive's
516 ideas about access control.  Currently only DDs can push.
517
518 dgit's representation of format `3.0 (quilt)' source packages does not
519 represent the patch stack.  Currently the patch series representation
520 cannot round trip through the archive.  Ideally dgit would represent a
521 quilty package with an origin commit of some kind followed by the
522 patch stack as a series of commits followed by a pseudo-merge (to make
523 the branch fast-forwarding).  This would also mean a new `dgit
524 rebase-prep' command or some such to turn such a fast-forwarding
525 branch back into a rebasing patch stack, and a `force' option to dgit
526 push (perhaps enabled automatically by a note left by rebase-prep)
527 which will make the required pseudo-merge.
528
529 If the dgit push fails halfway through, it should be restartable and
530 idempotent.  However this is not true for the git tag operation.
531 Also, it would be good to check that the proposed signing key is
532 available before starting work.
533
534 dgit's handling of .orig.tar.gz is not very sophisticated.  Ideally
535 the .orig.tar.gz could be transported via the git repo as git tags.
536 Doing this is made more complicated by the possibility of a `3.0
537 (quilt)' package with multiple .orig tarballs.
538
539 dgit's build functions, and dgit push, should not make any changes to
540 your current HEAD.  Sadly this is necessary for packages in the `3.0
541 (quilt)' source format.  This is ultimately due to design problems in
542 quilt and dpkg-source.
543
544 There should be an option which arranges for the `3.0 (quilt)'
545 autocommit to not appear on your HEAD, but instead only in the
546 remote tracking suite branch.
547
548 There should at the very least be some advice in the manpage about how
549 to use dgit when the signing key is not available on the same machine
550 as the build host.
551
552 The option parser requires values to be cuddled to the option name.
553
554 dgit assumes knowledge of the archive layout.  There appears to be no
555 sane way to find the path in the archive pool of the .dsc for a
556 particular suite.  I'm assured that the archive layout is a
557 `well known algorithm' by now.
558
559 --dry-run does not always work properly, as not doing some of the git
560 fetches may result in subsequent actions being different.  Doing a
561 non-dry-run dgit fetch first will help.
562 .SH SEE ALSO
563 \fBdget\fP(1),
564 \fBdput\fP(1),
565 \fBdebsign\fP(1),
566 \fBgit-config\fP(1),
567 \fBgit-buildpackage\fP(1),
568 \fBdpkg-buildpackage\fP(1),
569 .br
570 https://wiki.debian.org/Alioth