]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-log.txt
Merge branch 'en/fetch-negotiation-default-fix'
[thirdparty/git.git] / Documentation / git-log.txt
CommitLineData
215a7ad1
JH
1git-log(1)
2==========
3f971fc4
JH
3
4NAME
5----
215a7ad1 6git-log - Show commit logs
3f971fc4
JH
7
8
9SYNOPSIS
10--------
7791a1d9 11[verse]
133db54d 12'git log' [<options>] [<revision-range>] [[--] <path>...]
3f971fc4
JH
13
14DESCRIPTION
15-----------
e51c3b50
JH
16Shows the commit logs.
17
bea86658
PB
18:git-log: 1
19include::rev-list-description.txt[]
20
f8f28ed9 21The command takes options applicable to the linkgit:git-rev-list[1]
e51c3b50 22command to control what is shown and how, and options applicable to
f8f28ed9 23the linkgit:git-diff[1] command to control how the changes
e51c3b50
JH
24each commit introduces are shown.
25
3f971fc4
JH
26
27OPTIONS
28-------
5d1faf87 29
4ded6916
EB
30--follow::
31 Continue listing the history of a file beyond renames
32 (works only for a single file).
33
8a3d203b 34--no-decorate::
462cbb41 35--decorate[=short|full|auto|no]::
33e7018c
LH
36 Print out the ref names of any commits that are shown. If 'short' is
37 specified, the ref name prefixes 'refs/heads/', 'refs/tags/' and
38 'refs/remotes/' will not be printed. If 'full' is specified, the
462cbb41
RJ
39 full ref name (including prefix) will be printed. If 'auto' is
40 specified, then if the output is going to a terminal, the ref names
41 are shown as if 'short' were given, otherwise no ref names are
a0538e5c
ĐTCD
42 shown. The option `--decorate` is short-hand for `--decorate=short`.
43 Default to configuration value of `log.decorate` if configured,
44 otherwise, `auto`.
56822cc9 45
65516f58
RA
46--decorate-refs=<pattern>::
47--decorate-refs-exclude=<pattern>::
48 If no `--decorate-refs` is given, pretend as if all refs were
49 included. For each candidate, do not use it for decoration if it
50 matches any patterns given to `--decorate-refs-exclude` or if it
a6be5e67
DS
51 doesn't match any of the patterns given to `--decorate-refs`. The
52 `log.excludeDecoration` config option allows excluding refs from
53 the decorations, but an explicit `--decorate-refs` pattern will
54 override a match in `log.excludeDecoration`.
65516f58 55
30c4d7a7
NS
56--source::
57 Print out the ref name given on the command line by which each
58 commit was reached.
59
88acccda 60--[no-]mailmap::
2d9c5690 61--[no-]use-mailmap::
ea57bc0d 62 Use mailmap file to map author and committer names and email
b20cc13e 63 addresses to canonical real names and email addresses. See
ea57bc0d
AP
64 linkgit:git-shortlog[1].
65
2e88c266 66--full-diff::
b20cc13e 67 Without this flag, `git log -p <path>...` shows commits that
2e88c266
JN
68 touch the specified paths, and diffs about the same specified
69 paths. With this, the full diff is shown for commits that touch
f448e24e 70 the specified paths; this means that "<path>..." limits only
2e88c266 71 commits, and doesn't limit diff for those commits.
b1c7946d
MG
72+
73Note that this affects all diff-based output types, e.g. those
b20cc13e 74produced by `--stat`, etc.
2e88c266 75
9fa3465d 76--log-size::
c20e6fb1
JSJ
77 Include a line ``log size <number>'' in the output for each commit,
78 where <number> is the length of that commit's message in bytes.
79 Intended to speed up tools that read log messages from `git log`
80 output by allowing them to allocate space in advance.
9fa3465d 81
f9c8d8cb 82include::line-range-options.txt[]
12da1d1f 83
133db54d 84<revision-range>::
21a40b90 85 Show only commits in the specified revision range. When no
133db54d 86 <revision-range> is specified, it defaults to `HEAD` (i.e. the
21a40b90
RR
87 whole history leading to the current commit). `origin..HEAD`
88 specifies all the commits reachable from the current commit
89 (i.e. `HEAD`), but not from `origin`. For a complete list of
133db54d 90 ways to spell <revision-range>, see the 'Specifying Ranges'
21a40b90 91 section of linkgit:gitrevisions[7].
a682187e 92
933c758c 93[--] <path>...::
b15b5b10 94 Show only commits that are enough to explain how the files
b20cc13e
JSJ
95 that match the specified paths came to be. See 'History
96 Simplification' below for details and other simplification
b15b5b10
TR
97 modes.
98+
6955047f 99Paths may need to be prefixed with `--` to separate them from
00200e9e 100options or the revision range, when confusion arises.
e51c3b50 101
f98fd436
MG
102include::rev-list-options.txt[]
103
104include::pretty-formats.txt[]
105
6f2e02ae
JK
106DIFF FORMATTING
107---------------
108
109By default, `git log` does not generate any diff output. The options
110below can be used to show the changes made by each commit.
111
b5ffa9ec
SO
112Note that unless one of `--diff-merges` variants (including short
113`-m`, `-c`, and `--cc` options) is explicitly given, merge commits
114will not show a diff, even if a diff format like `--patch` is
115selected, nor will they match search options like `-S`. The exception
116is when `--first-parent` is in use, in which case `first-parent` is
117the default format.
405a2fdf 118
4ded6916 119:git-log: 1
1d24509b 120:diff-merges-default: `off`
4ded6916 121include::diff-options.txt[]
331b51d2 122
272bd3cf 123include::diff-generate-patch.txt[]
331b51d2 124
4ba258b7 125EXAMPLES
bd663611 126--------
5d2fc913 127`git log --no-merges`::
bd663611
LT
128
129 Show the whole commit history, but skip any merges
130
5d2fc913 131`git log v2.6.12.. include/scsi drivers/scsi`::
bd663611
LT
132
133 Show all commits since version 'v2.6.12' that changed any file
b20cc13e 134 in the `include/scsi` or `drivers/scsi` subdirectories
bd663611 135
6cf378f0 136`git log --since="2 weeks ago" -- gitk`::
bd663611
LT
137
138 Show the changes during the last two weeks to the file 'gitk'.
6955047f 139 The `--` is necessary to avoid confusion with the *branch* named
bd663611
LT
140 'gitk'
141
5d2fc913 142`git log --name-status release..test`::
e51c3b50
JH
143
144 Show the commits that are in the "test" branch but not yet
145 in the "release" branch, along with the list of paths
146 each commit modifies.
bd663611 147
09b7e220 148`git log --follow builtin/rev-list.c`::
4f50f6a9 149
b20cc13e 150 Shows the commits that changed `builtin/rev-list.c`, including
4f50f6a9
SW
151 those commits that occurred before the file was given its
152 present name.
153
5d2fc913 154`git log --branches --not --remotes=origin`::
d08bae7e
IL
155
156 Shows all commits that are in any of local branches but not in
0e615b25 157 any of remote-tracking branches for 'origin' (what you have that
d08bae7e
IL
158 origin doesn't).
159
5d2fc913 160`git log master --not --remotes=*/master`::
d08bae7e
IL
161
162 Shows all commits that are in local master but not in any remote
163 repository master branches.
164
5d2fc913 165`git log -p -m --first-parent`::
88d9d45d
PB
166
167 Shows the history including change diffs, but only from the
b20cc13e 168 ``main branch'' perspective, skipping commits that come from merged
88d9d45d
PB
169 branches, and showing full diffs of changes introduced by the merges.
170 This makes sense only when following a strict policy of merging all
171 topic branches when staying on a single integration branch.
172
001b0976 173`git log -L '/int main/',/^}/:main.c`::
12da1d1f 174
b20cc13e 175 Shows how the function `main()` in the file `main.c` evolved
12da1d1f
TR
176 over time.
177
70c2a258 178`git log -3`::
b20cc13e 179
70c2a258 180 Limits the number of commits to show to 3.
88d9d45d 181
4ba258b7 182DISCUSSION
5dc7bcc2
JH
183----------
184
185include::i18n.txt[]
186
4ba258b7 187CONFIGURATION
59893a88
JN
188-------------
189
190See linkgit:git-config[1] for core variables and linkgit:git-diff[1]
191for settings related to diff generation.
192
193format.pretty::
b20cc13e
JSJ
194 Default for the `--format` option. (See 'Pretty Formats' above.)
195 Defaults to `medium`.
59893a88
JN
196
197i18n.logOutputEncoding::
b20cc13e
JSJ
198 Encoding to use when displaying logs. (See 'Discussion' above.)
199 Defaults to the value of `i18n.commitEncoding` if set, and UTF-8
59893a88
JN
200 otherwise.
201
202log.date::
203 Default format for human-readable dates. (Compare the
204 `--date` option.) Defaults to "default", which means to write
205 dates like `Sat May 8 19:35:34 2010 -0500`.
038a8788
SS
206+
207If the format is set to "auto:foo" and the pager is in use, format
208"foo" will be the used for the date format. Otherwise "default" will
209be used.
59893a88 210
076c9837 211log.follow::
fd8d07ef
EVW
212 If `true`, `git log` will act as if the `--follow` option was used when
213 a single <path> is given. This has the same limitations as `--follow`,
214 i.e. it cannot be used to follow multiple files and does not work well
215 on non-linear history.
076c9837 216
da0005b8 217log.showRoot::
b20cc13e 218 If `false`, `git log` and related commands will not treat the
59893a88
JN
219 initial commit as a big creation event. Any root commits in
220 `git log -p` output would be shown without a diff attached.
221 The default is `true`.
222
fce04c3c
MJ
223log.showSignature::
224 If `true`, `git log` and related commands will act as if the
225 `--show-signature` option was passed to them.
226
d5422b0c 227mailmap.*::
59893a88
JN
228 See linkgit:git-shortlog[1].
229
230notes.displayRef::
231 Which refs, in addition to the default set by `core.notesRef`
eee7f4a2 232 or `GIT_NOTES_REF`, to read notes from when showing commit
b20cc13e 233 messages with the `log` family of commands. See
59893a88
JN
234 linkgit:git-notes[1].
235+
236May be an unabbreviated ref name or a glob and may be specified
237multiple times. A warning will be issued for refs that do not exist,
238but a glob that does not match any refs is silently ignored.
239+
ab18b2c0 240This setting can be disabled by the `--no-notes` option,
eee7f4a2 241overridden by the `GIT_NOTES_DISPLAY_REF` environment variable,
ab18b2c0 242and overridden by the `--notes=<ref>` option.
5dc7bcc2 243
3f971fc4
JH
244GIT
245---
9e1f0a85 246Part of the linkgit:git[1] suite