xref: /rk3399_rockchip-uboot/tools/patman/README (revision 102061bd8b0b174e1cf811dfd35641d8a9e4eba3)
10d24de9dSSimon Glass# Copyright (c) 2011 The Chromium OS Authors.
20d24de9dSSimon Glass#
31a459660SWolfgang Denk# SPDX-License-Identifier:	GPL-2.0+
40d24de9dSSimon Glass#
50d24de9dSSimon Glass
60d24de9dSSimon GlassWhat is this?
70d24de9dSSimon Glass=============
80d24de9dSSimon Glass
90d24de9dSSimon GlassThis tool is a Python script which:
100d24de9dSSimon Glass- Creates patch directly from your branch
110d24de9dSSimon Glass- Cleans them up by removing unwanted tags
120d24de9dSSimon Glass- Inserts a cover letter with change lists
130d24de9dSSimon Glass- Runs the patches through checkpatch.pl and its own checks
140d24de9dSSimon Glass- Optionally emails them out to selected people
150d24de9dSSimon Glass
160d24de9dSSimon GlassIt is intended to automate patch creation and make it a less
170d24de9dSSimon Glasserror-prone process. It is useful for U-Boot and Linux work so far,
180d24de9dSSimon Glasssince it uses the checkpatch.pl script.
190d24de9dSSimon Glass
200d24de9dSSimon GlassIt is configured almost entirely by tags it finds in your commits.
210d24de9dSSimon GlassThis means that you can work on a number of different branches at
220d24de9dSSimon Glassonce, and keep the settings with each branch rather than having to
230d24de9dSSimon Glassgit format-patch, git send-email, etc. with the correct parameters
240d24de9dSSimon Glasseach time. So for example if you put:
250d24de9dSSimon Glass
260d24de9dSSimon GlassSeries-to: fred.blogs@napier.co.nz
270d24de9dSSimon Glass
280d24de9dSSimon Glassin one of your commits, the series will be sent there.
290d24de9dSSimon Glass
3021a19d70SDoug AndersonIn Linux this will also call get_maintainer.pl on each of your
3121a19d70SDoug Andersonpatches automatically.
3221a19d70SDoug Anderson
330d24de9dSSimon Glass
340d24de9dSSimon GlassHow to use this tool
350d24de9dSSimon Glass====================
360d24de9dSSimon Glass
370d24de9dSSimon GlassThis tool requires a certain way of working:
380d24de9dSSimon Glass
390d24de9dSSimon Glass- Maintain a number of branches, one for each patch series you are
400d24de9dSSimon Glassworking on
410d24de9dSSimon Glass- Add tags into the commits within each branch to indicate where the
420d24de9dSSimon Glassseries should be sent, cover letter, version, etc. Most of these are
430d24de9dSSimon Glassnormally in the top commit so it is easy to change them with 'git
440d24de9dSSimon Glasscommit --amend'
450d24de9dSSimon Glass- Each branch tracks the upstream branch, so that this script can
460d24de9dSSimon Glassautomatically determine the number of commits in it (optional)
470d24de9dSSimon Glass- Check out a branch, and run this script to create and send out your
480d24de9dSSimon Glasspatches. Weeks later, change the patches and repeat, knowing that you
490d24de9dSSimon Glasswill get a consistent result each time.
500d24de9dSSimon Glass
510d24de9dSSimon Glass
520d24de9dSSimon GlassHow to configure it
530d24de9dSSimon Glass===================
540d24de9dSSimon Glass
55ca706e76SSimon GlassFor most cases of using patman for U-Boot development, patman will
5621a19d70SDoug Andersonlocate and use the file 'doc/git-mailrc' in your U-Boot directory.
5721a19d70SDoug AndersonThis contains most of the aliases you will need.
5821a19d70SDoug Anderson
5921a19d70SDoug AndersonFor Linux the 'scripts/get_maintainer.pl' handles figuring out where
6021a19d70SDoug Andersonto send patches pretty well.
610d24de9dSSimon Glass
6287d65558SVikram NarayananDuring the first run patman creates a config file for you by taking the default
6387d65558SVikram Narayananuser name and email address from the global .gitconfig file.
6487d65558SVikram Narayanan
652b36c75dSVikram NarayananTo add your own, create a file ~/.patman like this:
660d24de9dSSimon Glass
670d24de9dSSimon Glass>>>>
680d24de9dSSimon Glass# patman alias file
690d24de9dSSimon Glass
700d24de9dSSimon Glass[alias]
710d24de9dSSimon Glassme: Simon Glass <sjg@chromium.org>
720d24de9dSSimon Glass
730d24de9dSSimon Glassu-boot: U-Boot Mailing List <u-boot@lists.denx.de>
740d24de9dSSimon Glasswolfgang: Wolfgang Denk <wd@denx.de>
750d24de9dSSimon Glassothers: Mike Frysinger <vapier@gentoo.org>, Fred Bloggs <f.bloggs@napier.net>
760d24de9dSSimon Glass
770d24de9dSSimon Glass<<<<
780d24de9dSSimon Glass
790d24de9dSSimon GlassAliases are recursive.
800d24de9dSSimon Glass
810d24de9dSSimon GlassThe checkpatch.pl in the U-Boot tools/ subdirectory will be located and
820d24de9dSSimon Glassused. Failing that you can put it into your path or ~/bin/checkpatch.pl
830d24de9dSSimon Glass
840d24de9dSSimon Glass
858568baedSDoug AndersonIf you want to change the defaults for patman's command-line arguments,
868568baedSDoug Andersonyou can add a [settings] section to your .patman file.  This can be used
878568baedSDoug Andersonfor any command line option by referring to the "dest" for the option in
888568baedSDoug Andersonpatman.py.  For reference, the useful ones (at the moment) shown below
898568baedSDoug Anderson(all with the non-default setting):
908568baedSDoug Anderson
918568baedSDoug Anderson>>>
928568baedSDoug Anderson
938568baedSDoug Anderson[settings]
948568baedSDoug Andersonignore_errors: True
958568baedSDoug Andersonprocess_tags: False
968568baedSDoug Andersonverbose: True
978568baedSDoug Anderson
988568baedSDoug Anderson<<<
998568baedSDoug Anderson
1008568baedSDoug Anderson
101a1dcee84SDoug AndersonIf you want to adjust settings (or aliases) that affect just a single
102a1dcee84SDoug Andersonproject you can add a section that looks like [project_settings] or
103a1dcee84SDoug Anderson[project_alias].  If you want to use tags for your linux work, you could
104a1dcee84SDoug Andersondo:
105a1dcee84SDoug Anderson
106a1dcee84SDoug Anderson>>>
107a1dcee84SDoug Anderson
108a1dcee84SDoug Anderson[linux_settings]
109a1dcee84SDoug Andersonprocess_tags: True
110a1dcee84SDoug Anderson
111a1dcee84SDoug Anderson<<<
112a1dcee84SDoug Anderson
113a1dcee84SDoug Anderson
1140d24de9dSSimon GlassHow to run it
1150d24de9dSSimon Glass=============
1160d24de9dSSimon Glass
1170d24de9dSSimon GlassFirst do a dry run:
1180d24de9dSSimon Glass
119330a091cSVikram Narayanan$ ./tools/patman/patman -n
1200d24de9dSSimon Glass
1210d24de9dSSimon GlassIf it can't detect the upstream branch, try telling it how many patches
1220d24de9dSSimon Glassthere are in your series:
1230d24de9dSSimon Glass
124330a091cSVikram Narayanan$ ./tools/patman/patman -n -c5
1250d24de9dSSimon Glass
1260d24de9dSSimon GlassThis will create patch files in your current directory and tell you who
1270d24de9dSSimon Glassit is thinking of sending them to. Take a look at the patch files.
1280d24de9dSSimon Glass
129330a091cSVikram Narayanan$ ./tools/patman/patman -n -c5 -s1
1300d24de9dSSimon Glass
1310d24de9dSSimon GlassSimilar to the above, but skip the first commit and take the next 5. This
1320d24de9dSSimon Glassis useful if your top commit is for setting up testing.
1330d24de9dSSimon Glass
1340d24de9dSSimon Glass
1350d24de9dSSimon GlassHow to add tags
1360d24de9dSSimon Glass===============
1370d24de9dSSimon Glass
1380d24de9dSSimon GlassTo make this script useful you must add tags like the following into any
1390d24de9dSSimon Glasscommit. Most can only appear once in the whole series.
1400d24de9dSSimon Glass
1410d24de9dSSimon GlassSeries-to: email / alias
1420d24de9dSSimon Glass	Email address / alias to send patch series to (you can add this
1430d24de9dSSimon Glass	multiple times)
1440d24de9dSSimon Glass
1450d24de9dSSimon GlassSeries-cc: email / alias, ...
1460d24de9dSSimon Glass	Email address / alias to Cc patch series to (you can add this
1470d24de9dSSimon Glass	multiple times)
1480d24de9dSSimon Glass
1490d24de9dSSimon GlassSeries-version: n
1500d24de9dSSimon Glass	Sets the version number of this patch series
1510d24de9dSSimon Glass
1520d24de9dSSimon GlassSeries-prefix: prefix
1530d24de9dSSimon Glass	Sets the subject prefix. Normally empty but it can be RFC for
1540d24de9dSSimon Glass	RFC patches, or RESEND if you are being ignored.
1550d24de9dSSimon Glass
156ef0e9de8SSimon GlassSeries-name: name
157ef0e9de8SSimon Glass	Sets the name of the series. You don't need to have a name, and
158ef0e9de8SSimon Glass	patman does not yet use it, but it is convenient to put the branch
159ef0e9de8SSimon Glass	name here to help you keep track of multiple upstreaming efforts.
160ef0e9de8SSimon Glass
1610d24de9dSSimon GlassCover-letter:
1620d24de9dSSimon GlassThis is the patch set title
1630d24de9dSSimon Glassblah blah
1640d24de9dSSimon Glassmore blah blah
1650d24de9dSSimon GlassEND
1660d24de9dSSimon Glass	Sets the cover letter contents for the series. The first line
1670d24de9dSSimon Glass	will become the subject of the cover letter
1680d24de9dSSimon Glass
169fe2f8d9eSSimon GlassCover-letter-cc: email / alias
170fe2f8d9eSSimon Glass	Additional email addresses / aliases to send cover letter to (you
171fe2f8d9eSSimon Glass	can add this multiple times)
172fe2f8d9eSSimon Glass
1730d24de9dSSimon GlassSeries-notes:
1740d24de9dSSimon Glassblah blah
1750d24de9dSSimon Glassblah blah
1760d24de9dSSimon Glassmore blah blah
1770d24de9dSSimon GlassEND
1780d24de9dSSimon Glass	Sets some notes for the patch series, which you don't want in
1790d24de9dSSimon Glass	the commit messages, but do want to send, The notes are joined
1800d24de9dSSimon Glass	together and put after the cover letter. Can appear multiple
1810d24de9dSSimon Glass	times.
1820d24de9dSSimon Glass
1835c8fdd91SAlbert ARIBAUDCommit-notes:
1845c8fdd91SAlbert ARIBAUDblah blah
1855c8fdd91SAlbert ARIBAUDblah blah
1865c8fdd91SAlbert ARIBAUDmore blah blah
1875c8fdd91SAlbert ARIBAUDEND
1885c8fdd91SAlbert ARIBAUD	Similar, but for a single commit (patch). These notes will appear
1895c8fdd91SAlbert ARIBAUD	immediately below the --- cut in the patch file.
1905c8fdd91SAlbert ARIBAUD
1910d24de9dSSimon Glass Signed-off-by: Their Name <email>
1920d24de9dSSimon Glass	A sign-off is added automatically to your patches (this is
1930d24de9dSSimon Glass	probably a bug). If you put this tag in your patches, it will
1940d24de9dSSimon Glass	override the default signoff that patman automatically adds.
195*102061bdSSimon Glass	Multiple duplicate signoffs will be removed.
1960d24de9dSSimon Glass
1970d24de9dSSimon Glass Tested-by: Their Name <email>
19828b3594eSDoug Anderson Reviewed-by: Their Name <email>
1990d24de9dSSimon Glass Acked-by: Their Name <email>
20028b3594eSDoug Anderson	These indicate that someone has tested/reviewed/acked your patch.
2010d24de9dSSimon Glass	When you get this reply on the mailing list, you can add this
2020d24de9dSSimon Glass	tag to the relevant commit and the script will include it when
2030d24de9dSSimon Glass	you send out the next version. If 'Tested-by:' is set to
2040d24de9dSSimon Glass	yourself, it will be removed. No one will believe you.
2050d24de9dSSimon Glass
2060d24de9dSSimon GlassSeries-changes: n
2070d24de9dSSimon Glass- Guinea pig moved into its cage
2080d24de9dSSimon Glass- Other changes ending with a blank line
2090d24de9dSSimon Glass<blank line>
2100d24de9dSSimon Glass	This can appear in any commit. It lists the changes for a
2110d24de9dSSimon Glass	particular version n of that commit. The change list is
2120d24de9dSSimon Glass	created based on this information. Each commit gets its own
2130d24de9dSSimon Glass	change list and also the whole thing is repeated in the cover
2140d24de9dSSimon Glass	letter (where duplicate change lines are merged).
2150d24de9dSSimon Glass
2160d24de9dSSimon Glass	By adding your change lists into your commits it is easier to
2170d24de9dSSimon Glass	keep track of what happened. When you amend a commit, remember
2180d24de9dSSimon Glass	to update the log there and then, knowing that the script will
2190d24de9dSSimon Glass	do the rest.
2200d24de9dSSimon Glass
221659c89daSSimon GlassPatch-cc: Their Name <email>
222659c89daSSimon Glass	This copies a single patch to another email address. Note that the
223659c89daSSimon Glass	Cc: used by git send-email is ignored by patman, but will be
224659c89daSSimon Glass	interpreted by git send-email if you use it.
225645b271aSSimon Glass
226645b271aSSimon GlassSeries-process-log: sort, uniq
227645b271aSSimon Glass	This tells patman to sort and/or uniq the change logs. It is
228645b271aSSimon Glass	assumed that each change log entry is only a single line long.
229645b271aSSimon Glass	Use 'sort' to sort the entries, and 'uniq' to include only
230645b271aSSimon Glass	unique entries. If omitted, no change log processing is done.
231645b271aSSimon Glass	Separate each tag with a comma.
2320d24de9dSSimon Glass
2330d24de9dSSimon GlassVarious other tags are silently removed, like these Chrome OS and
2340d24de9dSSimon GlassGerrit tags:
2350d24de9dSSimon Glass
2360d24de9dSSimon GlassBUG=...
2370d24de9dSSimon GlassTEST=...
2380d24de9dSSimon GlassChange-Id:
2390d24de9dSSimon GlassReview URL:
2400d24de9dSSimon GlassReviewed-on:
2415c8fdd91SAlbert ARIBAUDCommit-xxxx: (except Commit-notes)
2420d24de9dSSimon Glass
2430d24de9dSSimon GlassExercise for the reader: Try adding some tags to one of your current
2440d24de9dSSimon Glasspatch series and see how the patches turn out.
2450d24de9dSSimon Glass
2460d24de9dSSimon Glass
2470d24de9dSSimon GlassWhere Patches Are Sent
2480d24de9dSSimon Glass======================
2490d24de9dSSimon Glass
2501713247fSVikram NarayananOnce the patches are created, patman sends them using git send-email. The
2510d24de9dSSimon Glasswhole series is sent to the recipients in Series-to: and Series-cc.
252659c89daSSimon GlassYou can Cc individual patches to other people with the Patch-cc: tag. Tags
253659c89daSSimon Glassin the subject are also picked up to Cc patches. For example, a commit like
254659c89daSSimon Glassthis:
2550d24de9dSSimon Glass
2560d24de9dSSimon Glass>>>>
2570d24de9dSSimon Glasscommit 10212537b85ff9b6e09c82045127522c0f0db981
2580d24de9dSSimon GlassAuthor: Mike Frysinger <vapier@gentoo.org>
2590d24de9dSSimon GlassDate:	Mon Nov 7 23:18:44 2011 -0500
2600d24de9dSSimon Glass
2610d24de9dSSimon Glass    x86: arm: add a git mailrc file for maintainers
2620d24de9dSSimon Glass
2630d24de9dSSimon Glass    This should make sending out e-mails to the right people easier.
2640d24de9dSSimon Glass
265659c89daSSimon Glass    Patch-cc: sandbox, mikef, ag
266659c89daSSimon Glass    Patch-cc: afleming
2670d24de9dSSimon Glass<<<<
2680d24de9dSSimon Glass
2690d24de9dSSimon Glasswill create a patch which is copied to x86, arm, sandbox, mikef, ag and
2700d24de9dSSimon Glassafleming.
2710d24de9dSSimon Glass
272659c89daSSimon GlassIf you have a cover letter it will get sent to the union of the Patch-cc
273659c89daSSimon Glasslists of all of the other patches. If you want to sent it to additional
274659c89daSSimon Glasspeople you can add a tag:
275fe2f8d9eSSimon Glass
276fe2f8d9eSSimon GlassCover-letter-cc: <list of addresses>
277fe2f8d9eSSimon Glass
278fe2f8d9eSSimon GlassThese people will get the cover letter even if they are not on the To/Cc
279fe2f8d9eSSimon Glasslist for any of the patches.
28031187255SDoug Anderson
2810d24de9dSSimon Glass
2820d24de9dSSimon GlassExample Work Flow
2830d24de9dSSimon Glass=================
2840d24de9dSSimon Glass
2850d24de9dSSimon GlassThe basic workflow is to create your commits, add some tags to the top
2860d24de9dSSimon Glasscommit, and type 'patman' to check and send them.
2870d24de9dSSimon Glass
2880d24de9dSSimon GlassHere is an example workflow for a series of 4 patches. Let's say you have
2890d24de9dSSimon Glassthese rather contrived patches in the following order in branch us-cmd in
2900d24de9dSSimon Glassyour tree where 'us' means your upstreaming activity (newest to oldest as
2910d24de9dSSimon Glassoutput by git log --oneline):
2920d24de9dSSimon Glass
2930d24de9dSSimon Glass    7c7909c wip
2940d24de9dSSimon Glass    89234f5 Don't include standard parser if hush is used
2950d24de9dSSimon Glass    8d640a7 mmc: sparc: Stop using builtin_run_command()
2960d24de9dSSimon Glass    0c859a9 Rename run_command2() to run_command()
2970d24de9dSSimon Glass    a74443f sandbox: Rename run_command() to builtin_run_command()
2980d24de9dSSimon Glass
2990d24de9dSSimon GlassThe first patch is some test things that enable your code to be compiled,
3000d24de9dSSimon Glassbut that you don't want to submit because there is an existing patch for it
3010d24de9dSSimon Glasson the list. So you can tell patman to create and check some patches
3020d24de9dSSimon Glass(skipping the first patch) with:
3030d24de9dSSimon Glass
3040d24de9dSSimon Glass    patman -s1 -n
3050d24de9dSSimon Glass
3060d24de9dSSimon GlassIf you want to do all of them including the work-in-progress one, then
3070d24de9dSSimon Glass(if you are tracking an upstream branch):
3080d24de9dSSimon Glass
3090d24de9dSSimon Glass    patman -n
3100d24de9dSSimon Glass
3110d24de9dSSimon GlassLet's say that patman reports an error in the second patch. Then:
3120d24de9dSSimon Glass
3130d24de9dSSimon Glass    git rebase -i HEAD~6
3140d24de9dSSimon Glass    <change 'pick' to 'edit' in 89234f5>
3150d24de9dSSimon Glass    <use editor to make code changes>
3160d24de9dSSimon Glass    git add -u
3170d24de9dSSimon Glass    git rebase --continue
3180d24de9dSSimon Glass
3190d24de9dSSimon GlassNow you have an updated patch series. To check it:
3200d24de9dSSimon Glass
3210d24de9dSSimon Glass    patman -s1 -n
3220d24de9dSSimon Glass
3230d24de9dSSimon GlassLet's say it is now clean and you want to send it. Now you need to set up
3240d24de9dSSimon Glassthe destination. So amend the top commit with:
3250d24de9dSSimon Glass
3260d24de9dSSimon Glass    git commit --amend
3270d24de9dSSimon Glass
3280d24de9dSSimon GlassUse your editor to add some tags, so that the whole commit message is:
3290d24de9dSSimon Glass
3300d24de9dSSimon Glass    The current run_command() is really only one of the options, with
3310d24de9dSSimon Glass    hush providing the other. It really shouldn't be called directly
3320d24de9dSSimon Glass    in case the hush parser is bring used, so rename this function to
3330d24de9dSSimon Glass    better explain its purpose.
3340d24de9dSSimon Glass
3350d24de9dSSimon Glass    Series-to: u-boot
3360d24de9dSSimon Glass    Series-cc: bfin, marex
3370d24de9dSSimon Glass    Series-prefix: RFC
3380d24de9dSSimon Glass    Cover-letter:
3390d24de9dSSimon Glass    Unified command execution in one place
3400d24de9dSSimon Glass
3410d24de9dSSimon Glass    At present two parsers have similar code to execute commands. Also
3420d24de9dSSimon Glass    cmd_usage() is called all over the place. This series adds a single
3430d24de9dSSimon Glass    function which processes commands called cmd_process().
3440d24de9dSSimon Glass    END
3450d24de9dSSimon Glass
3460d24de9dSSimon Glass    Change-Id: Ica71a14c1f0ecb5650f771a32fecb8d2eb9d8a17
3470d24de9dSSimon Glass
3480d24de9dSSimon Glass
3490d24de9dSSimon GlassYou want this to be an RFC and Cc the whole series to the bfin alias and
3500d24de9dSSimon Glassto Marek. Two of the patches have tags (those are the bits at the front of
3510d24de9dSSimon Glassthe subject that say mmc: sparc: and sandbox:), so 8d640a7 will be Cc'd to
3520d24de9dSSimon Glassmmc and sparc, and the last one to sandbox.
3530d24de9dSSimon Glass
3540d24de9dSSimon GlassNow to send the patches, take off the -n flag:
3550d24de9dSSimon Glass
3560d24de9dSSimon Glass   patman -s1
3570d24de9dSSimon Glass
3580d24de9dSSimon GlassThe patches will be created, shown in your editor, and then sent along with
3590d24de9dSSimon Glassthe cover letter. Note that patman's tags are automatically removed so that
3600d24de9dSSimon Glasspeople on the list don't see your secret info.
3610d24de9dSSimon Glass
3620d24de9dSSimon GlassOf course patches often attract comments and you need to make some updates.
3630d24de9dSSimon GlassLet's say one person sent comments and you get an Acked-by: on one patch.
3640d24de9dSSimon GlassAlso, the patch on the list that you were waiting for has been merged,
3650d24de9dSSimon Glassso you can drop your wip commit. So you resync with upstream:
3660d24de9dSSimon Glass
3670d24de9dSSimon Glass    git fetch origin		(or whatever upstream is called)
3680d24de9dSSimon Glass    git rebase origin/master
3690d24de9dSSimon Glass
3700d24de9dSSimon Glassand use git rebase -i to edit the commits, dropping the wip one. You add
3710d24de9dSSimon Glassthe ack tag to one commit:
3720d24de9dSSimon Glass
3730d24de9dSSimon Glass    Acked-by: Heiko Schocher <hs@denx.de>
3740d24de9dSSimon Glass
3750d24de9dSSimon Glassupdate the Series-cc: in the top commit:
3760d24de9dSSimon Glass
3770d24de9dSSimon Glass    Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
3780d24de9dSSimon Glass
3790d24de9dSSimon Glassand remove the Series-prefix: tag since it it isn't an RFC any more. The
3800d24de9dSSimon Glassseries is now version two, so the series info in the top commit looks like
3810d24de9dSSimon Glassthis:
3820d24de9dSSimon Glass
3830d24de9dSSimon Glass    Series-to: u-boot
3840d24de9dSSimon Glass    Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
3850d24de9dSSimon Glass    Series-version: 2
3860d24de9dSSimon Glass    Cover-letter:
3870d24de9dSSimon Glass    ...
3880d24de9dSSimon Glass
3890d24de9dSSimon GlassFinally, you need to add a change log to the two commits you changed. You
3900d24de9dSSimon Glassadd change logs to each individual commit where the changes happened, like
3910d24de9dSSimon Glassthis:
3920d24de9dSSimon Glass
3930d24de9dSSimon Glass    Series-changes: 2
3940d24de9dSSimon Glass    - Updated the command decoder to reduce code size
3950d24de9dSSimon Glass    - Wound the torque propounder up a little more
3960d24de9dSSimon Glass
3970d24de9dSSimon Glass(note the blank line at the end of the list)
3980d24de9dSSimon Glass
3990d24de9dSSimon GlassWhen you run patman it will collect all the change logs from the different
4000d24de9dSSimon Glasscommits and combine them into the cover letter, if you have one. So finally
4010d24de9dSSimon Glassyou have a new series of commits:
4020d24de9dSSimon Glass
4030d24de9dSSimon Glass    faeb973 Don't include standard parser if hush is used
4040d24de9dSSimon Glass    1b2f2fe mmc: sparc: Stop using builtin_run_command()
4050d24de9dSSimon Glass    cfbe330 Rename run_command2() to run_command()
4060d24de9dSSimon Glass    0682677 sandbox: Rename run_command() to builtin_run_command()
4070d24de9dSSimon Glass
4080d24de9dSSimon Glassso to send them:
4090d24de9dSSimon Glass
4100d24de9dSSimon Glass    patman
4110d24de9dSSimon Glass
4120d24de9dSSimon Glassand it will create and send the version 2 series.
4130d24de9dSSimon Glass
4140d24de9dSSimon GlassGeneral points:
4150d24de9dSSimon Glass
4160d24de9dSSimon Glass1. When you change back to the us-cmd branch days or weeks later all your
4170d24de9dSSimon Glassinformation is still there, safely stored in the commits. You don't need
4180d24de9dSSimon Glassto remember what version you are up to, who you sent the last lot of patches
4190d24de9dSSimon Glassto, or anything about the change logs.
4200d24de9dSSimon Glass
4210d24de9dSSimon Glass2. If you put tags in the subject, patman will Cc the maintainers
4220d24de9dSSimon Glassautomatically in many cases.
4230d24de9dSSimon Glass
4240d24de9dSSimon Glass3. If you want to keep the commits from each series you sent so that you can
4250d24de9dSSimon Glasscompare change and see what you did, you can either create a new branch for
4260d24de9dSSimon Glasseach version, or just tag the branch before you start changing it:
4270d24de9dSSimon Glass
4280d24de9dSSimon Glass    git tag sent/us-cmd-rfc
4290d24de9dSSimon Glass    ...later...
4300d24de9dSSimon Glass    git tag sent/us-cmd-v2
4310d24de9dSSimon Glass
4320d24de9dSSimon Glass4. If you want to modify the patches a little before sending, you can do
4330d24de9dSSimon Glassthis in your editor, but be careful!
4340d24de9dSSimon Glass
4350d24de9dSSimon Glass5. If you want to run git send-email yourself, use the -n flag which will
4360d24de9dSSimon Glassprint out the command line patman would have used.
4370d24de9dSSimon Glass
4380d24de9dSSimon Glass6. It is a good idea to add the change log info as you change the commit,
4390d24de9dSSimon Glassnot later when you can't remember which patch you changed. You can always
4400d24de9dSSimon Glassgo back and change or remove logs from commits.
4410d24de9dSSimon Glass
4420d24de9dSSimon Glass
4430d24de9dSSimon GlassOther thoughts
4440d24de9dSSimon Glass==============
4450d24de9dSSimon Glass
4460d24de9dSSimon GlassThis script has been split into sensible files but still needs work.
4470d24de9dSSimon GlassMost of these are indicated by a TODO in the code.
4480d24de9dSSimon Glass
4490d24de9dSSimon GlassIt would be nice if this could handle the In-reply-to side of things.
4500d24de9dSSimon Glass
451c8605bb4SGerhard SittigThe tests are incomplete, as is customary. Use the --test flag to run them,
452c8605bb4SGerhard Sittigand make sure you are in the tools/patman directory first:
4530d24de9dSSimon Glass
4540d24de9dSSimon Glass    $ cd /path/to/u-boot
455c8605bb4SGerhard Sittig    $ cd tools/patman
456c8605bb4SGerhard Sittig    $ ./patman --test
4570d24de9dSSimon Glass
4580d24de9dSSimon GlassError handling doesn't always produce friendly error messages - e.g.
4590d24de9dSSimon Glassputting an incorrect tag in a commit may provide a confusing message.
4600d24de9dSSimon Glass
4610d24de9dSSimon GlassThere might be a few other features not mentioned in this README. They
4620d24de9dSSimon Glassmight be bugs. In particular, tags are case sensitive which is probably
4630d24de9dSSimon Glassa bad thing.
4640d24de9dSSimon Glass
4650d24de9dSSimon Glass
4660d24de9dSSimon GlassSimon Glass <sjg@chromium.org>
4670d24de9dSSimon Glassv1, v2, 19-Oct-11
4680d24de9dSSimon Glassrevised v3 24-Nov-11
469