]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/pretty-options.txt
path.c: clarify trie_find()'s in-code comment
[thirdparty/git.git] / Documentation / pretty-options.txt
CommitLineData
efc39d6d
ŠN
1--pretty[=<format>]::
2--format=<format>::
331b51d2 3
1c911dc8 4 Pretty-print the contents of the commit logs in a given format,
331b51d2 5 where '<format>' can be one of 'oneline', 'short', 'medium',
b4a56a39
JH
6 'full', 'fuller', 'email', 'raw', 'format:<string>'
7 and 'tformat:<string>'. When '<format>' is none of the above,
8 and has '%placeholder' in it, it acts as if
9 '--pretty=tformat:<format>' were given.
10+
11See the "PRETTY FORMATS" section for some additional details for each
12format. When '=<format>' part is omitted, it defaults to 'medium'.
94c22a5e
CR
13+
14Note: you can specify the default pretty format in the repository
15configuration (see linkgit:git-config[1]).
331b51d2 16
13120fdc
JN
17--abbrev-commit::
18 Instead of showing the full 40-byte hexadecimal commit object
323b9db8 19 name, show only a partial prefix. Non default number of
13120fdc
JN
20 digits can be specified with "--abbrev=<n>" (which also modifies
21 diff output, if it is displayed).
22+
23This should make "--pretty=oneline" a whole lot more readable for
24people using 80-column terminals.
25
0c47695a
JS
26--no-abbrev-commit::
27 Show the full 40-byte hexadecimal commit object name. This negates
28 `--abbrev-commit` and those options which imply it such as
ae9f6311 29 "--oneline". It also overrides the `log.abbrevCommit` variable.
0c47695a 30
de84accc
NS
31--oneline::
32 This is a shorthand for "--pretty=oneline --abbrev-commit"
33 used together.
34
e6604c35 35--encoding=<encoding>::
331b51d2
JN
36 The commit objects record the encoding used for the log message
37 in their encoding header; this option can be used to tell the
38 command to re-code the commit log message in the encoding
39 preferred by the user. For non plumbing commands this
e479c5f8
JK
40 defaults to UTF-8. Note that if an object claims to be encoded
41 in `X` and we are outputting in `X`, we will output the object
42 verbatim; this means that invalid sequences in the original
43 commit may be copied to the output.
66b2ed09 44
fe37a9c5 45--expand-tabs=<n>::
7cc13c71 46--expand-tabs::
0893eec8 47--no-expand-tabs::
7cc13c71 48 Perform a tab expansion (replace each tab with enough spaces
fe37a9c5 49 to fill to the next display column that is multiple of '<n>')
7cc13c71 50 in the log message before showing it in the output.
fe37a9c5
JH
51 `--expand-tabs` is a short-hand for `--expand-tabs=8`, and
52 `--no-expand-tabs` is a short-hand for `--expand-tabs=0`,
53 which disables tab expansion.
0893eec8
JH
54+
55By default, tabs are expanded in pretty formats that indent the log
56message by 4 spaces (i.e. 'medium', which is the default, 'full',
fe37a9c5 57and 'fuller').
7cc13c71 58
2aea7a51 59ifndef::git-rev-list[]
ee76f92f 60--notes[=<treeish>]::
66b2ed09
JH
61 Show the notes (see linkgit:git-notes[1]) that annotate the
62 commit, when showing the commit log message. This is the default
63 for `git log`, `git show` and `git whatchanged` commands when
a58088ab 64 there is no `--pretty`, `--format`, or `--oneline` option given
ab18b2c0
JH
65 on the command line.
66+
67By default, the notes shown are from the notes refs listed in the
ae9f6311 68`core.notesRef` and `notes.displayRef` variables (or corresponding
ab18b2c0
JH
69environment overrides). See linkgit:git-config[1] for more details.
70+
ee76f92f
MH
71With an optional '<treeish>' argument, use the treeish to find the notes
72to display. The treeish can specify the full refname when it begins
e14c92e8
JK
73with `refs/notes/`; when it begins with `notes/`, `refs/` and otherwise
74`refs/notes/` is prefixed to form a full name of the ref.
894a9d33 75+
ab18b2c0
JH
76Multiple --notes options can be combined to control which notes are
77being displayed. Examples: "--notes=foo" will show only notes from
78"refs/notes/foo"; "--notes=foo --notes" will show both notes from
79"refs/notes/foo" and from the default notes ref(s).
894a9d33 80
ab18b2c0
JH
81--no-notes::
82 Do not show notes. This negates the above `--notes` option, by
83 resetting the list of notes refs from which notes are shown.
84 Options are parsed in the order given on the command line, so e.g.
85 "--notes --notes=foo --no-notes --notes=bar" will only show notes
86 from "refs/notes/bar".
87
ee76f92f 88--show-notes[=<treeish>]::
894a9d33 89--[no-]standard-notes::
ab18b2c0
JH
90 These options are deprecated. Use the above --notes/--no-notes
91 options instead.
2aea7a51 92endif::git-rev-list[]
f2fef7b5
SB
93
94--show-signature::
95 Check the validity of a signed commit object by passing the signature
96 to `gpg --verify` and show the output.