README 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. # Copyright (c) 2011 The Chromium OS Authors.
  2. #
  3. # See file CREDITS for list of people who contributed to this
  4. # project.
  5. #
  6. # This program is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License as
  8. # published by the Free Software Foundation; either version 2 of
  9. # the License, or (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  19. # MA 02111-1307 USA
  20. #
  21. What is this?
  22. =============
  23. This tool is a Python script which:
  24. - Creates patch directly from your branch
  25. - Cleans them up by removing unwanted tags
  26. - Inserts a cover letter with change lists
  27. - Runs the patches through checkpatch.pl and its own checks
  28. - Optionally emails them out to selected people
  29. It is intended to automate patch creation and make it a less
  30. error-prone process. It is useful for U-Boot and Linux work so far,
  31. since it uses the checkpatch.pl script.
  32. It is configured almost entirely by tags it finds in your commits.
  33. This means that you can work on a number of different branches at
  34. once, and keep the settings with each branch rather than having to
  35. git format-patch, git send-email, etc. with the correct parameters
  36. each time. So for example if you put:
  37. Series-to: fred.blogs@napier.co.nz
  38. in one of your commits, the series will be sent there.
  39. In Linux this will also call get_maintainer.pl on each of your
  40. patches automatically.
  41. How to use this tool
  42. ====================
  43. This tool requires a certain way of working:
  44. - Maintain a number of branches, one for each patch series you are
  45. working on
  46. - Add tags into the commits within each branch to indicate where the
  47. series should be sent, cover letter, version, etc. Most of these are
  48. normally in the top commit so it is easy to change them with 'git
  49. commit --amend'
  50. - Each branch tracks the upstream branch, so that this script can
  51. automatically determine the number of commits in it (optional)
  52. - Check out a branch, and run this script to create and send out your
  53. patches. Weeks later, change the patches and repeat, knowing that you
  54. will get a consistent result each time.
  55. How to configure it
  56. ===================
  57. For most cases of using patman for U-Boot developement patman will
  58. locate and use the file 'doc/git-mailrc' in your U-Boot directory.
  59. This contains most of the aliases you will need.
  60. For Linux the 'scripts/get_maintainer.pl' handles figuring out where
  61. to send patches pretty well.
  62. During the first run patman creates a config file for you by taking the default
  63. user name and email address from the global .gitconfig file.
  64. To add your own, create a file ~/.patman like this:
  65. >>>>
  66. # patman alias file
  67. [alias]
  68. me: Simon Glass <sjg@chromium.org>
  69. u-boot: U-Boot Mailing List <u-boot@lists.denx.de>
  70. wolfgang: Wolfgang Denk <wd@denx.de>
  71. others: Mike Frysinger <vapier@gentoo.org>, Fred Bloggs <f.bloggs@napier.net>
  72. <<<<
  73. Aliases are recursive.
  74. The checkpatch.pl in the U-Boot tools/ subdirectory will be located and
  75. used. Failing that you can put it into your path or ~/bin/checkpatch.pl
  76. If you want to change the defaults for patman's command-line arguments,
  77. you can add a [settings] section to your .patman file. This can be used
  78. for any command line option by referring to the "dest" for the option in
  79. patman.py. For reference, the useful ones (at the moment) shown below
  80. (all with the non-default setting):
  81. >>>
  82. [settings]
  83. ignore_errors: True
  84. process_tags: False
  85. verbose: True
  86. <<<
  87. How to run it
  88. =============
  89. First do a dry run:
  90. $ ./tools/patman/patman -n
  91. If it can't detect the upstream branch, try telling it how many patches
  92. there are in your series:
  93. $ ./tools/patman/patman -n -c5
  94. This will create patch files in your current directory and tell you who
  95. it is thinking of sending them to. Take a look at the patch files.
  96. $ ./tools/patman/patman -n -c5 -s1
  97. Similar to the above, but skip the first commit and take the next 5. This
  98. is useful if your top commit is for setting up testing.
  99. How to add tags
  100. ===============
  101. To make this script useful you must add tags like the following into any
  102. commit. Most can only appear once in the whole series.
  103. Series-to: email / alias
  104. Email address / alias to send patch series to (you can add this
  105. multiple times)
  106. Series-cc: email / alias, ...
  107. Email address / alias to Cc patch series to (you can add this
  108. multiple times)
  109. Series-version: n
  110. Sets the version number of this patch series
  111. Series-prefix: prefix
  112. Sets the subject prefix. Normally empty but it can be RFC for
  113. RFC patches, or RESEND if you are being ignored.
  114. Series-name: name
  115. Sets the name of the series. You don't need to have a name, and
  116. patman does not yet use it, but it is convenient to put the branch
  117. name here to help you keep track of multiple upstreaming efforts.
  118. Cover-letter:
  119. This is the patch set title
  120. blah blah
  121. more blah blah
  122. END
  123. Sets the cover letter contents for the series. The first line
  124. will become the subject of the cover letter
  125. Series-notes:
  126. blah blah
  127. blah blah
  128. more blah blah
  129. END
  130. Sets some notes for the patch series, which you don't want in
  131. the commit messages, but do want to send, The notes are joined
  132. together and put after the cover letter. Can appear multiple
  133. times.
  134. Signed-off-by: Their Name <email>
  135. A sign-off is added automatically to your patches (this is
  136. probably a bug). If you put this tag in your patches, it will
  137. override the default signoff that patman automatically adds.
  138. Tested-by: Their Name <email>
  139. Acked-by: Their Name <email>
  140. These indicate that someone has acked or tested your patch.
  141. When you get this reply on the mailing list, you can add this
  142. tag to the relevant commit and the script will include it when
  143. you send out the next version. If 'Tested-by:' is set to
  144. yourself, it will be removed. No one will believe you.
  145. Series-changes: n
  146. - Guinea pig moved into its cage
  147. - Other changes ending with a blank line
  148. <blank line>
  149. This can appear in any commit. It lists the changes for a
  150. particular version n of that commit. The change list is
  151. created based on this information. Each commit gets its own
  152. change list and also the whole thing is repeated in the cover
  153. letter (where duplicate change lines are merged).
  154. By adding your change lists into your commits it is easier to
  155. keep track of what happened. When you amend a commit, remember
  156. to update the log there and then, knowing that the script will
  157. do the rest.
  158. Cc: Their Name <email>
  159. This copies a single patch to another email address.
  160. Various other tags are silently removed, like these Chrome OS and
  161. Gerrit tags:
  162. BUG=...
  163. TEST=...
  164. Change-Id:
  165. Review URL:
  166. Reviewed-on:
  167. Reviewed-by:
  168. Exercise for the reader: Try adding some tags to one of your current
  169. patch series and see how the patches turn out.
  170. Where Patches Are Sent
  171. ======================
  172. Once the patches are created, patman sends them using git send-email. The
  173. whole series is sent to the recipients in Series-to: and Series-cc.
  174. You can Cc individual patches to other people with the Cc: tag. Tags in the
  175. subject are also picked up to Cc patches. For example, a commit like this:
  176. >>>>
  177. commit 10212537b85ff9b6e09c82045127522c0f0db981
  178. Author: Mike Frysinger <vapier@gentoo.org>
  179. Date: Mon Nov 7 23:18:44 2011 -0500
  180. x86: arm: add a git mailrc file for maintainers
  181. This should make sending out e-mails to the right people easier.
  182. Cc: sandbox, mikef, ag
  183. Cc: afleming
  184. <<<<
  185. will create a patch which is copied to x86, arm, sandbox, mikef, ag and
  186. afleming.
  187. If you have a cover letter it will get sent to the union of the CC lists of
  188. all of the other patches.
  189. Example Work Flow
  190. =================
  191. The basic workflow is to create your commits, add some tags to the top
  192. commit, and type 'patman' to check and send them.
  193. Here is an example workflow for a series of 4 patches. Let's say you have
  194. these rather contrived patches in the following order in branch us-cmd in
  195. your tree where 'us' means your upstreaming activity (newest to oldest as
  196. output by git log --oneline):
  197. 7c7909c wip
  198. 89234f5 Don't include standard parser if hush is used
  199. 8d640a7 mmc: sparc: Stop using builtin_run_command()
  200. 0c859a9 Rename run_command2() to run_command()
  201. a74443f sandbox: Rename run_command() to builtin_run_command()
  202. The first patch is some test things that enable your code to be compiled,
  203. but that you don't want to submit because there is an existing patch for it
  204. on the list. So you can tell patman to create and check some patches
  205. (skipping the first patch) with:
  206. patman -s1 -n
  207. If you want to do all of them including the work-in-progress one, then
  208. (if you are tracking an upstream branch):
  209. patman -n
  210. Let's say that patman reports an error in the second patch. Then:
  211. git rebase -i HEAD~6
  212. <change 'pick' to 'edit' in 89234f5>
  213. <use editor to make code changes>
  214. git add -u
  215. git rebase --continue
  216. Now you have an updated patch series. To check it:
  217. patman -s1 -n
  218. Let's say it is now clean and you want to send it. Now you need to set up
  219. the destination. So amend the top commit with:
  220. git commit --amend
  221. Use your editor to add some tags, so that the whole commit message is:
  222. The current run_command() is really only one of the options, with
  223. hush providing the other. It really shouldn't be called directly
  224. in case the hush parser is bring used, so rename this function to
  225. better explain its purpose.
  226. Series-to: u-boot
  227. Series-cc: bfin, marex
  228. Series-prefix: RFC
  229. Cover-letter:
  230. Unified command execution in one place
  231. At present two parsers have similar code to execute commands. Also
  232. cmd_usage() is called all over the place. This series adds a single
  233. function which processes commands called cmd_process().
  234. END
  235. Change-Id: Ica71a14c1f0ecb5650f771a32fecb8d2eb9d8a17
  236. You want this to be an RFC and Cc the whole series to the bfin alias and
  237. to Marek. Two of the patches have tags (those are the bits at the front of
  238. the subject that say mmc: sparc: and sandbox:), so 8d640a7 will be Cc'd to
  239. mmc and sparc, and the last one to sandbox.
  240. Now to send the patches, take off the -n flag:
  241. patman -s1
  242. The patches will be created, shown in your editor, and then sent along with
  243. the cover letter. Note that patman's tags are automatically removed so that
  244. people on the list don't see your secret info.
  245. Of course patches often attract comments and you need to make some updates.
  246. Let's say one person sent comments and you get an Acked-by: on one patch.
  247. Also, the patch on the list that you were waiting for has been merged,
  248. so you can drop your wip commit. So you resync with upstream:
  249. git fetch origin (or whatever upstream is called)
  250. git rebase origin/master
  251. and use git rebase -i to edit the commits, dropping the wip one. You add
  252. the ack tag to one commit:
  253. Acked-by: Heiko Schocher <hs@denx.de>
  254. update the Series-cc: in the top commit:
  255. Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
  256. and remove the Series-prefix: tag since it it isn't an RFC any more. The
  257. series is now version two, so the series info in the top commit looks like
  258. this:
  259. Series-to: u-boot
  260. Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
  261. Series-version: 2
  262. Cover-letter:
  263. ...
  264. Finally, you need to add a change log to the two commits you changed. You
  265. add change logs to each individual commit where the changes happened, like
  266. this:
  267. Series-changes: 2
  268. - Updated the command decoder to reduce code size
  269. - Wound the torque propounder up a little more
  270. (note the blank line at the end of the list)
  271. When you run patman it will collect all the change logs from the different
  272. commits and combine them into the cover letter, if you have one. So finally
  273. you have a new series of commits:
  274. faeb973 Don't include standard parser if hush is used
  275. 1b2f2fe mmc: sparc: Stop using builtin_run_command()
  276. cfbe330 Rename run_command2() to run_command()
  277. 0682677 sandbox: Rename run_command() to builtin_run_command()
  278. so to send them:
  279. patman
  280. and it will create and send the version 2 series.
  281. General points:
  282. 1. When you change back to the us-cmd branch days or weeks later all your
  283. information is still there, safely stored in the commits. You don't need
  284. to remember what version you are up to, who you sent the last lot of patches
  285. to, or anything about the change logs.
  286. 2. If you put tags in the subject, patman will Cc the maintainers
  287. automatically in many cases.
  288. 3. If you want to keep the commits from each series you sent so that you can
  289. compare change and see what you did, you can either create a new branch for
  290. each version, or just tag the branch before you start changing it:
  291. git tag sent/us-cmd-rfc
  292. ...later...
  293. git tag sent/us-cmd-v2
  294. 4. If you want to modify the patches a little before sending, you can do
  295. this in your editor, but be careful!
  296. 5. If you want to run git send-email yourself, use the -n flag which will
  297. print out the command line patman would have used.
  298. 6. It is a good idea to add the change log info as you change the commit,
  299. not later when you can't remember which patch you changed. You can always
  300. go back and change or remove logs from commits.
  301. Other thoughts
  302. ==============
  303. This script has been split into sensible files but still needs work.
  304. Most of these are indicated by a TODO in the code.
  305. It would be nice if this could handle the In-reply-to side of things.
  306. The tests are incomplete, as is customary. Use the -t flag to run them,
  307. and make sure you are in the tools/scripts/patman directory first:
  308. $ cd /path/to/u-boot
  309. $ cd tools/scripts/patman
  310. $ patman -t
  311. Error handling doesn't always produce friendly error messages - e.g.
  312. putting an incorrect tag in a commit may provide a confusing message.
  313. There might be a few other features not mentioned in this README. They
  314. might be bugs. In particular, tags are case sensitive which is probably
  315. a bad thing.
  316. Simon Glass <sjg@chromium.org>
  317. v1, v2, 19-Oct-11
  318. revised v3 24-Nov-11