blob: 9226b66f84087e097a97af1453e05be5e56030a0 [file] [log] [blame]
Simon Glass37c42b72022-08-09 13:49:57 -06001.. SPDX-License-Identifier: GPL-2.0+
2.. Copyright (c) 2011 The Chromium OS Authors
3.. Simon Glass <sjg@chromium.org>
4.. v1, v2, 19-Oct-11
5.. revised v3 24-Nov-11
6.. revised v4 04-Jul-2020, with Patchwork integration
7
8Patman patch manager
9====================
10
11This tool is a Python script which:
12
13- Creates patch directly from your branch
14
15- Cleans them up by removing unwanted tags
16
17- Inserts a cover letter with change lists
18
19- Runs the patches through checkpatch.pl and its own checks
20
21- Optionally emails them out to selected people
22
23It also has some Patchwork features:
24
25- shows review tags from Patchwork so you can update your local patches
26
27- pulls these down into a new branch on request
28
29- lists comments received on a series
30
31It is intended to automate patch creation and make it a less
32error-prone process. It is useful for U-Boot and Linux work so far,
33since they use the checkpatch.pl script.
34
35It is configured almost entirely by tags it finds in your commits.
36This means that you can work on a number of different branches at
37once, and keep the settings with each branch rather than having to
38git format-patch, git send-email, etc. with the correct parameters
39each time. So for example if you put::
40
41 Series-to: fred.blogs@napier.co.nz
42
43in one of your commits, the series will be sent there.
44
45In Linux and U-Boot this will also call get_maintainer.pl on each of your
46patches automatically (unless you use -m to disable this).
47
48
49How to use this tool
50--------------------
51
52This tool requires a certain way of working:
53
54- Maintain a number of branches, one for each patch series you are
55 working on
56
57- Add tags into the commits within each branch to indicate where the
58 series should be sent, cover letter, version, etc. Most of these are
59 normally in the top commit so it is easy to change them with 'git
60 commit --amend'
61
62- Each branch tracks the upstream branch, so that this script can
63 automatically determine the number of commits in it (optional)
64
65- Check out a branch, and run this script to create and send out your
66 patches. Weeks later, change the patches and repeat, knowing that you
67 will get a consistent result each time.
68
69
70How to configure it
71-------------------
72
73For most cases of using patman for U-Boot development, patman can use the
74file 'doc/git-mailrc' in your U-Boot directory to supply the email aliases
75you need. To make this work, tell git where to find the file by typing
76this once::
77
78 git config sendemail.aliasesfile doc/git-mailrc
79
80For both Linux and U-Boot the 'scripts/get_maintainer.pl' handles figuring
81out where to send patches pretty well.
82
83During the first run patman creates a config file for you by taking the default
84user name and email address from the global .gitconfig file.
85
86To add your own, create a file ~/.patman like this::
87
88 # patman alias file
89
90 [alias]
91 me: Simon Glass <sjg@chromium.org>
92
93 u-boot: U-Boot Mailing List <u-boot@lists.denx.de>
94 wolfgang: Wolfgang Denk <wd@denx.de>
95 others: Mike Frysinger <vapier@gentoo.org>, Fred Bloggs <f.bloggs@napier.net>
96
97Aliases are recursive.
98
99The checkpatch.pl in the U-Boot tools/ subdirectory will be located and
100used. Failing that you can put it into your path or ~/bin/checkpatch.pl
101
102If you want to avoid sending patches to email addresses that are picked up
103by patman but are known to bounce you can add a [bounces] section to your
104.patman file. Unlike the [alias] section these are simple key: value pairs
105that are not recursive::
106
107 [bounces]
108 gonefishing: Fred Bloggs <f.bloggs@napier.net>
109
110
111If you want to change the defaults for patman's command-line arguments,
112you can add a [settings] section to your .patman file. This can be used
113for any command line option by referring to the "dest" for the option in
114patman.py. For reference, the useful ones (at the moment) shown below
115(all with the non-default setting)::
116
117 [settings]
118 ignore_errors: True
119 process_tags: False
120 verbose: True
121 smtp_server: /path/to/sendmail
122 patchwork_server: https://patchwork.ozlabs.org
123
124If you want to adjust settings (or aliases) that affect just a single
125project you can add a section that looks like [project_settings] or
126[project_alias]. If you want to use tags for your linux work, you could do::
127
128 [linux_settings]
129 process_tags: True
130
131
132How to run it
133-------------
134
135First do a dry run:
136
137.. code-block:: bash
138
139 ./tools/patman/patman send -n
140
141If it can't detect the upstream branch, try telling it how many patches
142there are in your series
143
144.. code-block:: bash
145
146 ./tools/patman/patman -c5 send -n
147
148This will create patch files in your current directory and tell you who
149it is thinking of sending them to. Take a look at the patch files:
150
151.. code-block:: bash
152
153 ./tools/patman/patman -c5 -s1 send -n
154
155Similar to the above, but skip the first commit and take the next 5. This
156is useful if your top commit is for setting up testing.
157
158
159How to install it
160-----------------
161
162The most up to date version of patman can be found in the U-Boot sources.
163However to use it on other projects it may be more convenient to install it as
164a standalone application. A distutils installer is included, this can be used
165to install patman:
166
167.. code-block:: bash
168
169 cd tools/patman && python setup.py install
170
171
172How to add tags
173---------------
174
175To make this script useful you must add tags like the following into any
176commit. Most can only appear once in the whole series.
177
178Series-to: email / alias
179 Email address / alias to send patch series to (you can add this
180 multiple times)
181
182Series-cc: email / alias, ...
183 Email address / alias to Cc patch series to (you can add this
184 multiple times)
185
186Series-version: n
187 Sets the version number of this patch series
188
189Series-prefix: prefix
190 Sets the subject prefix. Normally empty but it can be RFC for
191 RFC patches, or RESEND if you are being ignored. The patch subject
192 is like [RFC PATCH] or [RESEND PATCH].
193 In the meantime, git format.subjectprefix option will be added as
194 well. If your format.subjectprefix is set to InternalProject, then
195 the patch shows like: [InternalProject][RFC/RESEND PATCH]
196
197Series-postfix: postfix
198 Sets the subject "postfix". Normally empty, but can be the name of a
199 tree such as net or net-next if that needs to be specified. The patch
200 subject is like [PATCH net] or [PATCH net-next].
201
202Series-name: name
203 Sets the name of the series. You don't need to have a name, and
204 patman does not yet use it, but it is convenient to put the branch
205 name here to help you keep track of multiple upstreaming efforts.
206
207Series-links: [id | version:id]...
208 Set the ID of the series in patchwork. You can set this after you send
209 out the series and look in patchwork for the resulting series. The
210 URL you want is the one for the series itself, not any particular patch.
211 E.g. for http://patchwork.ozlabs.org/project/uboot/list/?series=187331
212 the series ID is 187331. This property can have a list of series IDs,
213 one for each version of the series, e.g.
214
215 ::
216
217 Series-links: 1:187331 2:188434 189372
218
219 Patman always uses the one without a version, since it assumes this is
220 the latest one. When this tag is provided, patman can compare your local
221 branch against patchwork to see what new reviews your series has
222 collected ('patman status').
223
224Series-patchwork-url: url
225 This allows specifying the Patchwork URL for a branch. This overrides
226 both the setting files and the command-line argument. The URL should
227 include the protocol and web site, with no trailing slash, for example
228 'https://patchwork.ozlabs.org/project'
229
230Cover-letter:
231 Sets the cover letter contents for the series. The first line
232 will become the subject of the cover letter::
233
234 Cover-letter:
235 This is the patch set title
236 blah blah
237 more blah blah
238 END
239
240Cover-letter-cc: email / alias
241 Additional email addresses / aliases to send cover letter to (you
242 can add this multiple times)
243
244Series-notes:
245 Sets some notes for the patch series, which you don't want in
246 the commit messages, but do want to send, The notes are joined
247 together and put after the cover letter. Can appear multiple
248 times::
249
250 Series-notes:
251 blah blah
252 blah blah
253 more blah blah
254 END
255
256Commit-notes:
257 Similar, but for a single commit (patch). These notes will appear
258 immediately below the --- cut in the patch file::
259
260 Commit-notes:
261 blah blah
262 blah blah
263 more blah blah
264
265Signed-off-by: Their Name <email>
266 A sign-off is added automatically to your patches (this is
267 probably a bug). If you put this tag in your patches, it will
268 override the default signoff that patman automatically adds.
269 Multiple duplicate signoffs will be removed.
270
271Tested-by / Reviewed-by / Acked-by
272 These indicate that someone has tested/reviewed/acked your patch.
273 When you get this reply on the mailing list, you can add this
274 tag to the relevant commit and the script will include it when
275 you send out the next version. If 'Tested-by:' is set to
276 yourself, it will be removed. No one will believe you.
277
278 Example::
279
280 Tested-by: Their Name <fred@bloggs.com>
281 Reviewed-by: Their Name <email>
282 Acked-by: Their Name <email>
283
284Series-changes: n
285 This can appear in any commit. It lists the changes for a
286 particular version n of that commit. The change list is
287 created based on this information. Each commit gets its own
288 change list and also the whole thing is repeated in the cover
289 letter (where duplicate change lines are merged).
290
291 By adding your change lists into your commits it is easier to
292 keep track of what happened. When you amend a commit, remember
293 to update the log there and then, knowing that the script will
294 do the rest.
295
296 Example::
297
298 Series-changes: n
299 - Guinea pig moved into its cage
300 - Other changes ending with a blank line
301 <blank line>
302
303Commit-changes: n
304 This tag is like Series-changes, except changes in this changelog will
305 only appear in the changelog of the commit this tag is in. This is
306 useful when you want to add notes which may not make sense in the cover
307 letter. For example, you can have short changes such as "New" or
308 "Lint".
309
310 Example::
311
312 Commit-changes: n
313 - This line will not appear in the cover-letter changelog
314 <blank line>
315
316Cover-changes: n
317 This tag is like Series-changes, except changes in this changelog will
318 only appear in the cover-letter changelog. This is useful to summarize
319 changes made with Commit-changes, or to add additional context to
320 changes.
321
322 Example::
323
324 Cover-changes: n
325 - This line will only appear in the cover letter
326 <blank line>
327
328Patch-cc: Their Name <email>
329 This copies a single patch to another email address. Note that the
330 Cc: used by git send-email is ignored by patman, but will be
331 interpreted by git send-email if you use it.
332
333Series-process-log: sort, uniq
334 This tells patman to sort and/or uniq the change logs. Changes may be
335 multiple lines long, as long as each subsequent line of a change begins
336 with a whitespace character. For example,
337
338 Example::
339
340 - This change
341 continues onto the next line
342 - But this change is separate
343
344 Use 'sort' to sort the entries, and 'uniq' to include only
345 unique entries. If omitted, no change log processing is done.
346 Separate each tag with a comma.
347
348Change-Id:
349 This tag is stripped out but is used to generate the Message-Id
350 of the emails that will be sent. When you keep the Change-Id the
351 same you are asserting that this is a slightly different version
352 (but logically the same patch) as other patches that have been
353 sent out with the same Change-Id.
354
355Various other tags are silently removed, like these Chrome OS and
356Gerrit tags::
357
358 BUG=...
359 TEST=...
360 Review URL:
361 Reviewed-on:
362 Commit-xxxx: (except Commit-notes)
363
364Exercise for the reader: Try adding some tags to one of your current
365patch series and see how the patches turn out.
366
367
368Where Patches Are Sent
369----------------------
370
371Once the patches are created, patman sends them using git send-email. The
372whole series is sent to the recipients in Series-to: and Series-cc.
373You can Cc individual patches to other people with the Patch-cc: tag. Tags
374in the subject are also picked up to Cc patches. For example, a commit like
375this::
376
377 commit 10212537b85ff9b6e09c82045127522c0f0db981
378 Author: Mike Frysinger <vapier@gentoo.org>
379 Date: Mon Nov 7 23:18:44 2011 -0500
380
381 x86: arm: add a git mailrc file for maintainers
382
383 This should make sending out e-mails to the right people easier.
384
385 Patch-cc: sandbox, mikef, ag
386 Patch-cc: afleming
387
388will create a patch which is copied to x86, arm, sandbox, mikef, ag and
389afleming.
390
391If you have a cover letter it will get sent to the union of the Patch-cc
392lists of all of the other patches. If you want to sent it to additional
393people you can add a tag::
394
395 Cover-letter-cc: <list of addresses>
396
397These people will get the cover letter even if they are not on the To/Cc
398list for any of the patches.
399
400
401Patchwork Integration
402---------------------
403
404Patman has a very basic integration with Patchwork. If you point patman to
405your series on patchwork it can show you what new reviews have appeared since
406you sent your series.
407
408To set this up, add a Series-link tag to one of the commits in your series
409(see above).
410
411Then you can type:
412
413.. code-block:: bash
414
415 patman status
416
417and patman will show you each patch and what review tags have been collected,
418for example::
419
420 ...
421 21 x86: mtrr: Update the command to use the new mtrr
422 Reviewed-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
423 + Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
424 22 x86: mtrr: Restructure so command execution is in
425 Reviewed-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
426 + Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
427 ...
428
429This shows that patch 21 and 22 were sent out with one review but have since
430attracted another review each. If the series needs changes, you can update
431these commits with the new review tag before sending the next version of the
432series.
433
434To automatically pull into these tags into a new branch, use the -d option:
435
436.. code-block:: bash
437
438 patman status -d mtrr4
439
440This will create a new 'mtrr4' branch which is the same as your current branch
441but has the new review tags in it. The tags are added in alphabetic order and
442are placed immediately after any existing ack/review/test/fixes tags, or at the
443end. You can check that this worked with:
444
445.. code-block:: bash
446
447 patman -b mtrr4 status
448
449which should show that there are no new responses compared to this new branch.
450
451There is also a -C option to list the comments received for each patch.
452
453
454Example Work Flow
455-----------------
456
457The basic workflow is to create your commits, add some tags to the top
458commit, and type 'patman' to check and send them.
459
460Here is an example workflow for a series of 4 patches. Let's say you have
461these rather contrived patches in the following order in branch us-cmd in
462your tree where 'us' means your upstreaming activity (newest to oldest as
463output by git log --oneline)::
464
465 7c7909c wip
466 89234f5 Don't include standard parser if hush is used
467 8d640a7 mmc: sparc: Stop using builtin_run_command()
468 0c859a9 Rename run_command2() to run_command()
469 a74443f sandbox: Rename run_command() to builtin_run_command()
470
471The first patch is some test things that enable your code to be compiled,
472but that you don't want to submit because there is an existing patch for it
473on the list. So you can tell patman to create and check some patches
474(skipping the first patch) with:
475
476.. code-block:: bash
477
478 patman -s1 send -n
479
480If you want to do all of them including the work-in-progress one, then
481(if you are tracking an upstream branch):
482
483.. code-block:: bash
484
485 patman send -n
486
487Let's say that patman reports an error in the second patch. Then:
488
489.. code-block:: bash
490
491 git rebase -i HEAD~6
492 # change 'pick' to 'edit' in 89234f5
493 # use editor to make code changes
494 git add -u
495 git rebase --continue
496
497Now you have an updated patch series. To check it:
498
499.. code-block:: bash
500
501 patman -s1 send -n
502
503Let's say it is now clean and you want to send it. Now you need to set up
504the destination. So amend the top commit with:
505
506.. code-block:: bash
507
508 git commit --amend
509
510Use your editor to add some tags, so that the whole commit message is::
511
512 The current run_command() is really only one of the options, with
513 hush providing the other. It really shouldn't be called directly
514 in case the hush parser is bring used, so rename this function to
515 better explain its purpose::
516
517 Series-to: u-boot
518 Series-cc: bfin, marex
519 Series-prefix: RFC
520 Cover-letter:
521 Unified command execution in one place
522
523 At present two parsers have similar code to execute commands. Also
524 cmd_usage() is called all over the place. This series adds a single
525 function which processes commands called cmd_process().
526 END
527
528 Change-Id: Ica71a14c1f0ecb5650f771a32fecb8d2eb9d8a17
529
530
531You want this to be an RFC and Cc the whole series to the bfin alias and
532to Marek. Two of the patches have tags (those are the bits at the front of
533the subject that say mmc: sparc: and sandbox:), so 8d640a7 will be Cc'd to
534mmc and sparc, and the last one to sandbox.
535
536Now to send the patches, take off the -n flag:
537
538.. code-block:: bash
539
540 patman -s1 send
541
542The patches will be created, shown in your editor, and then sent along with
543the cover letter. Note that patman's tags are automatically removed so that
544people on the list don't see your secret info.
545
546Of course patches often attract comments and you need to make some updates.
547Let's say one person sent comments and you get an Acked-by: on one patch.
548Also, the patch on the list that you were waiting for has been merged,
549so you can drop your wip commit.
550
551Take a look on patchwork and find out the URL of the series. This will be
552something like `http://patchwork.ozlabs.org/project/uboot/list/?series=187331`
553Add this to a tag in your top commit::
554
555 Series-links: 187331
556
557You can use then patman to collect the Acked-by tag to the correct commit,
558creating a new 'version 2' branch for us-cmd:
559
560.. code-block:: bash
561
562 patman status -d us-cmd2
563 git checkout us-cmd2
564
565You can look at the comments in Patchwork or with:
566
567.. code-block:: bash
568
569 patman status -C
570
571Then you can resync with upstream:
572
573.. code-block:: bash
574
575 git fetch origin # or whatever upstream is called
576 git rebase origin/master
577
578and use git rebase -i to edit the commits, dropping the wip one.
579
580Then update the `Series-cc:` in the top commit to add the person who reviewed
581the v1 series::
582
583 Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
584
585and remove the Series-prefix: tag since it it isn't an RFC any more. The
586series is now version two, so the series info in the top commit looks like
587this::
588
589 Series-to: u-boot
590 Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
591 Series-version: 2
592 Cover-letter:
593 ...
594
595Finally, you need to add a change log to the two commits you changed. You
596add change logs to each individual commit where the changes happened, like
597this::
598
599 Series-changes: 2
600 - Updated the command decoder to reduce code size
601 - Wound the torque propounder up a little more
602
603(note the blank line at the end of the list)
604
605When you run patman it will collect all the change logs from the different
606commits and combine them into the cover letter, if you have one. So finally
607you have a new series of commits::
608
609 faeb973 Don't include standard parser if hush is used
610 1b2f2fe mmc: sparc: Stop using builtin_run_command()
611 cfbe330 Rename run_command2() to run_command()
612 0682677 sandbox: Rename run_command() to builtin_run_command()
613
614so to send them:
615
616.. code-block:: bash
617
618 patman
619
620and it will create and send the version 2 series.
621
622
623General points
624--------------
625
6261. When you change back to the us-cmd branch days or weeks later all your
627 information is still there, safely stored in the commits. You don't need
628 to remember what version you are up to, who you sent the last lot of patches
629 to, or anything about the change logs.
630
6312. If you put tags in the subject, patman will Cc the maintainers
632 automatically in many cases.
633
6343. If you want to keep the commits from each series you sent so that you can
635 compare change and see what you did, you can either create a new branch for
636 each version, or just tag the branch before you start changing it:
637
638.. code-block:: bash
639
640 git tag sent/us-cmd-rfc
641 # ...later...
642 git tag sent/us-cmd-v2
643
6444. If you want to modify the patches a little before sending, you can do
645 this in your editor, but be careful!
646
6475. If you want to run git send-email yourself, use the -n flag which will
648 print out the command line patman would have used.
649
6506. It is a good idea to add the change log info as you change the commit,
651 not later when you can't remember which patch you changed. You can always
652 go back and change or remove logs from commits.
653
6547. Some mailing lists have size limits and when we add binary contents to
655 our patches it's easy to exceed the size limits. Use "--no-binary" to
656 generate patches without any binary contents. You are supposed to include
657 a link to a git repository in your "Commit-notes", "Series-notes" or
658 "Cover-letter" for maintainers to fetch the original commit.
659
6608. Patches will have no changelog entries for revisions where they did not
661 change. For clarity, if there are no changes for this patch in the most
662 recent revision of the series, a note will be added. For example, a patch
663 with the following tags in the commit::
664
665 Series-version: 5
666 Series-changes: 2
667 - Some change
668
669 Series-changes: 4
670 - Another change
671
672would have a changelog of:::
673
674 (no changes since v4)
675
676 Changes in v4:
677 - Another change
678
679 Changes in v2:
680 - Some change
681
682
683Other thoughts
684--------------
685
686This script has been split into sensible files but still needs work.
687Most of these are indicated by a TODO in the code.
688
689It would be nice if this could handle the In-reply-to side of things.
690
691The tests are incomplete, as is customary. Use the 'test' subcommand to run
692them:
693
694.. code-block:: bash
695
696 $ tools/patman/patman test
697
698Error handling doesn't always produce friendly error messages - e.g.
699putting an incorrect tag in a commit may provide a confusing message.
700
701There might be a few other features not mentioned in this README. They
702might be bugs. In particular, tags are case sensitive which is probably
703a bad thing.