]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/pretty-formats.txt
Start the 2.46 cycle
[thirdparty/git.git] / Documentation / pretty-formats.txt
CommitLineData
331b51d2
JN
1PRETTY FORMATS
2--------------
3
4If the commit is a merge, and if the pretty-format
5is not 'oneline', 'email' or 'raw', an additional line is
6inserted before the 'Author:' line. This line begins with
bae74c9d 7"Merge: " and the hashes of ancestral commits are printed,
331b51d2
JN
8separated by spaces. Note that the listed commits may not
9necessarily be the list of the *direct* parent commits if you
10have limited your view of history: for example, if you are
11only interested in changes related to a certain directory or
12file.
13
8028184e
WP
14There are several built-in formats, and you can define
15additional formats by setting a pretty.<name>
16config option to either another format name, or a
17'format:' string, as described below (see
18linkgit:git-config[1]). Here are the details of the
19built-in formats:
331b51d2
JN
20
21* 'oneline'
5d1faf87 22
133db54d 23 <hash> <title-line>
5d1faf87
CR
24+
25This is designed to be as compact as possible.
26
331b51d2 27* 'short'
5d1faf87 28
bae74c9d 29 commit <hash>
5d1faf87
CR
30 Author: <author>
31
133db54d 32 <title-line>
5d1faf87 33
331b51d2 34* 'medium'
5d1faf87 35
bae74c9d 36 commit <hash>
5d1faf87 37 Author: <author>
133db54d 38 Date: <author-date>
5d1faf87 39
133db54d 40 <title-line>
5d1faf87 41
133db54d 42 <full-commit-message>
5d1faf87 43
331b51d2 44* 'full'
5d1faf87 45
bae74c9d 46 commit <hash>
5d1faf87
CR
47 Author: <author>
48 Commit: <committer>
49
133db54d 50 <title-line>
5d1faf87 51
133db54d 52 <full-commit-message>
5d1faf87 53
331b51d2 54* 'fuller'
5d1faf87 55
bae74c9d 56 commit <hash>
ec9f0ea3 57 Author: <author>
133db54d 58 AuthorDate: <author-date>
ec9f0ea3 59 Commit: <committer>
133db54d 60 CommitDate: <committer-date>
5d1faf87 61
133db54d 62 <title-line>
5d1faf87 63
133db54d 64 <full-commit-message>
5d1faf87 65
1f0fc1db
DL
66* 'reference'
67
133db54d 68 <abbrev-hash> (<title-line>, <short-author-date>)
1f0fc1db
DL
69+
70This format is used to refer to another commit in a commit message and
71is the same as `--pretty='format:%C(auto)%h (%s, %ad)'`. By default,
72the date is formatted with `--date=short` unless another `--date` option
73is explicitly specified. As with any `format:` with format
74placeholders, its output is not affected by other options like
75`--decorate` and `--walk-reflogs`.
76
331b51d2 77* 'email'
5d1faf87 78
bae74c9d 79 From <hash> <date>
5d1faf87 80 From: <author>
133db54d
JNA
81 Date: <author-date>
82 Subject: [PATCH] <title-line>
5d1faf87 83
133db54d 84 <full-commit-message>
5d1faf87 85
88eaf361
EB
86* 'mboxrd'
87+
88Like 'email', but lines in the commit message starting with "From "
89(preceded by zero or more ">") are quoted with ">" so they aren't
90confused as starting a new commit.
91
331b51d2 92* 'raw'
5d1faf87
CR
93+
94The 'raw' format shows the entire commit exactly as
bae74c9d 95stored in the commit object. Notably, the hashes are
5d1faf87
CR
96displayed in full, regardless of whether --abbrev or
97--no-abbrev are used, and 'parents' information show the
a58088ab 98true parent commits, without taking grafts or history
92de9217
MM
99simplification into account. Note that this format affects the way
100commits are displayed, but not the way the diff is shown e.g. with
101`git log --raw`. To get full object names in a raw diff format,
102use `--no-abbrev`.
7cbcf4d5 103
133db54d 104* 'format:<format-string>'
e52a5de4 105+
133db54d 106The 'format:<format-string>' format allows you to specify which information
e52a5de4
JS
107you want to show. It works a little bit like printf format,
108with the notable exception that you get a newline with '%n'
109instead of '\n'.
331b51d2
JN
110+
111E.g, 'format:"The author of %h was %an, %ar%nThe title was >>%s<<%n"'
e52a5de4 112would show something like this:
331b51d2
JN
113+
114-------
e52a5de4
JS
115The author of fe6e0ee was Junio C Hamano, 23 hours ago
116The title was >>t4119: test autocomputing -p<n> for traditional diff input.<<
117
c30c43c0 118-------
331b51d2 119+
e52a5de4
JS
120The placeholders are:
121
42617752
AW
122- Placeholders that expand to a single literal character:
123'%n':: newline
124'%%':: a raw '%'
014aa1d1
JH
125'%x00':: '%x' followed by two hexadecimal digits is replaced with a
126 byte with the hexadecimal digits' value (we will call this
127 "literal formatting code" in the rest of this document).
42617752
AW
128
129- Placeholders that affect formatting of later placeholders:
130'%Cred':: switch color to red
131'%Cgreen':: switch color to green
132'%Cblue':: switch color to blue
133'%Creset':: reset color
134'%C(...)':: color specification, as described under Values in the
135 "CONFIGURATION FILE" section of linkgit:git-config[1]. By
136 default, colors are shown only when enabled for log output
137 (by `color.diff`, `color.ui`, or `--color`, and respecting
138 the `auto` settings of the former if we are going to a
139 terminal). `%C(auto,...)` is accepted as a historical
140 synonym for the default (e.g., `%C(auto,red)`). Specifying
42977bf5 141 `%C(always,...)` will show the colors even when color is
42617752
AW
142 not otherwise enabled (though consider just using
143 `--color=always` to enable color for the whole output,
144 including this format and anything else git might color).
145 `auto` alone (i.e. `%C(auto)`) will turn on auto coloring
146 on the next placeholders until the color is switched
147 again.
148'%m':: left (`<`), right (`>`) or boundary (`-`) mark
149'%w([<w>[,<i1>[,<i2>]]])':: switch line wrapping, like the -w option of
150 linkgit:git-shortlog[1].
d664a7ad 151'%<( <N> [,trunc|ltrunc|mtrunc])':: make the next placeholder take at
8bcb8f8e 152 least N column widths, padding spaces on
42617752 153 the right if necessary. Optionally
b5cd634d
PO
154 truncate (with ellipsis '..') at the left (ltrunc) `..ft`,
155 the middle (mtrunc) `mi..le`, or the end
156 (trunc) `rig..`, if the output is longer than
d664a7ad
PO
157 N columns.
158 Note 1: that truncating
42617752 159 only works correctly with N >= 2.
8bcb8f8e 160 Note 2: spaces around the N and M (see below)
d664a7ad 161 values are optional.
540e7bc4
PO
162 Note 3: Emojis and other wide characters
163 will take two display columns, which may
164 over-run column boundaries.
165 Note 4: decomposed character combining marks
166 may be misplaced at padding boundaries.
8bcb8f8e 167'%<|( <M> )':: make the next placeholder take at least until Mth
63792c56
PO
168 display column, padding spaces on the right if necessary.
169 Use negative M values for column positions measured
170 from the right hand edge of the terminal window.
8bcb8f8e 171'%>( <N> )', '%>|( <M> )':: similar to '%<( <N> )', '%<|( <M> )' respectively,
42617752 172 but padding spaces on the left
8bcb8f8e 173'%>>( <N> )', '%>>|( <M> )':: similar to '%>( <N> )', '%>|( <M> )'
42617752
AW
174 respectively, except that if the next
175 placeholder takes more spaces than given and
176 there are spaces on its left, use those
177 spaces
8bcb8f8e 178'%><( <N> )', '%><|( <M> )':: similar to '%<( <N> )', '%<|( <M> )'
42617752
AW
179 respectively, but padding both sides
180 (i.e. the text is centered)
181
182- Placeholders that expand to information extracted from the commit:
183'%H':: commit hash
184'%h':: abbreviated commit hash
185'%T':: tree hash
186'%t':: abbreviated tree hash
187'%P':: parent hashes
188'%p':: abbreviated parent hashes
189'%an':: author name
190'%aN':: author name (respecting .mailmap, see linkgit:git-shortlog[1]
191 or linkgit:git-blame[1])
192'%ae':: author email
193'%aE':: author email (respecting .mailmap, see linkgit:git-shortlog[1]
194 or linkgit:git-blame[1])
d8b8217c
PB
195'%al':: author email local-part (the part before the '@' sign)
196'%aL':: author local-part (see '%al') respecting .mailmap, see
197 linkgit:git-shortlog[1] or linkgit:git-blame[1])
42617752
AW
198'%ad':: author date (format respects --date= option)
199'%aD':: author date, RFC2822 style
200'%ar':: author date, relative
201'%at':: author date, UNIX timestamp
202'%ai':: author date, ISO 8601-like format
203'%aI':: author date, strict ISO 8601 format
0df62117 204'%as':: author date, short format (`YYYY-MM-DD`)
b722d456
ZH
205'%ah':: author date, human style (like the `--date=human` option of
206 linkgit:git-rev-list[1])
42617752
AW
207'%cn':: committer name
208'%cN':: committer name (respecting .mailmap, see
209 linkgit:git-shortlog[1] or linkgit:git-blame[1])
210'%ce':: committer email
211'%cE':: committer email (respecting .mailmap, see
212 linkgit:git-shortlog[1] or linkgit:git-blame[1])
087bf540
MK
213'%cl':: committer email local-part (the part before the '@' sign)
214'%cL':: committer local-part (see '%cl') respecting .mailmap, see
d8b8217c 215 linkgit:git-shortlog[1] or linkgit:git-blame[1])
42617752
AW
216'%cd':: committer date (format respects --date= option)
217'%cD':: committer date, RFC2822 style
218'%cr':: committer date, relative
219'%ct':: committer date, UNIX timestamp
220'%ci':: committer date, ISO 8601-like format
221'%cI':: committer date, strict ISO 8601 format
0df62117 222'%cs':: committer date, short format (`YYYY-MM-DD`)
8c9ca6f0 223'%ch':: committer date, human style (like the `--date=human` option of
b722d456 224 linkgit:git-rev-list[1])
42617752
AW
225'%d':: ref names, like the --decorate option of linkgit:git-log[1]
226'%D':: ref names without the " (", ")" wrapping.
a58dd835
AK
227'%(decorate[:<options>])'::
228ref names with custom decorations. The `decorate` string may be followed by a
229colon and zero or more comma-separated options. Option values may contain
230literal formatting codes. These must be used for commas (`%x2C`) and closing
231parentheses (`%x29`), due to their role in the option syntax.
232+
233** 'prefix=<value>': Shown before the list of ref names. Defaults to "{nbsp}`(`".
234** 'suffix=<value>': Shown after the list of ref names. Defaults to "`)`".
235** 'separator=<value>': Shown between ref names. Defaults to "`,`{nbsp}".
f1f8a258
AK
236** 'pointer=<value>': Shown between HEAD and the branch it points to, if any.
237 Defaults to "{nbsp}`->`{nbsp}".
238** 'tag=<value>': Shown before tag names. Defaults to "`tag:`{nbsp}".
239
240+
241For example, to produce decorations with no wrapping
242or tag annotations, and spaces as separators:
243+
244`%(decorate:prefix=,suffix=,tag=,separator= )`
a58dd835 245
31a922f8
AK
246'%(describe[:<options>])'::
247human-readable name, like linkgit:git-describe[1]; empty string for
248undescribable commits. The `describe` string may be followed by a colon and
249zero or more comma-separated options. Descriptions can be inconsistent when
250tags are added or removed at the same time.
b081547e 251+
6ba65f4a 252** 'tags[=<bool-value>]': Instead of only considering annotated tags,
1d517cea 253 consider lightweight tags as well.
eccd97d0
ES
254** 'abbrev=<number>': Instead of using the default number of hexadecimal digits
255 (which will vary according to the number of objects in the repository with a
256 default of 7) of the abbreviated object name, use <number> digits, or as many
257 digits as needed to form a unique object name.
b081547e
RS
258** 'match=<pattern>': Only consider tags matching the given
259 `glob(7)` pattern, excluding the "refs/tags/" prefix.
260** 'exclude=<pattern>': Do not consider tags matching the given
261 `glob(7)` pattern, excluding the "refs/tags/" prefix.
262
42977bf5
JH
263'%S':: ref name given on the command line by which the commit was reached
264 (like `git log --source`), only works with `git log`
42617752
AW
265'%e':: encoding
266'%s':: subject
267'%f':: sanitized subject line, suitable for a filename
268'%b':: body
269'%B':: raw body (unwrapped subject and body)
2aea7a51 270ifndef::git-rev-list[]
42617752 271'%N':: commit notes
2aea7a51 272endif::git-rev-list[]
42617752
AW
273'%GG':: raw verification message from GPG for a signed commit
274'%G?':: show "G" for a good (valid) signature,
275 "B" for a bad signature,
276 "U" for a good signature with unknown validity,
277 "X" for a good signature that has expired,
278 "Y" for a good signature made by an expired key,
279 "R" for a good signature made by a revoked key,
280 "E" if the signature cannot be checked (e.g. missing key)
281 and "N" for no signature
282'%GS':: show the name of the signer for a signed commit
283'%GK':: show the key used to sign a signed commit
284'%GF':: show the fingerprint of the key used to sign a signed commit
285'%GP':: show the fingerprint of the primary key whose subkey was used
286 to sign a signed commit
54887b46 287'%GT':: show the trust level for the key used to sign a signed commit
42617752 288'%gD':: reflog selector, e.g., `refs/stash@{1}` or `refs/stash@{2
4fd39c76 289 minutes ago}`; the format follows the rules described for the
42617752
AW
290 `-g` option. The portion before the `@` is the refname as
291 given on the command line (so `git log -g refs/heads/master`
292 would yield `refs/heads/master@{0}`).
293'%gd':: shortened reflog selector; same as `%gD`, but the refname
294 portion is shortened for human readability (so
295 `refs/heads/master` becomes just `master`).
296'%gn':: reflog identity name
297'%gN':: reflog identity name (respecting .mailmap, see
298 linkgit:git-shortlog[1] or linkgit:git-blame[1])
299'%ge':: reflog identity email
300'%gE':: reflog identity email (respecting .mailmap, see
301 linkgit:git-shortlog[1] or linkgit:git-blame[1])
302'%gs':: reflog subject
31a922f8
AK
303'%(trailers[:<options>])'::
304display the trailers of the body as interpreted by
305linkgit:git-interpret-trailers[1]. The `trailers` string may be followed by
306a colon and zero or more comma-separated options. If any option is provided
307multiple times, the last occurrence wins.
2762e171 308+
133db54d 309** 'key=<key>': only show trailers with specified <key>. Matching is done
250bea0c
AW
310 case-insensitively and trailing colon is optional. If option is
311 given multiple times trailer lines matching any of the keys are
312 shown. This option automatically enables the `only` option so that
313 non-trailer lines in the trailer block are hidden. If that is not
314 desired it can be disabled with `only=false`. E.g.,
315 `%(trailers:key=Reviewed-by)` shows trailer lines with key
316 `Reviewed-by`.
133db54d 317** 'only[=<bool>]': select whether non-trailer lines from the trailer
2762e171 318 block should be included.
bff85a33
BL
319** 'separator=<sep>': specify the separator inserted between trailer
320 lines. Defaults to a line feed character. The string <sep> may contain
0b691d86
AW
321 the literal formatting codes described above. To use comma as
322 separator one must use `%x2C` as it would otherwise be parsed as
2762e171 323 next option. E.g., `%(trailers:key=Ticket,separator=%x2C )`
0b691d86
AW
324 shows all trailer lines whose key is "Ticket" separated by a comma
325 and a space.
133db54d 326** 'unfold[=<bool>]': make it behave as if interpret-trailer's `--unfold`
2762e171 327 option was given. E.g.,
4f732e0f 328 `%(trailers:only,unfold=true)` unfolds and shows all trailer lines.
133db54d
JNA
329** 'keyonly[=<bool>]': only show the key part of the trailer.
330** 'valueonly[=<bool>]': only show the value part of the trailer.
bff85a33
BL
331** 'key_value_separator=<sep>': specify the separator inserted between
332 the key and value of each trailer. Defaults to ": ". Otherwise it
333 shares the same semantics as 'separator=<sep>' above.
fa5b4f37 334
8f8f5476
TR
335NOTE: Some placeholders may depend on other options given to the
336revision traversal engine. For example, the `%g*` reflog options will
337insert an empty string unless we are traversing reflog entries (e.g., by
9271095c
HJ
338`git log -g`). The `%d` and `%D` placeholders will use the "short"
339decoration format if `--decorate` was not already provided on the command
340line.
8f8f5476 341
6ba65f4a 342The boolean options accept an optional value `[=<bool-value>]`. The values
1d517cea
ES
343`true`, `false`, `on`, `off` etc. are all accepted. See the "boolean"
344sub-section in "EXAMPLES" in linkgit:git-config[1]. If a boolean
345option is given with no value, it's enabled.
346
6cf378f0 347If you add a `+` (plus sign) after '%' of a placeholder, a line-feed
9fa708da
JH
348is inserted immediately before the expansion if and only if the
349placeholder expands to a non-empty string.
350
8abc09c0
SG
351If you add a `-` (minus sign) after '%' of a placeholder, all consecutive
352line-feeds immediately preceding the expansion are deleted if and only if the
9fa708da
JH
353placeholder expands to an empty string.
354
7b88176e
MG
355If you add a ` ` (space) after '%' of a placeholder, a space
356is inserted immediately before the expansion if and only if the
357placeholder expands to a non-empty string.
358
fa5b4f37
JK
359* 'tformat:'
360+
361The 'tformat:' format works exactly like 'format:', except that it
362provides "terminator" semantics instead of "separator" semantics. In
363other words, each commit has the message terminator character (usually a
364newline) appended, rather than a separator placed between entries.
365This means that the final entry of a single-line format will be properly
366terminated with a new line, just as the "oneline" format does.
367For example:
368+
369---------------------
370$ git log -2 --pretty=format:%h 4da45bef \
371 | perl -pe '$_ .= " -- NO NEWLINE\n" unless /\n/'
3724da45be
3737134973 -- NO NEWLINE
374
375$ git log -2 --pretty=tformat:%h 4da45bef \
376 | perl -pe '$_ .= " -- NO NEWLINE\n" unless /\n/'
3774da45be
3787134973
379---------------------
36407548
NS
380+
381In addition, any unrecognized string that has a `%` in it is interpreted
382as if it has `tformat:` in front of it. For example, these two are
383equivalent:
384+
385---------------------
386$ git log -2 --pretty=tformat:%h 4da45bef
387$ git log -2 --pretty=%h 4da45bef
388---------------------