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