]> asedeno.scripts.mit.edu Git - git.git/blob - Documentation/SubmittingPatches
Merge git://git.kernel.org/pub/scm/gitk/gitk
[git.git] / Documentation / SubmittingPatches
1 I started reading over the SubmittingPatches document for Linux
2 kernel, primarily because I wanted to have a document similar to
3 it for the core GIT to make sure people understand what they are
4 doing when they write "Signed-off-by" line.
5
6 But the patch submission requirements are a lot more relaxed
7 here on the technical/contents front, because the core GIT is
8 thousand times smaller ;-).  So here is only the relevant bits.
9
10
11 (1) Make separate commits for logically separate changes.
12
13 Unless your patch is really trivial, you should not be sending
14 out a patch that was generated between your working tree and
15 your commit head.  Instead, always make a commit with complete
16 commit message and generate a series of patches from your
17 repository.  It is a good discipline.
18
19 Describe the technical detail of the change(s).
20
21 If your description starts to get too long, that's a sign that you
22 probably need to split up your commit to finer grained pieces.
23
24 Oh, another thing.  I am picky about whitespaces.  Make sure your
25 changes do not trigger errors with the sample pre-commit hook shipped
26 in templates/hooks--pre-commit.
27
28
29 (2) Generate your patch using git tools out of your commits.
30
31 git based diff tools (git, Cogito, and StGIT included) generate
32 unidiff which is the preferred format.
33
34 You do not have to be afraid to use -M option to "git diff" or
35 "git format-patch", if your patch involves file renames.  The
36 receiving end can handle them just fine.
37
38 Please make sure your patch does not include any extra files
39 which do not belong in a patch submission.  Make sure to review
40 your patch after generating it, to ensure accuracy.  Before
41 sending out, please make sure it cleanly applies to the "master"
42 branch head.  If you are preparing a work based on "next" branch,
43 that is fine, but please mark it as such.
44
45
46 (3) Sending your patches.
47
48 People on the git mailing list need to be able to read and
49 comment on the changes you are submitting.  It is important for
50 a developer to be able to "quote" your changes, using standard
51 e-mail tools, so that they may comment on specific portions of
52 your code.  For this reason, all patches should be submitted
53 "inline".  WARNING: Be wary of your MUAs word-wrap
54 corrupting your patch.  Do not cut-n-paste your patch; you can
55 lose tabs that way if you are not careful.
56
57 It is a common convention to prefix your subject line with
58 [PATCH].  This lets people easily distinguish patches from other
59 e-mail discussions.
60
61 "git format-patch" command follows the best current practice to
62 format the body of an e-mail message.  At the beginning of the
63 patch should come your commit message, ending with the
64 Signed-off-by: lines, and a line that consists of three dashes,
65 followed by the diffstat information and the patch itself.  If
66 you are forwarding a patch from somebody else, optionally, at
67 the beginning of the e-mail message just before the commit
68 message starts, you can put a "From: " line to name that person.
69
70 You often want to add additional explanation about the patch,
71 other than the commit message itself.  Place such "cover letter"
72 material between the three dash lines and the diffstat.
73
74 Do not attach the patch as a MIME attachment, compressed or not.
75 Do not let your e-mail client send quoted-printable.  Many
76 popular e-mail applications will not always transmit a MIME
77 attachment as plain text, making it impossible to comment on
78 your code.  A MIME attachment also takes a bit more time to
79 process.  This does not decrease the likelihood of your
80 MIME-attached change being accepted, but it makes it more likely
81 that it will be postponed.
82
83 Exception:  If your mailer is mangling patches then someone may ask
84 you to re-send them using MIME, that is OK.
85
86 Do not PGP sign your patch, at least for now.  Most likely, your
87 maintainer or other people on the list would not have your PGP
88 key and would not bother obtaining it anyway.  Your patch is not
89 judged by who you are; a good patch from an unknown origin has a
90 far better chance of being accepted than a patch from a known,
91 respected origin that is done poorly or does incorrect things.
92
93 If you really really really really want to do a PGP signed
94 patch, format it as "multipart/signed", not a text/plain message
95 that starts with '-----BEGIN PGP SIGNED MESSAGE-----'.  That is
96 not a text/plain, it's something else.
97
98 Note that your maintainer does not necessarily read everything
99 on the git mailing list.  If your patch is for discussion first,
100 send it "To:" the mailing list, and optionally "cc:" him.  If it
101 is trivially correct or after the list reached a consensus, send
102 it "To:" the maintainer and optionally "cc:" the list.
103
104 Also note that your maintainer does not actively involve himself in
105 maintaining what are in contrib/ hierarchy.  When you send fixes and
106 enhancements to them, do not forget to "cc: " the person who primarily
107 worked on that hierarchy in contrib/.
108
109
110 (4) Sign your work
111
112 To improve tracking of who did what, we've borrowed the
113 "sign-off" procedure from the Linux kernel project on patches
114 that are being emailed around.  Although core GIT is a lot
115 smaller project it is a good discipline to follow it.
116
117 The sign-off is a simple line at the end of the explanation for
118 the patch, which certifies that you wrote it or otherwise have
119 the right to pass it on as a open-source patch.  The rules are
120 pretty simple: if you can certify the below:
121
122         Developer's Certificate of Origin 1.1
123
124         By making a contribution to this project, I certify that:
125
126         (a) The contribution was created in whole or in part by me and I
127             have the right to submit it under the open source license
128             indicated in the file; or
129
130         (b) The contribution is based upon previous work that, to the best
131             of my knowledge, is covered under an appropriate open source
132             license and I have the right under that license to submit that
133             work with modifications, whether created in whole or in part
134             by me, under the same open source license (unless I am
135             permitted to submit under a different license), as indicated
136             in the file; or
137
138         (c) The contribution was provided directly to me by some other
139             person who certified (a), (b) or (c) and I have not modified
140             it.
141
142         (d) I understand and agree that this project and the contribution
143             are public and that a record of the contribution (including all
144             personal information I submit with it, including my sign-off) is
145             maintained indefinitely and may be redistributed consistent with
146             this project or the open source license(s) involved.
147
148 then you just add a line saying
149
150         Signed-off-by: Random J Developer <random@developer.example.org>
151
152 This line can be automatically added by git if you run the git-commit
153 command with the -s option.
154
155 Some people also put extra tags at the end.  They'll just be ignored for
156 now, but you can do this to mark internal company procedures or just
157 point out some special detail about the sign-off.
158
159
160 ------------------------------------------------
161 MUA specific hints
162
163 Some of patches I receive or pick up from the list share common
164 patterns of breakage.  Please make sure your MUA is set up
165 properly not to corrupt whitespaces.  Here are two common ones
166 I have seen:
167
168 * Empty context lines that do not have _any_ whitespace.
169
170 * Non empty context lines that have one extra whitespace at the
171   beginning.
172
173 One test you could do yourself if your MUA is set up correctly is:
174
175 * Send the patch to yourself, exactly the way you would, except
176   To: and Cc: lines, which would not contain the list and
177   maintainer address.
178
179 * Save that patch to a file in UNIX mailbox format.  Call it say
180   a.patch.
181
182 * Try to apply to the tip of the "master" branch from the
183   git.git public repository:
184
185     $ git fetch http://kernel.org/pub/scm/git/git.git master:test-apply
186     $ git checkout test-apply
187     $ git reset --hard
188     $ git applymbox a.patch
189
190 If it does not apply correctly, there can be various reasons.
191
192 * Your patch itself does not apply cleanly.  That is _bad_ but
193   does not have much to do with your MUA.  Please rebase the
194   patch appropriately.
195
196 * Your MUA corrupted your patch; applymbox would complain that
197   the patch does not apply.  Look at .dotest/ subdirectory and
198   see what 'patch' file contains and check for the common
199   corruption patterns mentioned above.
200
201 * While you are at it, check what are in 'info' and
202   'final-commit' files as well.  If what is in 'final-commit' is
203   not exactly what you would want to see in the commit log
204   message, it is very likely that your maintainer would end up
205   hand editing the log message when he applies your patch.
206   Things like "Hi, this is my first patch.\n", if you really
207   want to put in the patch e-mail, should come after the
208   three-dash line that signals the end of the commit message.
209
210
211 Pine
212 ----
213
214 (Johannes Schindelin)
215
216 I don't know how many people still use pine, but for those poor
217 souls it may be good to mention that the quell-flowed-text is
218 needed for recent versions.
219
220 ... the "no-strip-whitespace-before-send" option, too. AFAIK it
221 was introduced in 4.60.
222
223 (Linus Torvalds)
224
225 And 4.58 needs at least this.
226
227 ---
228 diff-tree 8326dd8350be64ac7fc805f6563a1d61ad10d32c (from e886a61f76edf5410573e92e38ce22974f9c40f1)
229 Author: Linus Torvalds <torvalds@g5.osdl.org>
230 Date:   Mon Aug 15 17:23:51 2005 -0700
231
232     Fix pine whitespace-corruption bug
233
234     There's no excuse for unconditionally removing whitespace from
235     the pico buffers on close.
236
237 diff --git a/pico/pico.c b/pico/pico.c
238 --- a/pico/pico.c
239 +++ b/pico/pico.c
240 @@ -219,7 +219,9 @@ PICO *pm;
241             switch(pico_all_done){      /* prepare for/handle final events */
242               case COMP_EXIT :          /* already confirmed */
243                 packheader();
244 +#if 0
245                 stripwhitespace();
246 +#endif
247                 c |= COMP_EXIT;
248                 break;
249  
250
251 (Daniel Barkalow)
252
253 > A patch to SubmittingPatches, MUA specific help section for
254 > users of Pine 4.63 would be very much appreciated.
255
256 Ah, it looks like a recent version changed the default behavior to do the
257 right thing, and inverted the sense of the configuration option. (Either
258 that or Gentoo did it.) So you need to set the
259 "no-strip-whitespace-before-send" option, unless the option you have is
260 "strip-whitespace-before-send", in which case you should avoid checking
261 it.
262
263
264 Thunderbird
265 -----------
266
267 (A Large Angry SCM)
268
269 Here are some hints on how to successfully submit patches inline using
270 Thunderbird.
271
272 This recipe appears to work with the current [*1*] Thunderbird from Suse.
273
274 The following Thunderbird extensions are needed:
275         AboutConfig 0.5
276                 http://aboutconfig.mozdev.org/
277         External Editor 0.7.2
278                 http://globs.org/articles.php?lng=en&pg=8
279
280 1) Prepare the patch as a text file using your method of choice.
281
282 2) Before opening a compose window, use Edit->Account Settings to
283 uncheck the "Compose messages in HTML format" setting in the
284 "Composition & Addressing" panel of the account to be used to send the
285 patch. [*2*]
286
287 3) In the main Thunderbird window, _before_ you open the compose window
288 for the patch, use Tools->about:config to set the following to the
289 indicated values:
290         mailnews.send_plaintext_flowed  => false
291         mailnews.wraplength             => 0
292
293 4) Open a compose window and click the external editor icon.
294
295 5) In the external editor window, read in the patch file and exit the
296 editor normally.
297
298 6) Back in the compose window: Add whatever other text you wish to the
299 message, complete the addressing and subject fields, and press send.
300
301 7) Optionally, undo the about:config/account settings changes made in
302 steps 2 & 3.
303
304
305 [Footnotes]
306 *1* Version 1.0 (20041207) from the MozillaThunderbird-1.0-5 rpm of Suse
307 9.3 professional updates.
308
309 *2* It may be possible to do this with about:config and the following
310 settings but I haven't tried, yet.
311         mail.html_compose                       => false
312         mail.identity.default.compose_html      => false
313         mail.identity.id?.compose_html          => false
314