1GIT-MAILINFO(1) Git Manual GIT-MAILINFO(1)
2
3
4
6 git-mailinfo - Extracts patch and authorship from a single e-mail
7 message
8
10 git mailinfo [-k|-b] [-u | --encoding=<encoding> | -n]
11 [--[no-]scissors] [--quoted-cr=<action>]
12 <msg> <patch>
13
15 Reads a single e-mail message from the standard input, and writes the
16 commit log message in <msg> file, and the patches in <patch> file. The
17 author name, e-mail and e-mail subject are written out to the standard
18 output to be used by git am to create a commit. It is usually not
19 necessary to use this command directly. See git-am(1) instead.
20
22 -k
23 Usually the program removes email cruft from the Subject: header
24 line to extract the title line for the commit log message. This
25 option prevents this munging, and is most useful when used to read
26 back git format-patch -k output.
27
28 Specifically, the following are removed until none of them remain:
29
30 • Leading and trailing whitespace.
31
32 • Leading Re:, re:, and :.
33
34 • Leading bracketed strings (between [ and ], usually [PATCH]).
35
36 Finally, runs of whitespace are normalized to a single ASCII space
37 character.
38
39 -b
40 When -k is not in effect, all leading strings bracketed with [ and
41 ] pairs are stripped. This option limits the stripping to only the
42 pairs whose bracketed string contains the word "PATCH".
43
44 -u
45 The commit log message, author name and author email are taken from
46 the e-mail, and after minimally decoding MIME transfer encoding,
47 re-coded in the charset specified by i18n.commitEncoding
48 (defaulting to UTF-8) by transliterating them. This used to be
49 optional but now it is the default.
50
51 Note that the patch is always used as-is without charset
52 conversion, even with this flag.
53
54 --encoding=<encoding>
55 Similar to -u. But when re-coding, the charset specified here is
56 used instead of the one specified by i18n.commitEncoding or UTF-8.
57
58 -n
59 Disable all charset re-coding of the metadata.
60
61 -m, --message-id
62 Copy the Message-ID header at the end of the commit message. This
63 is useful in order to associate commits with mailing list
64 discussions.
65
66 --scissors
67 Remove everything in body before a scissors line (e.g. "-- >8 --").
68 The line represents scissors and perforation marks, and is used to
69 request the reader to cut the message at that line. If that line
70 appears in the body of the message before the patch, everything
71 before it (including the scissors line itself) is ignored when this
72 option is used.
73
74 This is useful if you want to begin your message in a discussion
75 thread with comments and suggestions on the message you are
76 responding to, and to conclude it with a patch submission,
77 separating the discussion and the beginning of the proposed commit
78 log message with a scissors line.
79
80 This can be enabled by default with the configuration option
81 mailinfo.scissors.
82
83 --no-scissors
84 Ignore scissors lines. Useful for overriding mailinfo.scissors
85 settings.
86
87 --quoted-cr=<action>
88 Action when processes email messages sent with base64 or
89 quoted-printable encoding, and the decoded lines end with a CRLF
90 instead of a simple LF.
91
92 The valid actions are:
93
94 • nowarn: Git will do nothing when such a CRLF is found.
95
96 • warn: Git will issue a warning for each message if such a CRLF
97 is found.
98
99 • strip: Git will convert those CRLF to LF.
100
101 The default action could be set by configuration option
102 mailinfo.quotedCR. If no such configuration option has been set,
103 warn will be used.
104
105 <msg>
106 The commit log message extracted from e-mail, usually except the
107 title line which comes from e-mail Subject.
108
109 <patch>
110 The patch extracted from e-mail.
111
113 Everything below this line in this section is selectively included from
114 the git-config(1) documentation. The content is the same as what’s
115 found there:
116
117 mailinfo.scissors
118 If true, makes git-mailinfo(1) (and therefore git-am(1)) act by
119 default as if the --scissors option was provided on the
120 command-line. When active, this feature removes everything from the
121 message body before a scissors line (i.e. consisting mainly of
122 ">8", "8<" and "-").
123
125 Part of the git(1) suite
126
127
128
129Git 2.43.0 11/20/2023 GIT-MAILINFO(1)