Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 1 | git-mailinfo(1) |
| 2 | =============== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | c3f0baa | 2007-01-18 15:53:37 -0800 | [diff] [blame] | 6 | git-mailinfo - Extracts patch and authorship from a single e-mail message |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Martin von Zweigbergk | 7791a1d | 2011-07-01 22:38:26 -0400 | [diff] [blame] | 11 | [verse] |
Đoàn Trần Công Danh | f1aa299 | 2021-05-10 00:12:11 +0700 | [diff] [blame] | 12 | 'git mailinfo' [-k|-b] [-u | --encoding=<encoding> | -n] |
| 13 | [--[no-]scissors] [--quoted-cr=<action>] |
| 14 | <msg> <patch> |
Junio C Hamano | f85a419 | 2005-08-29 17:21:06 -0700 | [diff] [blame] | 15 | |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 16 | |
| 17 | DESCRIPTION |
| 18 | ----------- |
Markus Heidelberg | 04c8ce9 | 2008-12-19 13:14:18 +0100 | [diff] [blame] | 19 | Reads a single e-mail message from the standard input, and |
Junio C Hamano | f85a419 | 2005-08-29 17:21:06 -0700 | [diff] [blame] | 20 | writes the commit log message in <msg> file, and the patches in |
| 21 | <patch> file. The author name, e-mail and e-mail subject are |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 22 | written out to the standard output to be used by 'git am' |
Junio C Hamano | f85a419 | 2005-08-29 17:21:06 -0700 | [diff] [blame] | 23 | to create a commit. It is usually not necessary to use this |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 24 | command directly. See linkgit:git-am[1] instead. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 25 | |
| 26 | |
| 27 | OPTIONS |
| 28 | ------- |
Junio C Hamano | f85a419 | 2005-08-29 17:21:06 -0700 | [diff] [blame] | 29 | -k:: |
Thomas Rast | 82553cb | 2012-01-11 21:13:42 +0100 | [diff] [blame] | 30 | Usually the program removes email cruft from the Subject: |
| 31 | header line to extract the title line for the commit log |
| 32 | message. This option prevents this munging, and is most |
| 33 | useful when used to read back 'git format-patch -k' output. |
| 34 | + |
| 35 | Specifically, the following are removed until none of them remain: |
| 36 | + |
| 37 | -- |
| 38 | * Leading and trailing whitespace. |
| 39 | |
| 40 | * Leading `Re:`, `re:`, and `:`. |
| 41 | |
| 42 | * Leading bracketed strings (between `[` and `]`, usually |
| 43 | `[PATCH]`). |
| 44 | -- |
| 45 | + |
| 46 | Finally, runs of whitespace are normalized to a single ASCII space |
| 47 | character. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 48 | |
Junio C Hamano | 17635fc | 2009-07-15 15:31:12 -0700 | [diff] [blame] | 49 | -b:: |
| 50 | When -k is not in effect, all leading strings bracketed with '[' |
| 51 | and ']' pairs are stripped. This option limits the stripping to |
| 52 | only the pairs whose bracketed string contains the word "PATCH". |
| 53 | |
Junio C Hamano | f85a419 | 2005-08-29 17:21:06 -0700 | [diff] [blame] | 54 | -u:: |
Junio C Hamano | bb1091a | 2007-01-09 21:31:36 -0800 | [diff] [blame] | 55 | The commit log message, author name and author email are |
| 56 | taken from the e-mail, and after minimally decoding MIME |
Zhang Le | e0a9110 | 2010-06-14 02:49:47 +0800 | [diff] [blame] | 57 | transfer encoding, re-coded in the charset specified by |
Denton Liu | 77645b5 | 2021-02-24 12:26:39 -0800 | [diff] [blame] | 58 | `i18n.commitEncoding` (defaulting to UTF-8) by transliterating |
Junio C Hamano | bb1091a | 2007-01-09 21:31:36 -0800 | [diff] [blame] | 59 | them. This used to be optional but now it is the default. |
| 60 | + |
| 61 | Note that the patch is always used as-is without charset |
| 62 | conversion, even with this flag. |
Junio C Hamano | f85a419 | 2005-08-29 17:21:06 -0700 | [diff] [blame] | 63 | |
Junio C Hamano | 9f63892 | 2005-11-28 01:29:52 -0800 | [diff] [blame] | 64 | --encoding=<encoding>:: |
Zhang Le | e0a9110 | 2010-06-14 02:49:47 +0800 | [diff] [blame] | 65 | Similar to -u. But when re-coding, the charset specified here is |
Denton Liu | 77645b5 | 2021-02-24 12:26:39 -0800 | [diff] [blame] | 66 | used instead of the one specified by `i18n.commitEncoding` or UTF-8. |
Junio C Hamano | 9f63892 | 2005-11-28 01:29:52 -0800 | [diff] [blame] | 67 | |
Lukas Sandström | b495818 | 2008-07-10 23:36:28 +0200 | [diff] [blame] | 68 | -n:: |
| 69 | Disable all charset re-coding of the metadata. |
| 70 | |
Paolo Bonzini | 452dfbe | 2014-11-25 15:00:55 +0100 | [diff] [blame] | 71 | -m:: |
| 72 | --message-id:: |
| 73 | Copy the Message-ID header at the end of the commit message. This |
| 74 | is useful in order to associate commits with mailing list discussions. |
| 75 | |
Junio C Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 76 | --scissors:: |
Evan Gates | 287416d | 2020-09-28 15:51:08 -0700 | [diff] [blame] | 77 | Remove everything in body before a scissors line (e.g. "-- >8 --"). |
| 78 | The line represents scissors and perforation marks, and is used to |
| 79 | request the reader to cut the message at that line. If that line |
Junio C Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 80 | appears in the body of the message before the patch, everything |
| 81 | before it (including the scissors line itself) is ignored when |
| 82 | this option is used. |
| 83 | + |
| 84 | This is useful if you want to begin your message in a discussion thread |
| 85 | with comments and suggestions on the message you are responding to, and to |
| 86 | conclude it with a patch submission, separating the discussion and the |
| 87 | beginning of the proposed commit log message with a scissors line. |
Nicolas Sebrecht | 434a6db | 2009-09-11 02:29:58 +0200 | [diff] [blame] | 88 | + |
Vasco Almeida | dee2303 | 2016-05-11 20:42:54 +0000 | [diff] [blame] | 89 | This can be enabled by default with the configuration option mailinfo.scissors. |
Nicolas Sebrecht | 434a6db | 2009-09-11 02:29:58 +0200 | [diff] [blame] | 90 | |
| 91 | --no-scissors:: |
| 92 | Ignore scissors lines. Useful for overriding mailinfo.scissors settings. |
Junio C Hamano | 017678b | 2009-08-26 21:36:05 -0700 | [diff] [blame] | 93 | |
Đoàn Trần Công Danh | f1aa299 | 2021-05-10 00:12:11 +0700 | [diff] [blame] | 94 | --quoted-cr=<action>:: |
| 95 | Action when processes email messages sent with base64 or |
| 96 | quoted-printable encoding, and the decoded lines end with a CRLF |
| 97 | instead of a simple LF. |
| 98 | + |
| 99 | The valid actions are: |
| 100 | + |
| 101 | -- |
| 102 | * `nowarn`: Git will do nothing when such a CRLF is found. |
| 103 | * `warn`: Git will issue a warning for each message if such a CRLF is |
| 104 | found. |
Đoàn Trần Công Danh | 133a4fd | 2021-05-10 00:12:12 +0700 | [diff] [blame] | 105 | * `strip`: Git will convert those CRLF to LF. |
Đoàn Trần Công Danh | f1aa299 | 2021-05-10 00:12:11 +0700 | [diff] [blame] | 106 | -- |
| 107 | + |
| 108 | The default action could be set by configuration option `mailinfo.quotedCR`. |
| 109 | If no such configuration option has been set, `warn` will be used. |
| 110 | |
Junio C Hamano | f85a419 | 2005-08-29 17:21:06 -0700 | [diff] [blame] | 111 | <msg>:: |
| 112 | The commit log message extracted from e-mail, usually |
| 113 | except the title line which comes from e-mail Subject. |
| 114 | |
| 115 | <patch>:: |
| 116 | The patch extracted from e-mail. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 117 | |
Ævar Arnfjörð Bjarmason | 16f6b0d | 2022-09-07 10:27:04 +0200 | [diff] [blame] | 118 | CONFIGURATION |
| 119 | ------------- |
| 120 | |
| 121 | include::includes/cmd-config-section-all.txt[] |
| 122 | |
| 123 | include::config/mailinfo.txt[] |
| 124 | |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 125 | GIT |
| 126 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 127 | Part of the linkgit:git[1] suite |