blob: 671cebd95c36f2dc6e17fb599219e305a567bc55 [file] [log] [blame]
Junio C Hamano0430e3a2007-05-15 03:13:171PRETTY FORMATS
2--------------
Junio C Hamanoa340aaa2006-11-23 02:47:333
Junio C Hamano0430e3a2007-05-15 03:13:174If 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
7"Merge: " and the sha1s of ancestral commits are printed,
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.
Junio C Hamanoa340aaa2006-11-23 02:47:3313
Junio C Hamanoa574a092010-06-13 19:57:1014There 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:
Junio C Hamano0430e3a2007-05-15 03:13:1720
21* 'oneline'
Junio C Hamanoa340aaa2006-11-23 02:47:3322
23 <sha1> <title line>
24+
25This is designed to be as compact as possible.
26
Junio C Hamano0430e3a2007-05-15 03:13:1727* 'short'
Junio C Hamanoa340aaa2006-11-23 02:47:3328
29 commit <sha1>
30 Author: <author>
31
32 <title line>
33
Junio C Hamano0430e3a2007-05-15 03:13:1734* 'medium'
Junio C Hamanoa340aaa2006-11-23 02:47:3335
36 commit <sha1>
37 Author: <author>
Junio C Hamano6a3c8272008-12-19 21:38:1838 Date: <author date>
Junio C Hamanoa340aaa2006-11-23 02:47:3339
40 <title line>
41
42 <full commit message>
43
Junio C Hamano0430e3a2007-05-15 03:13:1744* 'full'
Junio C Hamanoa340aaa2006-11-23 02:47:3345
46 commit <sha1>
47 Author: <author>
48 Commit: <committer>
49
50 <title line>
51
52 <full commit message>
53
Junio C Hamano0430e3a2007-05-15 03:13:1754* 'fuller'
Junio C Hamanoa340aaa2006-11-23 02:47:3355
56 commit <sha1>
Junio C Hamano6a3c8272008-12-19 21:38:1857 Author: <author>
Junio C Hamanoba4b9282008-07-06 05:20:3158 AuthorDate: <author date>
Junio C Hamano6a3c8272008-12-19 21:38:1859 Commit: <committer>
Junio C Hamanoba4b9282008-07-06 05:20:3160 CommitDate: <committer date>
Junio C Hamanoa340aaa2006-11-23 02:47:3361
62 <title line>
63
64 <full commit message>
65
Junio C Hamano0430e3a2007-05-15 03:13:1766* 'email'
Junio C Hamanoa340aaa2006-11-23 02:47:3367
68 From <sha1> <date>
69 From: <author>
Junio C Hamanoba4b9282008-07-06 05:20:3170 Date: <author date>
Junio C Hamanoa340aaa2006-11-23 02:47:3371 Subject: [PATCH] <title line>
72
Junio C Hamano0430e3a2007-05-15 03:13:1773 <full commit message>
Junio C Hamanoa340aaa2006-11-23 02:47:3374
Junio C Hamano0430e3a2007-05-15 03:13:1775* 'raw'
Junio C Hamanoa340aaa2006-11-23 02:47:3376+
77The 'raw' format shows the entire commit exactly as
Junio C Hamanoe3f080d2013-04-22 02:27:1378stored in the commit object. Notably, the SHA-1s are
Junio C Hamanoa340aaa2006-11-23 02:47:3379displayed in full, regardless of whether --abbrev or
80--no-abbrev are used, and 'parents' information show the
Junio C Hamanod75148a2014-04-08 19:48:3881true parent commits, without taking grafts or history
Junio C Hamano85f1fde2015-06-01 20:37:3282simplification into account. Note that this format affects the way
83commits are displayed, but not the way the diff is shown e.g. with
84`git log --raw`. To get full object names in a raw diff format,
85use `--no-abbrev`.
Junio C Hamano775a0f42006-12-31 01:19:1486
Junio C Hamanoe32ec8b2010-06-02 23:32:3187* 'format:<string>'
Junio C Hamanoa3fd83c2007-03-02 10:34:3688+
Junio C Hamanoe32ec8b2010-06-02 23:32:3189The 'format:<string>' format allows you to specify which information
Junio C Hamanoa3fd83c2007-03-02 10:34:3690you want to show. It works a little bit like printf format,
91with the notable exception that you get a newline with '%n'
92instead of '\n'.
Junio C Hamano0430e3a2007-05-15 03:13:1793+
94E.g, 'format:"The author of %h was %an, %ar%nThe title was >>%s<<%n"'
Junio C Hamanoa3fd83c2007-03-02 10:34:3695would show something like this:
Junio C Hamano0430e3a2007-05-15 03:13:1796+
97-------
Junio C Hamanoa3fd83c2007-03-02 10:34:3698The author of fe6e0ee was Junio C Hamano, 23 hours ago
99The title was >>t4119: test autocomputing -p<n> for traditional diff input.<<
100
Junio C Hamano9236fea2014-10-14 22:28:09101-------
Junio C Hamano0430e3a2007-05-15 03:13:17102+
Junio C Hamanoa3fd83c2007-03-02 10:34:36103The placeholders are:
104
105- '%H': commit hash
106- '%h': abbreviated commit hash
107- '%T': tree hash
108- '%t': abbreviated tree hash
109- '%P': parent hashes
110- '%p': abbreviated parent hashes
111- '%an': author name
Junio C Hamano04e768d2013-04-23 19:19:26112- '%aN': author name (respecting .mailmap, see linkgit:git-shortlog[1]
113 or linkgit:git-blame[1])
Junio C Hamanoa3fd83c2007-03-02 10:34:36114- '%ae': author email
Junio C Hamano04e768d2013-04-23 19:19:26115- '%aE': author email (respecting .mailmap, see
116 linkgit:git-shortlog[1] or linkgit:git-blame[1])
Junio C Hamanoa387df32008-08-29 08:56:58117- '%ad': author date (format respects --date= option)
Junio C Hamanoa3fd83c2007-03-02 10:34:36118- '%aD': author date, RFC2822 style
119- '%ar': author date, relative
120- '%at': author date, UNIX timestamp
Junio C Hamanoac12f0e2014-09-19 22:32:51121- '%ai': author date, ISO 8601-like format
122- '%aI': author date, strict ISO 8601 format
Junio C Hamanoa3fd83c2007-03-02 10:34:36123- '%cn': committer name
Junio C Hamano04e768d2013-04-23 19:19:26124- '%cN': committer name (respecting .mailmap, see
125 linkgit:git-shortlog[1] or linkgit:git-blame[1])
Junio C Hamanoa3fd83c2007-03-02 10:34:36126- '%ce': committer email
Junio C Hamano04e768d2013-04-23 19:19:26127- '%cE': committer email (respecting .mailmap, see
128 linkgit:git-shortlog[1] or linkgit:git-blame[1])
Junio C Hamano53fe0312014-09-09 21:16:17129- '%cd': committer date (format respects --date= option)
Junio C Hamanoa3fd83c2007-03-02 10:34:36130- '%cD': committer date, RFC2822 style
131- '%cr': committer date, relative
132- '%ct': committer date, UNIX timestamp
Junio C Hamanoac12f0e2014-09-19 22:32:51133- '%ci': committer date, ISO 8601-like format
134- '%cI': committer date, strict ISO 8601 format
Junio C Hamano5e4d8de2008-09-19 06:27:02135- '%d': ref names, like the --decorate option of linkgit:git-log[1]
Junio C Hamano00b9f1a2014-09-29 23:11:28136- '%D': ref names without the " (", ")" wrapping.
Junio C Hamanoa3fd83c2007-03-02 10:34:36137- '%e': encoding
138- '%s': subject
Junio C Hamano5f9a6f02009-04-06 08:26:56139- '%f': sanitized subject line, suitable for a filename
Junio C Hamanoa3fd83c2007-03-02 10:34:36140- '%b': body
Junio C Hamanocb39aea2010-05-09 07:24:48141- '%B': raw body (unwrapped subject and body)
Junio C Hamano3891e252015-08-31 23:06:13142ifndef::git-rev-list[]
Junio C Hamano3b70d3c2009-11-21 17:37:37143- '%N': commit notes
Junio C Hamano3891e252015-08-31 23:06:13144endif::git-rev-list[]
Junio C Hamano0acb1ae2012-09-24 21:28:13145- '%GG': raw verification message from GPG for a signed commit
Junio C Hamanoedf80bd2013-04-05 22:14:36146- '%G?': show "G" for a Good signature, "B" for a Bad signature, "U" for a good,
147 untrusted signature and "N" for no signature
Junio C Hamano0acb1ae2012-09-24 21:28:13148- '%GS': show the name of the signer for a signed commit
Junio C Hamano5e7f1312013-03-21 22:49:01149- '%GK': show the key used to sign a signed commit
Junio C Hamanob76a6862012-05-02 22:02:46150- '%gD': reflog selector, e.g., `refs/stash@{1}`
151- '%gd': shortened reflog selector, e.g., `stash@{1}`
Junio C Hamano962f3a32011-12-22 20:21:44152- '%gn': reflog identity name
Junio C Hamano04e768d2013-04-23 19:19:26153- '%gN': reflog identity name (respecting .mailmap, see
154 linkgit:git-shortlog[1] or linkgit:git-blame[1])
Junio C Hamano962f3a32011-12-22 20:21:44155- '%ge': reflog identity email
Junio C Hamano04e768d2013-04-23 19:19:26156- '%gE': reflog identity email (respecting .mailmap, see
157 linkgit:git-shortlog[1] or linkgit:git-blame[1])
Junio C Hamanoc21ab052009-10-31 04:03:55158- '%gs': reflog subject
Junio C Hamanoa3fd83c2007-03-02 10:34:36159- '%Cred': switch color to red
160- '%Cgreen': switch color to green
161- '%Cblue': switch color to blue
162- '%Creset': reset color
Junio C Hamanoabad6da2013-01-06 09:06:32163- '%C(...)': color specification, as described in color.branch.* config option;
164 adding `auto,` at the beginning will emit color only when colors are
165 enabled for log output (by `color.diff`, `color.ui`, or `--color`, and
166 respecting the `auto` settings of the former if we are going to a
Junio C Hamano04e768d2013-04-23 19:19:26167 terminal). `auto` alone (i.e. `%C(auto)`) will turn on auto coloring
168 on the next placeholders until the color is switched again.
Junio C Hamanod9e0e5d2007-04-14 16:22:04169- '%m': left, right or boundary mark
Junio C Hamanoa3fd83c2007-03-02 10:34:36170- '%n': newline
Junio C Hamanoa9701f02010-01-21 00:42:16171- '%%': a raw '%'
Junio C Hamanob78d2592008-04-09 09:39:08172- '%x00': print a byte from a hex code
Junio C Hamanobf984de2009-11-23 06:11:19173- '%w([<w>[,<i1>[,<i2>]]])': switch line wrapping, like the -w option of
Junio C Hamano5706e0b2009-11-24 10:54:16174 linkgit:git-shortlog[1].
Junio C Hamano04e768d2013-04-23 19:19:26175- '%<(<N>[,trunc|ltrunc|mtrunc])': make the next placeholder take at
176 least N columns, padding spaces on the right if necessary.
177 Optionally truncate at the beginning (ltrunc), the middle (mtrunc)
178 or the end (trunc) if the output is longer than N columns.
179 Note that truncating only works correctly with N >= 2.
180- '%<|(<N>)': make the next placeholder take at least until Nth
181 columns, padding spaces on the right if necessary
182- '%>(<N>)', '%>|(<N>)': similar to '%<(<N>)', '%<|(<N>)'
183 respectively, but padding spaces on the left
184- '%>>(<N>)', '%>>|(<N>)': similar to '%>(<N>)', '%>|(<N>)'
185 respectively, except that if the next placeholder takes more spaces
186 than given and there are spaces on its left, use those spaces
187- '%><(<N>)', '%><|(<N>)': similar to '% <(<N>)', '%<|(<N>)'
188 respectively, but padding both sides (i.e. the text is centered)
Junio C Hamano6fb124c2008-06-13 10:04:01189
Junio C Hamanoc21ab052009-10-31 04:03:55190NOTE: Some placeholders may depend on other options given to the
191revision traversal engine. For example, the `%g*` reflog options will
192insert an empty string unless we are traversing reflog entries (e.g., by
Junio C Hamano00b9f1a2014-09-29 23:11:28193`git log -g`). The `%d` and `%D` placeholders will use the "short"
194decoration format if `--decorate` was not already provided on the command
195line.
Junio C Hamanoc21ab052009-10-31 04:03:55196
Junio C Hamanob76a6862012-05-02 22:02:46197If you add a `+` (plus sign) after '%' of a placeholder, a line-feed
Junio C Hamano2bd8a742009-12-01 21:16:59198is inserted immediately before the expansion if and only if the
199placeholder expands to a non-empty string.
200
201If you add a `-` (minus sign) after '%' of a placeholder, line-feeds that
202immediately precede the expansion are deleted if and only if the
203placeholder expands to an empty string.
204
Junio C Hamano89a57342010-06-22 23:22:55205If you add a ` ` (space) after '%' of a placeholder, a space
206is inserted immediately before the expansion if and only if the
207placeholder expands to a non-empty string.
208
Junio C Hamano6fb124c2008-06-13 10:04:01209* 'tformat:'
210+
211The 'tformat:' format works exactly like 'format:', except that it
212provides "terminator" semantics instead of "separator" semantics. In
213other words, each commit has the message terminator character (usually a
214newline) appended, rather than a separator placed between entries.
215This means that the final entry of a single-line format will be properly
216terminated with a new line, just as the "oneline" format does.
217For example:
218+
219---------------------
220$ git log -2 --pretty=format:%h 4da45bef \
221 | perl -pe '$_ .= " -- NO NEWLINE\n" unless /\n/'
2224da45be
2237134973 -- NO NEWLINE
224
225$ git log -2 --pretty=tformat:%h 4da45bef \
226 | perl -pe '$_ .= " -- NO NEWLINE\n" unless /\n/'
2274da45be
2287134973
229---------------------
Junio C Hamano0a235222009-03-06 08:21:09230+
231In addition, any unrecognized string that has a `%` in it is interpreted
232as if it has `tformat:` in front of it. For example, these two are
233equivalent:
234+
235---------------------
236$ git log -2 --pretty=tformat:%h 4da45bef
237$ git log -2 --pretty=%h 4da45bef
238---------------------