Git fork
1`--pretty[=<format>]`::
2`--format=<format>`::
3
4 Pretty-print the contents of the commit logs in a given format,
5 where '<format>' can be one of `oneline`, `short`, `medium`,
6 `full`, `fuller`, `reference`, `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`.
13+
14NOTE: you can specify the default pretty format in the repository
15configuration (see linkgit:git-config[1]).
16
17`--abbrev-commit`::
18 Instead of showing the full 40-byte hexadecimal commit object
19 name, show a prefix that names the object uniquely.
20 `--abbrev=<n>` (which also modifies diff output, if it is displayed)
21 option can be used to specify the minimum length of the prefix.
22+
23This should make `--pretty=oneline` a whole lot more readable for
24people using 80-column terminals.
25
26`--no-abbrev-commit`::
27 Show the full 40-byte hexadecimal commit object name. This negates
28 `--abbrev-commit`, either explicit or implied by other options such
29 as `--oneline`. It also overrides the `log.abbrevCommit` variable.
30
31`--oneline`::
32 This is a shorthand for `--pretty=oneline --abbrev-commit`
33 used together.
34
35`--encoding=<encoding>`::
36 Commit objects record the character 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
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. Likewise, if iconv(3) fails
44 to convert the commit, we will quietly output the original
45 object verbatim.
46
47`--expand-tabs=<n>`::
48`--expand-tabs`::
49`--no-expand-tabs`::
50 Perform a tab expansion (replace each tab with enough spaces
51 to fill to the next display column that is a multiple of _<n>_)
52 in the log message before showing it in the output.
53 `--expand-tabs` is a short-hand for `--expand-tabs=8`, and
54 `--no-expand-tabs` is a short-hand for `--expand-tabs=0`,
55 which disables tab expansion.
56+
57By default, tabs are expanded in pretty formats that indent the log
58message by 4 spaces (i.e. `medium`, which is the default, `full`,
59and `fuller`).
60
61ifndef::git-rev-list[]
62`--notes[=<ref>]`::
63 Show the notes (see linkgit:git-notes[1]) that annotate the
64 commit, when showing the commit log message.
65ifndef::with-breaking-changes[]
66This is the default for `git log`, `git show` and `git whatchanged`
67commands when there is no `--pretty`, `--format`, or `--oneline` option given
68on the command line.
69endif::with-breaking-changes[]
70ifdef::with-breaking-changes[]
71This is the default for `git log` and `git show` commands when there is no
72`--pretty`, `--format`, or `--oneline` option given on the command line.
73endif::with-breaking-changes[]
74+
75By default, the notes shown are from the notes refs listed in the
76`core.notesRef` and `notes.displayRef` variables (or corresponding
77environment overrides). See linkgit:git-config[1] for more details.
78+
79With an optional '<ref>' argument, use the ref to find the notes
80to display. The ref can specify the full refname when it begins
81with `refs/notes/`; when it begins with `notes/`, `refs/` and otherwise
82`refs/notes/` is prefixed to form the full name of the ref.
83+
84Multiple `--notes` options can be combined to control which notes are
85being displayed. Examples: "`--notes=foo`" will show only notes from
86`refs/notes/foo`; "`--notes=foo --notes`" will show both notes from
87"refs/notes/foo" and from the default notes ref(s).
88
89`--no-notes`::
90 Do not show notes. This negates the above `--notes` option, by
91 resetting the list of notes refs from which notes are shown.
92 Options are parsed in the order given on the command line, so e.g.
93 "`--notes --notes=foo --no-notes --notes=bar`" will only show notes
94 from `refs/notes/bar`.
95
96`--show-notes-by-default`::
97 Show the default notes unless options for displaying specific
98 notes are given.
99
100`--show-notes[=<ref>]`::
101`--standard-notes`::
102`--no-standard-notes`::
103 These options are deprecated. Use the above `--notes`/`--no-notes`
104 options instead.
105endif::git-rev-list[]
106
107`--show-signature`::
108 Check the validity of a signed commit object by passing the signature
109 to `gpg --verify` and show the output.