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