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