chiark / gitweb /
f949d074a764012754788ef728b4059f83ef14fe
[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]
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
16 [\fIgit\-buildpackage\-opts\fP|\fIdpkg\-buildpackage\-opts\fp]
17 .br
18 .B dgit
19 [\fIdgit\-opts\fP] \fBpush\fP [\fIdgit\-opts\fP]
20 [\fIsuite\fP]
21 .SH DESCRIPTION
22 .B dgit
23 treats the Debian archive as a version control system, and
24 bidirectionally gateways between the archive and git.  The git view of
25 the package can contain the usual upstream git history, and will be
26 augmented by commits representing uploads done by other developers not
27 using dgit.  This git history is stored in a canonical location known
28 as
29 .B dgit-repos
30 which lives outside the Debian archive (currently, on Alioth).
31
32 .B dgit clone
33 and
34 .B dgit fetch
35 consult the archive and dgit-repos and fetch and/or construct the
36 git view of the history.  With clone, the destination directory (by
37 default, the package name in the current directory) will be created,
38 and the new directory's `origin' remote will be set up to point to
39 the package's dgit-repos tree.
40
41 .B dgit build
42 runs
43 .B git-buildpackage
44 with some suitable options.  Options after
45 .B build
46 will be passed on to git-buildpackage.  It is not necessary to
47 use dgit build; it is OK to use any approach which ensures that
48 the generated source package corresponds to the relevant git commit.
49 Tagging and signing should be left to dgit push.
50
51 .B dgit push
52 does an `upload', pushing the current HEAD to the archive (as a source
53 package) and to dgit-repos (as git commits).  This also involves
54 making a signed git tag, and signing the files to be uploaded to the
55 archive.
56 .SH MODEL AND WORKFLOW
57 You may use any suitable git workflow with dgit, provided you
58 satisfy dgit's requirements:
59
60 dgit maintains a pseudo-remote called
61 .BR dgit ,
62 with one branch per suite.  This remote cannot be used with
63 plain git.
64
65 The
66 .B dgit-repos
67 repository for each package contains one ref per suite named
68 \fBrefs/dgit/\fR\fIsuite\fR.  These should be pushed to only by
69 dgit.  They are fast forwarding.  Each push on this branch
70 corresponds to an upload (or attempted upload).
71
72 However, it is perfectly fine to have other branches in dgit-repos;
73 normally the dgit-repos repo for the package will be accessible via
74 the remote name `origin'.
75
76 dgit push can operate on any commit which is a descendant of the
77 current dgit/suite tip in dgit-repos.
78
79 Uploads made by dgit contain an additional field
80 .B Vcs-Dgit-Master
81 in the source package .dsc.  (This is added by dgit push.)
82 This specifies a commit (an ancestor of the dgit/suite
83 branch) whose tree is identical to the unpacked source upload.
84
85 Uploads not made by dgit are represented in git by commits which are
86 synthesised by dgit.  The tree of each such commit corresponds to the
87 unpacked source; the single parent is the last known upload - that is,
88 the contents of the dgit/suite branch.
89
90 dgit expects repos that it works with to have a
91 .B dgit
92 remote.  This refers to the well-known dgit-repos location
93 (currently, the dgit-repos project on Alioth).  dgit fetch updates
94 the remote tracking branch for dgit/suite.
95 .SH OPTIONS
96 .TP
97 .BR --dry-run | -n
98 Go through the motions, fetching all information needed, but do not
99 actually update the output(s).  For push, dgit does
100 the required checks and leaves the new .dsc in a temporary file,
101 but does not sign, tag, push or upload.
102 .TP
103 .BI -k keyid
104 Use
105 .I keyid
106 for signing the tag and the upload.
107 .TP
108 .BR --no-sign
109 does not sign tags or uploads (meaningful only with push).
110 .TP
111 .TP
112 .BI -p package
113 Specifies that we should process source package
114 .I package
115 rather than looking in debian/control or debian/changelog.
116 Valid with dgit fetch and dgit pull, only.
117 .TP
118 .BI -D
119 Prints debugging information to stderr.  Repeating the option produces
120 more output (currently, up to -DD is meaningfully different).
121 .TP
122 .BI -c name = value
123 Specifies a git configuration option.  dgit itself is also controlled
124 by git configuration options.
125 .TP
126 .RI \fB--dget=\fR program |\fB--dput=\fR program |\fB--debsign=\fR program
127 Specifies alternative programs to use instead of dget, dput
128 or debsign.
129 .TP
130 .RI \fB--dget:\fR option |\fB--dput:\fR option |\fB--debsign:\fR option
131 Specifies a single additional option to pass to dget, dput or
132 debsign.  Use repeatedly if multiple additional options are required.
133 .TP
134 .BI -C changesfile
135 Specifies the .changes file which is to be uploaded.  By default
136 dgit push looks for single .changes file in the parent directory whose
137 filename suggests it is for the right package and version.
138 .SH CONFIGURATION
139 dgit looks at the following git config keys to control its behaviour.
140 You may set them with git-config (either in system-global or per-tree
141 configuration), or provide
142 .BI -c key = value
143 on the dgit command line.
144 .TP
145 .BI dgit-suite. suite .distro
146 .TP
147 .BI dgit.default.distro
148 .TP
149 .BI dgit.default.username
150 .TP
151 .BI dgit-distro. distro .git-url
152 .TP
153 .BI dgit-distro. distro .git-host
154 .TP
155 .BI dgit-distro. distro .git-proto
156 .TP
157 .BI dgit-distro. distro .git-path
158 .TP
159 .BI dgit-distro. distro .git-check
160 .TP
161 .BI dgit-distro. distro .git-create
162 .TP
163 .BI dgit-distro. distro .upload-host
164 .TP
165 .BI dgit-distro. distro .mirror
166 .TP
167 .BI dgit-distro. distro .archive-query
168 .TP
169 .BI dgit-distro. distro .ssh
170 .TP
171 .BR dgit.default. *
172 for each
173 .BR dgit-distro. \fIdistro\fR . *
174 .SH BUGS
175 dgit will only work with packages in main. The madison http query API
176 does not give the component.
177
178 dgit assumes knowledge of the archive layout.  There appears to be no
179 sane way to find the path in the archive pool of the .dsc for a
180 particular suite.
181
182 We should be using some kind of vhost/vpath setup for the git repos on
183 alioth, so that they can be moved later if and when this turns out to
184 be a good idea.
185
186 Debian Policy needs to be updated to describe the new Vcs-Dgit-Master
187 field (and to specify that it is an RC bug for that field to refer
188 to an unavailable commit).
189
190 dgit cannot currently introduce a package into a suite.
191
192 dgit push should perhaps do `git push origin', or something similar,
193 by default.
194
195 The mechanism for checking for and creating per-package repos on
196 alioth is a hideous bodge.  One consequence is that dgit currently
197 only works for people with push access.
198
199 Debian Maintainers are currently not able to push, as there is not
200 currently any mechanism for determining and honouring the archive's
201 ideas about access control.  Currently only DDs can push.
202
203 dgit's representation of format `3.0 (quilt)' source packages does not
204 represent the patch stack.  Currently the patch series representation
205 cannot round trip through the archive.  Ideally dgit would represent a
206 quilty package with an origin commit of some kind followed by the
207 patch stack as a series of commits followed by a pseudo-merge (to make
208 the branch fast-forwarding).  This would also mean a new `dgit
209 rebase-prep' command or some such to turn such a fast-forwarding
210 branch back into a rebasing patch stack, and a `force' option to dgit
211 push (perhaps enabled automatically by a note left by rebase-prep)
212 which will make the required pseudo-merge.
213
214 dgit's handling of .orig.tar.gz is not very sophisticated.  Ideally
215 the .orig.tar.gz could be transported via the git repo as git tags.
216 Doing this is made more complicated by the possibility of a `3.0
217 (quilt)' package with multiple .orig tarballs.
218
219 The error messages are often unhelpfully terse and tend to refer to
220 line numbers in dgit.
221
222 The option parser requires values to be cuddled to the option name.
223
224 --dry-run often does not work with fetch, even though this is a
225 logically plausible request.  (It fails, instead.)