chiark / gitweb /
git-debpush(1): Tweak AUTHOR section
[dgit.git] / git-debpush.1.pod
1 =head1 NAME
2
3 git-debpush - create & push a git tag with metadata for an ftp-master upload
4
5 =head1 SYNOPSIS
6
7 B<git debpush> [I<option>...]
8
9 =head1 DESCRIPTION
10
11 B<git-debpush> is a wrapper around git-tag(1) and git-push(1).  It
12 helps you create and push a specially formatted signed tag which
13 indicates that the tagged commit should be pushed (or "uploaded") to a
14 Debian-style archive.
15
16 Typically, your git server will be configured to notify an
17 intermediary service of the new tag that you pushed.  That service
18 will then fetch your tag, check your PGP signature, do any conversion
19 that's needed (such as producing and signing a B<.dsc> and
20 B<.changes>), and upload the result to the Debian-style archive.
21
22 B<git-debpush> is only for source-only uploads.
23
24 =head1 TYPICAL USAGE
25
26 B<git-debpush> is designed such that for regular uploads of your
27 package, you should be able to just invoke it without passing any
28 command line arguments.  After you've built and tested some .debs, run
29 dch(1) to finalise your changelog and committed the result, just type
30 "git debpush", and the intermediary service and your distribution's
31 autobuilder network will take care of the rest.
32
33 The most common exception to this is the first time you use
34 B<git-debpush> for a non-native package.  You will need to pass a
35 quilt mode option to inform the intermediary service which git branch
36 format you are using, for example
37
38 =over 4
39
40     % git debpush --gbp
41
42 =back
43
44 if you are using the git branch format typically used with gbp(1).
45 See "QUILT MODE OPTIONS", below, for the available quilt mode options.
46
47 Aside from a few sanity checks to help avoid broken uploads,
48 B<git-debpush> does not do anything with the information provided by
49 the quilt mode option.  It simply embeds the corresponding quilt mode
50 in its generated tag, for use by the intermediary service.
51
52 Future invocations of B<git-debpush> will try to read the quilt mode
53 out of the tag generated by B<git-debpush> for your previous upload.
54 You can override that on the command line by passing a quilt mode
55 option, which always takes precedence.
56
57 =head1 SETUP FOR SOURCE FORMAT 1.0
58
59 B<git-debpush> needs to tell the intermediary git service whether this
60 is a native or non-native package.  Given historical Debian practices,
61 it is not sufficient for either B<git-debpush> or the intermediary
62 service to rely on the version number in debian/changelog.
63
64 If you are using one of the 3.0 source package formats, B<git-debpush>
65 will just look in debian/source/format to determine whether the
66 package is native or non-native, and you can ignore this section of
67 the manpage.
68
69 If you are using the 1.0 source package format -- either
70 debian/source/format does not exist, or contains the string "1.0" --
71 then B<git-debpush> must be told whether the package is native or
72 non-native.  We do this using debian/source/options.  If your package
73 is non-native, execute
74
75 =over 4
76
77     % echo "-sn" >>debian/source/options
78
79 =back
80
81 If your package is native, execute
82
83 =over 4
84
85     % echo "-sk" >>debian/source/options
86
87 =back
88
89 (With source format 1.0, dpkg-source(1) decides whether the package is
90 native or non-native based on the presence of absence of an orig.tar
91 in B<..>, but B<git-debpush> is a pure git tool that never looks at
92 tarballs.)
93
94 =head1 QUILT MODE OPTIONS
95
96 =over 4
97
98 =item B<--quilt=gbp>|B<--gbp>
99
100 You are using the 'unapplied' branch format, typically used with
101 gbp(1).
102
103 =item B<--quilt=dpm>|B<--dpm>
104
105 You are using git-dpm(1)'s branch format.
106
107 =item B<--quilt=baredebian[+git]>|B<--baredebian[+git]>
108
109 You are using the 'bare debian' branch format, with the upstream
110 source in the form of an upstream tag.
111
112 =item B<--quilt=linear>
113
114 You are using the 'manually maintained applied' branch format or
115 similar, and each commit touching the upstream source not already
116 represented in debian/patches should be added as a new patch.
117
118 =item B<--quilt=smash>
119
120 You are using the 'manually maintained applied' branch format or
121 similar, and you want all changes to the upstream source to be
122 squashed into a single patch in debian/patches.
123
124 =item B<--quilt=auto>
125
126 Tell the intermediary service to try B<--quilt=linear>, and if that
127 cannot succeed, fall back to B<--quilt=smash>.
128
129 =item B<--quilt=nofix>
130
131 You are using the 'manually maintained applied' branch format or
132 similar, and you don't want debian/patches to be touched by the
133 intermediary service.
134
135 If all commits touching the upstream source are not already
136 represented in debian/patches, the intermediary service will fail to
137 upload your package.
138
139 =back
140
141 =head1 OTHER OPTIONS
142
143 =over 4
144
145 =item B<--no-push>|B<-n>
146
147 Just tag, don't push.
148
149 =item B<--force>|B<-f>
150
151 Don't perform checks designed to prevent broken uploads.
152
153 =item B<-u> I<keyid>
154
155 Passed on to git-tag(1).
156
157 =item B<--branch=>I<BRANCH>
158
159 Where to place the tag, i.e., what you want to release.  If
160 unspecified, we put the tag on whatever HEAD points to.
161
162 Note that this need not actually be a branch, but any committish (see
163 gitglossary(7)).  The option name is chosen to fit what is by far the
164 most common case.
165
166 =item B<--upstream=>I<TAG>
167
168 When pushing a non-native package,
169 B<git-debpush> needs a tag for the upstream part of your package.
170
171 By default B<git-debpush> asks git-deborig(1),
172 which searches for a suitable tag
173 based on the upstream version in debian/changelog.
174
175 =item B<--remote=>I<REMOTE>
176
177 Where to push tags and branches.  If unspecified, use the remote which
178 git would use if you typed "git push BRANCH".
179
180 =item B<--distro=>I<DISTRO>
181
182 What distribution name to embed in the signed tag.  Defaults to
183 "debian".
184
185 =back
186
187 =head1 SEE ALSO
188
189 Git branch formats in use by Debian maintainers:
190 <https://wiki.debian.org/GitPackagingSurvey>
191
192 =head1 AUTHOR
193
194 B<git-debpush> and this manpage were written by Sean Whitton
195 <spwhitton@spwhitton.name> with much input from Ian Jackson
196 <ijackson@chiark.greenend.org.uk>.