blob: 7ba9e804d5f861527d50b0011ea4f93c91c4b058 [file] [log] [blame]
Simon Glass0d24de92012-01-14 15:12:45 +00001# Copyright (c) 2011 The Chromium OS Authors.
2#
3# See file CREDITS for list of people who contributed to this
4# project.
5#
6# This program is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License as
8# published by the Free Software Foundation; either version 2 of
9# the License, or (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
Wolfgang Denk2790bf62012-04-21 18:55:26 +020013# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Simon Glass0d24de92012-01-14 15:12:45 +000014# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19# MA 02111-1307 USA
20#
21
22What is this?
23=============
24
25This tool is a Python script which:
26- Creates patch directly from your branch
27- Cleans them up by removing unwanted tags
28- Inserts a cover letter with change lists
29- Runs the patches through checkpatch.pl and its own checks
30- Optionally emails them out to selected people
31
32It is intended to automate patch creation and make it a less
33error-prone process. It is useful for U-Boot and Linux work so far,
34since it uses the checkpatch.pl script.
35
36It is configured almost entirely by tags it finds in your commits.
37This means that you can work on a number of different branches at
38once, and keep the settings with each branch rather than having to
39git format-patch, git send-email, etc. with the correct parameters
40each time. So for example if you put:
41
42Series-to: fred.blogs@napier.co.nz
43
44in one of your commits, the series will be sent there.
45
46
47How to use this tool
48====================
49
50This tool requires a certain way of working:
51
52- Maintain a number of branches, one for each patch series you are
53working on
54- Add tags into the commits within each branch to indicate where the
55series should be sent, cover letter, version, etc. Most of these are
56normally in the top commit so it is easy to change them with 'git
57commit --amend'
58- Each branch tracks the upstream branch, so that this script can
59automatically determine the number of commits in it (optional)
60- Check out a branch, and run this script to create and send out your
61patches. Weeks later, change the patches and repeat, knowing that you
62will get a consistent result each time.
63
64
65How to configure it
66===================
67
68For most cases patman will locate and use the file 'doc/git-mailrc' in
69your U-Boot directory. This contains most of the aliases you will need.
70
71To add your own, create a file ~/.config/patman directory like this:
72
73>>>>
74# patman alias file
75
76[alias]
77me: Simon Glass <sjg@chromium.org>
78
79u-boot: U-Boot Mailing List <u-boot@lists.denx.de>
80wolfgang: Wolfgang Denk <wd@denx.de>
81others: Mike Frysinger <vapier@gentoo.org>, Fred Bloggs <f.bloggs@napier.net>
82
83<<<<
84
85Aliases are recursive.
86
87The checkpatch.pl in the U-Boot tools/ subdirectory will be located and
88used. Failing that you can put it into your path or ~/bin/checkpatch.pl
89
90
91How to run it
92=============
93
94First do a dry run:
95
Vikram Narayanan330a0912012-04-27 06:39:31 +000096$ ./tools/patman/patman -n
Simon Glass0d24de92012-01-14 15:12:45 +000097
98If it can't detect the upstream branch, try telling it how many patches
99there are in your series:
100
Vikram Narayanan330a0912012-04-27 06:39:31 +0000101$ ./tools/patman/patman -n -c5
Simon Glass0d24de92012-01-14 15:12:45 +0000102
103This will create patch files in your current directory and tell you who
104it is thinking of sending them to. Take a look at the patch files.
105
Vikram Narayanan330a0912012-04-27 06:39:31 +0000106$ ./tools/patman/patman -n -c5 -s1
Simon Glass0d24de92012-01-14 15:12:45 +0000107
108Similar to the above, but skip the first commit and take the next 5. This
109is useful if your top commit is for setting up testing.
110
111
112How to add tags
113===============
114
115To make this script useful you must add tags like the following into any
116commit. Most can only appear once in the whole series.
117
118Series-to: email / alias
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200119 Email address / alias to send patch series to (you can add this
120 multiple times)
Simon Glass0d24de92012-01-14 15:12:45 +0000121
122Series-cc: email / alias, ...
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200123 Email address / alias to Cc patch series to (you can add this
124 multiple times)
Simon Glass0d24de92012-01-14 15:12:45 +0000125
126Series-version: n
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200127 Sets the version number of this patch series
Simon Glass0d24de92012-01-14 15:12:45 +0000128
129Series-prefix: prefix
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200130 Sets the subject prefix. Normally empty but it can be RFC for
131 RFC patches, or RESEND if you are being ignored.
Simon Glass0d24de92012-01-14 15:12:45 +0000132
133Cover-letter:
134This is the patch set title
135blah blah
136more blah blah
137END
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200138 Sets the cover letter contents for the series. The first line
139 will become the subject of the cover letter
Simon Glass0d24de92012-01-14 15:12:45 +0000140
141Series-notes:
142blah blah
143blah blah
144more blah blah
145END
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200146 Sets some notes for the patch series, which you don't want in
147 the commit messages, but do want to send, The notes are joined
148 together and put after the cover letter. Can appear multiple
149 times.
Simon Glass0d24de92012-01-14 15:12:45 +0000150
151 Signed-off-by: Their Name <email>
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200152 A sign-off is added automatically to your patches (this is
153 probably a bug). If you put this tag in your patches, it will
154 override the default signoff that patman automatically adds.
Simon Glass0d24de92012-01-14 15:12:45 +0000155
156 Tested-by: Their Name <email>
157 Acked-by: Their Name <email>
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200158 These indicate that someone has acked or tested your patch.
159 When you get this reply on the mailing list, you can add this
160 tag to the relevant commit and the script will include it when
161 you send out the next version. If 'Tested-by:' is set to
162 yourself, it will be removed. No one will believe you.
Simon Glass0d24de92012-01-14 15:12:45 +0000163
164Series-changes: n
165- Guinea pig moved into its cage
166- Other changes ending with a blank line
167<blank line>
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200168 This can appear in any commit. It lists the changes for a
169 particular version n of that commit. The change list is
170 created based on this information. Each commit gets its own
171 change list and also the whole thing is repeated in the cover
172 letter (where duplicate change lines are merged).
Simon Glass0d24de92012-01-14 15:12:45 +0000173
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200174 By adding your change lists into your commits it is easier to
175 keep track of what happened. When you amend a commit, remember
176 to update the log there and then, knowing that the script will
177 do the rest.
Simon Glass0d24de92012-01-14 15:12:45 +0000178
179Cc: Their Name <email>
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200180 This copies a single patch to another email address.
Simon Glass0d24de92012-01-14 15:12:45 +0000181
182Various other tags are silently removed, like these Chrome OS and
183Gerrit tags:
184
185BUG=...
186TEST=...
187Change-Id:
188Review URL:
189Reviewed-on:
190Reviewed-by:
191
192
193Exercise for the reader: Try adding some tags to one of your current
194patch series and see how the patches turn out.
195
196
197Where Patches Are Sent
198======================
199
Vikram Narayanan17132472012-04-25 05:45:05 +0000200Once the patches are created, patman sends them using git send-email. The
Simon Glass0d24de92012-01-14 15:12:45 +0000201whole series is sent to the recipients in Series-to: and Series-cc.
202You can Cc individual patches to other people with the Cc: tag. Tags in the
203subject are also picked up to Cc patches. For example, a commit like this:
204
205>>>>
206commit 10212537b85ff9b6e09c82045127522c0f0db981
207Author: Mike Frysinger <vapier@gentoo.org>
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200208Date: Mon Nov 7 23:18:44 2011 -0500
Simon Glass0d24de92012-01-14 15:12:45 +0000209
210 x86: arm: add a git mailrc file for maintainers
211
212 This should make sending out e-mails to the right people easier.
213
214 Cc: sandbox, mikef, ag
215 Cc: afleming
216<<<<
217
218will create a patch which is copied to x86, arm, sandbox, mikef, ag and
219afleming.
220
221
222Example Work Flow
223=================
224
225The basic workflow is to create your commits, add some tags to the top
226commit, and type 'patman' to check and send them.
227
228Here is an example workflow for a series of 4 patches. Let's say you have
229these rather contrived patches in the following order in branch us-cmd in
230your tree where 'us' means your upstreaming activity (newest to oldest as
231output by git log --oneline):
232
233 7c7909c wip
234 89234f5 Don't include standard parser if hush is used
235 8d640a7 mmc: sparc: Stop using builtin_run_command()
236 0c859a9 Rename run_command2() to run_command()
237 a74443f sandbox: Rename run_command() to builtin_run_command()
238
239The first patch is some test things that enable your code to be compiled,
240but that you don't want to submit because there is an existing patch for it
241on the list. So you can tell patman to create and check some patches
242(skipping the first patch) with:
243
244 patman -s1 -n
245
246If you want to do all of them including the work-in-progress one, then
247(if you are tracking an upstream branch):
248
249 patman -n
250
251Let's say that patman reports an error in the second patch. Then:
252
253 git rebase -i HEAD~6
254 <change 'pick' to 'edit' in 89234f5>
255 <use editor to make code changes>
256 git add -u
257 git rebase --continue
258
259Now you have an updated patch series. To check it:
260
261 patman -s1 -n
262
263Let's say it is now clean and you want to send it. Now you need to set up
264the destination. So amend the top commit with:
265
266 git commit --amend
267
268Use your editor to add some tags, so that the whole commit message is:
269
270 The current run_command() is really only one of the options, with
271 hush providing the other. It really shouldn't be called directly
272 in case the hush parser is bring used, so rename this function to
273 better explain its purpose.
274
275 Series-to: u-boot
276 Series-cc: bfin, marex
277 Series-prefix: RFC
278 Cover-letter:
279 Unified command execution in one place
280
281 At present two parsers have similar code to execute commands. Also
282 cmd_usage() is called all over the place. This series adds a single
283 function which processes commands called cmd_process().
284 END
285
286 Change-Id: Ica71a14c1f0ecb5650f771a32fecb8d2eb9d8a17
287
288
289You want this to be an RFC and Cc the whole series to the bfin alias and
290to Marek. Two of the patches have tags (those are the bits at the front of
291the subject that say mmc: sparc: and sandbox:), so 8d640a7 will be Cc'd to
292mmc and sparc, and the last one to sandbox.
293
294Now to send the patches, take off the -n flag:
295
296 patman -s1
297
298The patches will be created, shown in your editor, and then sent along with
299the cover letter. Note that patman's tags are automatically removed so that
300people on the list don't see your secret info.
301
302Of course patches often attract comments and you need to make some updates.
303Let's say one person sent comments and you get an Acked-by: on one patch.
304Also, the patch on the list that you were waiting for has been merged,
305so you can drop your wip commit. So you resync with upstream:
306
Wolfgang Denk2790bf62012-04-21 18:55:26 +0200307 git fetch origin (or whatever upstream is called)
Simon Glass0d24de92012-01-14 15:12:45 +0000308 git rebase origin/master
309
310and use git rebase -i to edit the commits, dropping the wip one. You add
311the ack tag to one commit:
312
313 Acked-by: Heiko Schocher <hs@denx.de>
314
315update the Series-cc: in the top commit:
316
317 Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
318
319and remove the Series-prefix: tag since it it isn't an RFC any more. The
320series is now version two, so the series info in the top commit looks like
321this:
322
323 Series-to: u-boot
324 Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
325 Series-version: 2
326 Cover-letter:
327 ...
328
329Finally, you need to add a change log to the two commits you changed. You
330add change logs to each individual commit where the changes happened, like
331this:
332
333 Series-changes: 2
334 - Updated the command decoder to reduce code size
335 - Wound the torque propounder up a little more
336
337(note the blank line at the end of the list)
338
339When you run patman it will collect all the change logs from the different
340commits and combine them into the cover letter, if you have one. So finally
341you have a new series of commits:
342
343 faeb973 Don't include standard parser if hush is used
344 1b2f2fe mmc: sparc: Stop using builtin_run_command()
345 cfbe330 Rename run_command2() to run_command()
346 0682677 sandbox: Rename run_command() to builtin_run_command()
347
348so to send them:
349
350 patman
351
352and it will create and send the version 2 series.
353
354General points:
355
3561. When you change back to the us-cmd branch days or weeks later all your
357information is still there, safely stored in the commits. You don't need
358to remember what version you are up to, who you sent the last lot of patches
359to, or anything about the change logs.
360
3612. If you put tags in the subject, patman will Cc the maintainers
362automatically in many cases.
363
3643. If you want to keep the commits from each series you sent so that you can
365compare change and see what you did, you can either create a new branch for
366each version, or just tag the branch before you start changing it:
367
368 git tag sent/us-cmd-rfc
369 ...later...
370 git tag sent/us-cmd-v2
371
3724. If you want to modify the patches a little before sending, you can do
373this in your editor, but be careful!
374
3755. If you want to run git send-email yourself, use the -n flag which will
376print out the command line patman would have used.
377
3786. It is a good idea to add the change log info as you change the commit,
379not later when you can't remember which patch you changed. You can always
380go back and change or remove logs from commits.
381
382
383Other thoughts
384==============
385
386This script has been split into sensible files but still needs work.
387Most of these are indicated by a TODO in the code.
388
389It would be nice if this could handle the In-reply-to side of things.
390
391The tests are incomplete, as is customary. Use the -t flag to run them,
392and make sure you are in the tools/scripts/patman directory first:
393
394 $ cd /path/to/u-boot
395 $ cd tools/scripts/patman
396 $ patman -t
397
398Error handling doesn't always produce friendly error messages - e.g.
399putting an incorrect tag in a commit may provide a confusing message.
400
401There might be a few other features not mentioned in this README. They
402might be bugs. In particular, tags are case sensitive which is probably
403a bad thing.
404
405
406Simon Glass <sjg@chromium.org>
407v1, v2, 19-Oct-11
408revised v3 24-Nov-11