blob: 16b51eb59c7fb063f6fe98e6f0eebfad08498716 [file] [log] [blame]
Simon Glass26132882012-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 Denk302007e2012-04-21 18:55:26 +020013# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Simon Glass26132882012-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
Doug Andersonc2c84bc2012-12-03 14:43:16 +000046In Linux this will also call get_maintainer.pl on each of your
47patches automatically.
48
Simon Glass26132882012-01-14 15:12:45 +000049
50How to use this tool
51====================
52
53This tool requires a certain way of working:
54
55- Maintain a number of branches, one for each patch series you are
56working on
57- Add tags into the commits within each branch to indicate where the
58series should be sent, cover letter, version, etc. Most of these are
59normally in the top commit so it is easy to change them with 'git
60commit --amend'
61- Each branch tracks the upstream branch, so that this script can
62automatically determine the number of commits in it (optional)
63- Check out a branch, and run this script to create and send out your
64patches. Weeks later, change the patches and repeat, knowing that you
65will get a consistent result each time.
66
67
68How to configure it
69===================
70
Doug Andersonc2c84bc2012-12-03 14:43:16 +000071For most cases of using patman for U-Boot developement patman will
72locate and use the file 'doc/git-mailrc' in your U-Boot directory.
73This contains most of the aliases you will need.
74
75For Linux the 'scripts/get_maintainer.pl' handles figuring out where
76to send patches pretty well.
Simon Glass26132882012-01-14 15:12:45 +000077
Vikram Narayanan12fb29a2012-05-23 09:01:06 +000078During the first run patman creates a config file for you by taking the default
79user name and email address from the global .gitconfig file.
80
Vikram Narayananc387d36d2012-05-23 08:58:58 +000081To add your own, create a file ~/.patman like this:
Simon Glass26132882012-01-14 15:12:45 +000082
83>>>>
84# patman alias file
85
86[alias]
87me: Simon Glass <sjg@chromium.org>
88
89u-boot: U-Boot Mailing List <u-boot@lists.denx.de>
90wolfgang: Wolfgang Denk <wd@denx.de>
91others: Mike Frysinger <vapier@gentoo.org>, Fred Bloggs <f.bloggs@napier.net>
92
93<<<<
94
95Aliases are recursive.
96
97The checkpatch.pl in the U-Boot tools/ subdirectory will be located and
98used. Failing that you can put it into your path or ~/bin/checkpatch.pl
99
100
101How to run it
102=============
103
104First do a dry run:
105
Vikram Narayanane95ea8c2012-04-27 06:39:31 +0000106$ ./tools/patman/patman -n
Simon Glass26132882012-01-14 15:12:45 +0000107
108If it can't detect the upstream branch, try telling it how many patches
109there are in your series:
110
Vikram Narayanane95ea8c2012-04-27 06:39:31 +0000111$ ./tools/patman/patman -n -c5
Simon Glass26132882012-01-14 15:12:45 +0000112
113This will create patch files in your current directory and tell you who
114it is thinking of sending them to. Take a look at the patch files.
115
Vikram Narayanane95ea8c2012-04-27 06:39:31 +0000116$ ./tools/patman/patman -n -c5 -s1
Simon Glass26132882012-01-14 15:12:45 +0000117
118Similar to the above, but skip the first commit and take the next 5. This
119is useful if your top commit is for setting up testing.
120
121
122How to add tags
123===============
124
125To make this script useful you must add tags like the following into any
126commit. Most can only appear once in the whole series.
127
128Series-to: email / alias
Wolfgang Denk302007e2012-04-21 18:55:26 +0200129 Email address / alias to send patch series to (you can add this
130 multiple times)
Simon Glass26132882012-01-14 15:12:45 +0000131
132Series-cc: email / alias, ...
Wolfgang Denk302007e2012-04-21 18:55:26 +0200133 Email address / alias to Cc patch series to (you can add this
134 multiple times)
Simon Glass26132882012-01-14 15:12:45 +0000135
136Series-version: n
Wolfgang Denk302007e2012-04-21 18:55:26 +0200137 Sets the version number of this patch series
Simon Glass26132882012-01-14 15:12:45 +0000138
139Series-prefix: prefix
Wolfgang Denk302007e2012-04-21 18:55:26 +0200140 Sets the subject prefix. Normally empty but it can be RFC for
141 RFC patches, or RESEND if you are being ignored.
Simon Glass26132882012-01-14 15:12:45 +0000142
Simon Glasse7ecd3f2012-09-27 15:06:02 +0000143Series-name: name
144 Sets the name of the series. You don't need to have a name, and
145 patman does not yet use it, but it is convenient to put the branch
146 name here to help you keep track of multiple upstreaming efforts.
147
Simon Glass26132882012-01-14 15:12:45 +0000148Cover-letter:
149This is the patch set title
150blah blah
151more blah blah
152END
Wolfgang Denk302007e2012-04-21 18:55:26 +0200153 Sets the cover letter contents for the series. The first line
154 will become the subject of the cover letter
Simon Glass26132882012-01-14 15:12:45 +0000155
156Series-notes:
157blah blah
158blah blah
159more blah blah
160END
Wolfgang Denk302007e2012-04-21 18:55:26 +0200161 Sets some notes for the patch series, which you don't want in
162 the commit messages, but do want to send, The notes are joined
163 together and put after the cover letter. Can appear multiple
164 times.
Simon Glass26132882012-01-14 15:12:45 +0000165
166 Signed-off-by: Their Name <email>
Wolfgang Denk302007e2012-04-21 18:55:26 +0200167 A sign-off is added automatically to your patches (this is
168 probably a bug). If you put this tag in your patches, it will
169 override the default signoff that patman automatically adds.
Simon Glass26132882012-01-14 15:12:45 +0000170
171 Tested-by: Their Name <email>
172 Acked-by: Their Name <email>
Wolfgang Denk302007e2012-04-21 18:55:26 +0200173 These indicate that someone has acked or tested your patch.
174 When you get this reply on the mailing list, you can add this
175 tag to the relevant commit and the script will include it when
176 you send out the next version. If 'Tested-by:' is set to
177 yourself, it will be removed. No one will believe you.
Simon Glass26132882012-01-14 15:12:45 +0000178
179Series-changes: n
180- Guinea pig moved into its cage
181- Other changes ending with a blank line
182<blank line>
Wolfgang Denk302007e2012-04-21 18:55:26 +0200183 This can appear in any commit. It lists the changes for a
184 particular version n of that commit. The change list is
185 created based on this information. Each commit gets its own
186 change list and also the whole thing is repeated in the cover
187 letter (where duplicate change lines are merged).
Simon Glass26132882012-01-14 15:12:45 +0000188
Wolfgang Denk302007e2012-04-21 18:55:26 +0200189 By adding your change lists into your commits it is easier to
190 keep track of what happened. When you amend a commit, remember
191 to update the log there and then, knowing that the script will
192 do the rest.
Simon Glass26132882012-01-14 15:12:45 +0000193
194Cc: Their Name <email>
Wolfgang Denk302007e2012-04-21 18:55:26 +0200195 This copies a single patch to another email address.
Simon Glass26132882012-01-14 15:12:45 +0000196
197Various other tags are silently removed, like these Chrome OS and
198Gerrit tags:
199
200BUG=...
201TEST=...
202Change-Id:
203Review URL:
204Reviewed-on:
205Reviewed-by:
206
207
208Exercise for the reader: Try adding some tags to one of your current
209patch series and see how the patches turn out.
210
211
212Where Patches Are Sent
213======================
214
Vikram Narayanan867ad2a2012-04-25 05:45:05 +0000215Once the patches are created, patman sends them using git send-email. The
Simon Glass26132882012-01-14 15:12:45 +0000216whole series is sent to the recipients in Series-to: and Series-cc.
217You can Cc individual patches to other people with the Cc: tag. Tags in the
218subject are also picked up to Cc patches. For example, a commit like this:
219
220>>>>
221commit 10212537b85ff9b6e09c82045127522c0f0db981
222Author: Mike Frysinger <vapier@gentoo.org>
Wolfgang Denk302007e2012-04-21 18:55:26 +0200223Date: Mon Nov 7 23:18:44 2011 -0500
Simon Glass26132882012-01-14 15:12:45 +0000224
225 x86: arm: add a git mailrc file for maintainers
226
227 This should make sending out e-mails to the right people easier.
228
229 Cc: sandbox, mikef, ag
230 Cc: afleming
231<<<<
232
233will create a patch which is copied to x86, arm, sandbox, mikef, ag and
234afleming.
235
Doug Anderson05416af2012-12-03 14:40:43 +0000236If you have a cover letter it will get sent to the union of the CC lists of
237all of the other patches.
238
Simon Glass26132882012-01-14 15:12:45 +0000239
240Example Work Flow
241=================
242
243The basic workflow is to create your commits, add some tags to the top
244commit, and type 'patman' to check and send them.
245
246Here is an example workflow for a series of 4 patches. Let's say you have
247these rather contrived patches in the following order in branch us-cmd in
248your tree where 'us' means your upstreaming activity (newest to oldest as
249output by git log --oneline):
250
251 7c7909c wip
252 89234f5 Don't include standard parser if hush is used
253 8d640a7 mmc: sparc: Stop using builtin_run_command()
254 0c859a9 Rename run_command2() to run_command()
255 a74443f sandbox: Rename run_command() to builtin_run_command()
256
257The first patch is some test things that enable your code to be compiled,
258but that you don't want to submit because there is an existing patch for it
259on the list. So you can tell patman to create and check some patches
260(skipping the first patch) with:
261
262 patman -s1 -n
263
264If you want to do all of them including the work-in-progress one, then
265(if you are tracking an upstream branch):
266
267 patman -n
268
269Let's say that patman reports an error in the second patch. Then:
270
271 git rebase -i HEAD~6
272 <change 'pick' to 'edit' in 89234f5>
273 <use editor to make code changes>
274 git add -u
275 git rebase --continue
276
277Now you have an updated patch series. To check it:
278
279 patman -s1 -n
280
281Let's say it is now clean and you want to send it. Now you need to set up
282the destination. So amend the top commit with:
283
284 git commit --amend
285
286Use your editor to add some tags, so that the whole commit message is:
287
288 The current run_command() is really only one of the options, with
289 hush providing the other. It really shouldn't be called directly
290 in case the hush parser is bring used, so rename this function to
291 better explain its purpose.
292
293 Series-to: u-boot
294 Series-cc: bfin, marex
295 Series-prefix: RFC
296 Cover-letter:
297 Unified command execution in one place
298
299 At present two parsers have similar code to execute commands. Also
300 cmd_usage() is called all over the place. This series adds a single
301 function which processes commands called cmd_process().
302 END
303
304 Change-Id: Ica71a14c1f0ecb5650f771a32fecb8d2eb9d8a17
305
306
307You want this to be an RFC and Cc the whole series to the bfin alias and
308to Marek. Two of the patches have tags (those are the bits at the front of
309the subject that say mmc: sparc: and sandbox:), so 8d640a7 will be Cc'd to
310mmc and sparc, and the last one to sandbox.
311
312Now to send the patches, take off the -n flag:
313
314 patman -s1
315
316The patches will be created, shown in your editor, and then sent along with
317the cover letter. Note that patman's tags are automatically removed so that
318people on the list don't see your secret info.
319
320Of course patches often attract comments and you need to make some updates.
321Let's say one person sent comments and you get an Acked-by: on one patch.
322Also, the patch on the list that you were waiting for has been merged,
323so you can drop your wip commit. So you resync with upstream:
324
Wolfgang Denk302007e2012-04-21 18:55:26 +0200325 git fetch origin (or whatever upstream is called)
Simon Glass26132882012-01-14 15:12:45 +0000326 git rebase origin/master
327
328and use git rebase -i to edit the commits, dropping the wip one. You add
329the ack tag to one commit:
330
331 Acked-by: Heiko Schocher <hs@denx.de>
332
333update the Series-cc: in the top commit:
334
335 Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
336
337and remove the Series-prefix: tag since it it isn't an RFC any more. The
338series is now version two, so the series info in the top commit looks like
339this:
340
341 Series-to: u-boot
342 Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
343 Series-version: 2
344 Cover-letter:
345 ...
346
347Finally, you need to add a change log to the two commits you changed. You
348add change logs to each individual commit where the changes happened, like
349this:
350
351 Series-changes: 2
352 - Updated the command decoder to reduce code size
353 - Wound the torque propounder up a little more
354
355(note the blank line at the end of the list)
356
357When you run patman it will collect all the change logs from the different
358commits and combine them into the cover letter, if you have one. So finally
359you have a new series of commits:
360
361 faeb973 Don't include standard parser if hush is used
362 1b2f2fe mmc: sparc: Stop using builtin_run_command()
363 cfbe330 Rename run_command2() to run_command()
364 0682677 sandbox: Rename run_command() to builtin_run_command()
365
366so to send them:
367
368 patman
369
370and it will create and send the version 2 series.
371
372General points:
373
3741. When you change back to the us-cmd branch days or weeks later all your
375information is still there, safely stored in the commits. You don't need
376to remember what version you are up to, who you sent the last lot of patches
377to, or anything about the change logs.
378
3792. If you put tags in the subject, patman will Cc the maintainers
380automatically in many cases.
381
3823. If you want to keep the commits from each series you sent so that you can
383compare change and see what you did, you can either create a new branch for
384each version, or just tag the branch before you start changing it:
385
386 git tag sent/us-cmd-rfc
387 ...later...
388 git tag sent/us-cmd-v2
389
3904. If you want to modify the patches a little before sending, you can do
391this in your editor, but be careful!
392
3935. If you want to run git send-email yourself, use the -n flag which will
394print out the command line patman would have used.
395
3966. It is a good idea to add the change log info as you change the commit,
397not later when you can't remember which patch you changed. You can always
398go back and change or remove logs from commits.
399
400
401Other thoughts
402==============
403
404This script has been split into sensible files but still needs work.
405Most of these are indicated by a TODO in the code.
406
407It would be nice if this could handle the In-reply-to side of things.
408
409The tests are incomplete, as is customary. Use the -t flag to run them,
410and make sure you are in the tools/scripts/patman directory first:
411
412 $ cd /path/to/u-boot
413 $ cd tools/scripts/patman
414 $ patman -t
415
416Error handling doesn't always produce friendly error messages - e.g.
417putting an incorrect tag in a commit may provide a confusing message.
418
419There might be a few other features not mentioned in this README. They
420might be bugs. In particular, tags are case sensitive which is probably
421a bad thing.
422
423
424Simon Glass <sjg@chromium.org>
425v1, v2, 19-Oct-11
426revised v3 24-Nov-11