README 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  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 development, 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. If you want to adjust settings (or aliases) that affect just a single
  88. project you can add a section that looks like [project_settings] or
  89. [project_alias]. If you want to use tags for your linux work, you could
  90. do:
  91. >>>
  92. [linux_settings]
  93. process_tags: True
  94. <<<
  95. How to run it
  96. =============
  97. First do a dry run:
  98. $ ./tools/patman/patman -n
  99. If it can't detect the upstream branch, try telling it how many patches
  100. there are in your series:
  101. $ ./tools/patman/patman -n -c5
  102. This will create patch files in your current directory and tell you who
  103. it is thinking of sending them to. Take a look at the patch files.
  104. $ ./tools/patman/patman -n -c5 -s1
  105. Similar to the above, but skip the first commit and take the next 5. This
  106. is useful if your top commit is for setting up testing.
  107. How to add tags
  108. ===============
  109. To make this script useful you must add tags like the following into any
  110. commit. Most can only appear once in the whole series.
  111. Series-to: email / alias
  112. Email address / alias to send patch series to (you can add this
  113. multiple times)
  114. Series-cc: email / alias, ...
  115. Email address / alias to Cc patch series to (you can add this
  116. multiple times)
  117. Series-version: n
  118. Sets the version number of this patch series
  119. Series-prefix: prefix
  120. Sets the subject prefix. Normally empty but it can be RFC for
  121. RFC patches, or RESEND if you are being ignored.
  122. Series-name: name
  123. Sets the name of the series. You don't need to have a name, and
  124. patman does not yet use it, but it is convenient to put the branch
  125. name here to help you keep track of multiple upstreaming efforts.
  126. Cover-letter:
  127. This is the patch set title
  128. blah blah
  129. more blah blah
  130. END
  131. Sets the cover letter contents for the series. The first line
  132. will become the subject of the cover letter
  133. Cover-letter-cc: email / alias
  134. Additional email addresses / aliases to send cover letter to (you
  135. can add this multiple times)
  136. Series-notes:
  137. blah blah
  138. blah blah
  139. more blah blah
  140. END
  141. Sets some notes for the patch series, which you don't want in
  142. the commit messages, but do want to send, The notes are joined
  143. together and put after the cover letter. Can appear multiple
  144. times.
  145. Signed-off-by: Their Name <email>
  146. A sign-off is added automatically to your patches (this is
  147. probably a bug). If you put this tag in your patches, it will
  148. override the default signoff that patman automatically adds.
  149. Tested-by: Their Name <email>
  150. Reviewed-by: Their Name <email>
  151. Acked-by: Their Name <email>
  152. These indicate that someone has tested/reviewed/acked your patch.
  153. When you get this reply on the mailing list, you can add this
  154. tag to the relevant commit and the script will include it when
  155. you send out the next version. If 'Tested-by:' is set to
  156. yourself, it will be removed. No one will believe you.
  157. Series-changes: n
  158. - Guinea pig moved into its cage
  159. - Other changes ending with a blank line
  160. <blank line>
  161. This can appear in any commit. It lists the changes for a
  162. particular version n of that commit. The change list is
  163. created based on this information. Each commit gets its own
  164. change list and also the whole thing is repeated in the cover
  165. letter (where duplicate change lines are merged).
  166. By adding your change lists into your commits it is easier to
  167. keep track of what happened. When you amend a commit, remember
  168. to update the log there and then, knowing that the script will
  169. do the rest.
  170. Cc: Their Name <email>
  171. This copies a single patch to another email address.
  172. Various other tags are silently removed, like these Chrome OS and
  173. Gerrit tags:
  174. BUG=...
  175. TEST=...
  176. Change-Id:
  177. Review URL:
  178. Reviewed-on:
  179. Exercise for the reader: Try adding some tags to one of your current
  180. patch series and see how the patches turn out.
  181. Where Patches Are Sent
  182. ======================
  183. Once the patches are created, patman sends them using git send-email. The
  184. whole series is sent to the recipients in Series-to: and Series-cc.
  185. You can Cc individual patches to other people with the Cc: tag. Tags in the
  186. subject are also picked up to Cc patches. For example, a commit like this:
  187. >>>>
  188. commit 10212537b85ff9b6e09c82045127522c0f0db981
  189. Author: Mike Frysinger <vapier@gentoo.org>
  190. Date: Mon Nov 7 23:18:44 2011 -0500
  191. x86: arm: add a git mailrc file for maintainers
  192. This should make sending out e-mails to the right people easier.
  193. Cc: sandbox, mikef, ag
  194. Cc: afleming
  195. <<<<
  196. will create a patch which is copied to x86, arm, sandbox, mikef, ag and
  197. afleming.
  198. If you have a cover letter it will get sent to the union of the CC lists of
  199. all of the other patches. If you want to sent it to additional people you
  200. can add a tag:
  201. Cover-letter-cc: <list of addresses>
  202. These people will get the cover letter even if they are not on the To/Cc
  203. list for any of the patches.
  204. Example Work Flow
  205. =================
  206. The basic workflow is to create your commits, add some tags to the top
  207. commit, and type 'patman' to check and send them.
  208. Here is an example workflow for a series of 4 patches. Let's say you have
  209. these rather contrived patches in the following order in branch us-cmd in
  210. your tree where 'us' means your upstreaming activity (newest to oldest as
  211. output by git log --oneline):
  212. 7c7909c wip
  213. 89234f5 Don't include standard parser if hush is used
  214. 8d640a7 mmc: sparc: Stop using builtin_run_command()
  215. 0c859a9 Rename run_command2() to run_command()
  216. a74443f sandbox: Rename run_command() to builtin_run_command()
  217. The first patch is some test things that enable your code to be compiled,
  218. but that you don't want to submit because there is an existing patch for it
  219. on the list. So you can tell patman to create and check some patches
  220. (skipping the first patch) with:
  221. patman -s1 -n
  222. If you want to do all of them including the work-in-progress one, then
  223. (if you are tracking an upstream branch):
  224. patman -n
  225. Let's say that patman reports an error in the second patch. Then:
  226. git rebase -i HEAD~6
  227. <change 'pick' to 'edit' in 89234f5>
  228. <use editor to make code changes>
  229. git add -u
  230. git rebase --continue
  231. Now you have an updated patch series. To check it:
  232. patman -s1 -n
  233. Let's say it is now clean and you want to send it. Now you need to set up
  234. the destination. So amend the top commit with:
  235. git commit --amend
  236. Use your editor to add some tags, so that the whole commit message is:
  237. The current run_command() is really only one of the options, with
  238. hush providing the other. It really shouldn't be called directly
  239. in case the hush parser is bring used, so rename this function to
  240. better explain its purpose.
  241. Series-to: u-boot
  242. Series-cc: bfin, marex
  243. Series-prefix: RFC
  244. Cover-letter:
  245. Unified command execution in one place
  246. At present two parsers have similar code to execute commands. Also
  247. cmd_usage() is called all over the place. This series adds a single
  248. function which processes commands called cmd_process().
  249. END
  250. Change-Id: Ica71a14c1f0ecb5650f771a32fecb8d2eb9d8a17
  251. You want this to be an RFC and Cc the whole series to the bfin alias and
  252. to Marek. Two of the patches have tags (those are the bits at the front of
  253. the subject that say mmc: sparc: and sandbox:), so 8d640a7 will be Cc'd to
  254. mmc and sparc, and the last one to sandbox.
  255. Now to send the patches, take off the -n flag:
  256. patman -s1
  257. The patches will be created, shown in your editor, and then sent along with
  258. the cover letter. Note that patman's tags are automatically removed so that
  259. people on the list don't see your secret info.
  260. Of course patches often attract comments and you need to make some updates.
  261. Let's say one person sent comments and you get an Acked-by: on one patch.
  262. Also, the patch on the list that you were waiting for has been merged,
  263. so you can drop your wip commit. So you resync with upstream:
  264. git fetch origin (or whatever upstream is called)
  265. git rebase origin/master
  266. and use git rebase -i to edit the commits, dropping the wip one. You add
  267. the ack tag to one commit:
  268. Acked-by: Heiko Schocher <hs@denx.de>
  269. update the Series-cc: in the top commit:
  270. Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
  271. and remove the Series-prefix: tag since it it isn't an RFC any more. The
  272. series is now version two, so the series info in the top commit looks like
  273. this:
  274. Series-to: u-boot
  275. Series-cc: bfin, marex, Heiko Schocher <hs@denx.de>
  276. Series-version: 2
  277. Cover-letter:
  278. ...
  279. Finally, you need to add a change log to the two commits you changed. You
  280. add change logs to each individual commit where the changes happened, like
  281. this:
  282. Series-changes: 2
  283. - Updated the command decoder to reduce code size
  284. - Wound the torque propounder up a little more
  285. (note the blank line at the end of the list)
  286. When you run patman it will collect all the change logs from the different
  287. commits and combine them into the cover letter, if you have one. So finally
  288. you have a new series of commits:
  289. faeb973 Don't include standard parser if hush is used
  290. 1b2f2fe mmc: sparc: Stop using builtin_run_command()
  291. cfbe330 Rename run_command2() to run_command()
  292. 0682677 sandbox: Rename run_command() to builtin_run_command()
  293. so to send them:
  294. patman
  295. and it will create and send the version 2 series.
  296. General points:
  297. 1. When you change back to the us-cmd branch days or weeks later all your
  298. information is still there, safely stored in the commits. You don't need
  299. to remember what version you are up to, who you sent the last lot of patches
  300. to, or anything about the change logs.
  301. 2. If you put tags in the subject, patman will Cc the maintainers
  302. automatically in many cases.
  303. 3. If you want to keep the commits from each series you sent so that you can
  304. compare change and see what you did, you can either create a new branch for
  305. each version, or just tag the branch before you start changing it:
  306. git tag sent/us-cmd-rfc
  307. ...later...
  308. git tag sent/us-cmd-v2
  309. 4. If you want to modify the patches a little before sending, you can do
  310. this in your editor, but be careful!
  311. 5. If you want to run git send-email yourself, use the -n flag which will
  312. print out the command line patman would have used.
  313. 6. It is a good idea to add the change log info as you change the commit,
  314. not later when you can't remember which patch you changed. You can always
  315. go back and change or remove logs from commits.
  316. Other thoughts
  317. ==============
  318. This script has been split into sensible files but still needs work.
  319. Most of these are indicated by a TODO in the code.
  320. It would be nice if this could handle the In-reply-to side of things.
  321. The tests are incomplete, as is customary. Use the -t flag to run them,
  322. and make sure you are in the tools/scripts/patman directory first:
  323. $ cd /path/to/u-boot
  324. $ cd tools/scripts/patman
  325. $ patman -t
  326. Error handling doesn't always produce friendly error messages - e.g.
  327. putting an incorrect tag in a commit may provide a confusing message.
  328. There might be a few other features not mentioned in this README. They
  329. might be bugs. In particular, tags are case sensitive which is probably
  330. a bad thing.
  331. Simon Glass <sjg@chromium.org>
  332. v1, v2, 19-Oct-11
  333. revised v3 24-Nov-11