Commit | Line | Data |
---|---|---|
215a7ad1 JH |
1 | git-log(1) |
2 | ========== | |
3f971fc4 JH |
3 | |
4 | NAME | |
5 | ---- | |
215a7ad1 | 6 | git-log - Show commit logs |
3f971fc4 JH |
7 | |
8 | ||
9 | SYNOPSIS | |
10 | -------- | |
7791a1d9 | 11 | [verse] |
b1524ee0 | 12 | 'git log' [<options>] [<since>..<until>] [[\--] <path>...] |
3f971fc4 JH |
13 | |
14 | DESCRIPTION | |
15 | ----------- | |
e51c3b50 JH |
16 | Shows the commit logs. |
17 | ||
0b444cdb | 18 | The command takes options applicable to the 'git rev-list' |
e51c3b50 | 19 | command to control what is shown and how, and options applicable to |
0b444cdb | 20 | the 'git diff-*' commands to control how the changes |
e51c3b50 JH |
21 | each commit introduces are shown. |
22 | ||
3f971fc4 JH |
23 | |
24 | OPTIONS | |
25 | ------- | |
5d1faf87 | 26 | |
adb7ba6b | 27 | -<n>:: |
3f971fc4 | 28 | Limits the number of commits to show. |
190767f6 | 29 | Note that this is a commit limiting option, see below. |
3f971fc4 JH |
30 | |
31 | <since>..<until>:: | |
99e09cce JH |
32 | Show only commits between the named two commits. When |
33 | either <since> or <until> is omitted, it defaults to | |
34 | `HEAD`, i.e. the tip of the current branch. | |
41a5564e | 35 | For a more complete list of ways to spell <since> |
9d83e382 | 36 | and <until>, see linkgit:gitrevisions[7]. |
3f971fc4 | 37 | |
4ded6916 EB |
38 | --follow:: |
39 | Continue listing the history of a file beyond renames | |
40 | (works only for a single file). | |
41 | ||
8a3d203b JH |
42 | --no-decorate:: |
43 | --decorate[=short|full|no]:: | |
33e7018c LH |
44 | Print out the ref names of any commits that are shown. If 'short' is |
45 | specified, the ref name prefixes 'refs/heads/', 'refs/tags/' and | |
46 | 'refs/remotes/' will not be printed. If 'full' is specified, the | |
47 | full ref name (including prefix) will be printed. The default option | |
48 | is 'short'. | |
56822cc9 | 49 | |
30c4d7a7 NS |
50 | --source:: |
51 | Print out the ref name given on the command line by which each | |
52 | commit was reached. | |
53 | ||
2e88c266 | 54 | --full-diff:: |
f448e24e | 55 | Without this flag, "git log -p <path>..." shows commits that |
2e88c266 JN |
56 | touch the specified paths, and diffs about the same specified |
57 | paths. With this, the full diff is shown for commits that touch | |
f448e24e | 58 | the specified paths; this means that "<path>..." limits only |
2e88c266 | 59 | commits, and doesn't limit diff for those commits. |
b1c7946d MG |
60 | + |
61 | Note that this affects all diff-based output types, e.g. those | |
62 | produced by --stat etc. | |
2e88c266 | 63 | |
9fa3465d MC |
64 | --log-size:: |
65 | Before the log message print out its size in bytes. Intended | |
66 | mainly for porcelain tools consumption. If git is unable to | |
67 | produce a valid value size is set to zero. | |
68 | Note that only message is considered, if also a diff is shown | |
69 | its size is not included. | |
70 | ||
b1524ee0 | 71 | [\--] <path>...:: |
72 | Show only commits that affect any of the specified paths. To | |
73 | prevent confusion with options and branch names, paths may need | |
74 | to be prefixed with "\-- " to separate them from options or | |
75 | refnames. | |
e51c3b50 | 76 | |
f98fd436 MG |
77 | include::rev-list-options.txt[] |
78 | ||
79 | include::pretty-formats.txt[] | |
80 | ||
4ded6916 | 81 | Common diff options |
f98fd436 | 82 | ------------------- |
4ded6916 EB |
83 | |
84 | :git-log: 1 | |
85 | include::diff-options.txt[] | |
331b51d2 | 86 | |
272bd3cf | 87 | include::diff-generate-patch.txt[] |
331b51d2 | 88 | |
bd663611 LT |
89 | Examples |
90 | -------- | |
91 | git log --no-merges:: | |
92 | ||
93 | Show the whole commit history, but skip any merges | |
94 | ||
95 | git log v2.6.12.. include/scsi drivers/scsi:: | |
96 | ||
97 | Show all commits since version 'v2.6.12' that changed any file | |
98 | in the include/scsi or drivers/scsi subdirectories | |
99 | ||
e994004f | 100 | git log --since="2 weeks ago" \-- gitk:: |
bd663611 LT |
101 | |
102 | Show the changes during the last two weeks to the file 'gitk'. | |
103 | The "--" is necessary to avoid confusion with the *branch* named | |
104 | 'gitk' | |
105 | ||
170c0438 | 106 | git log --name-status release..test:: |
e51c3b50 JH |
107 | |
108 | Show the commits that are in the "test" branch but not yet | |
109 | in the "release" branch, along with the list of paths | |
110 | each commit modifies. | |
bd663611 | 111 | |
4f50f6a9 SW |
112 | git log --follow builtin-rev-list.c:: |
113 | ||
114 | Shows the commits that changed builtin-rev-list.c, including | |
115 | those commits that occurred before the file was given its | |
116 | present name. | |
117 | ||
b09fe971 | 118 | git log --branches --not --remotes=origin:: |
d08bae7e IL |
119 | |
120 | Shows all commits that are in any of local branches but not in | |
0e615b25 | 121 | any of remote-tracking branches for 'origin' (what you have that |
d08bae7e IL |
122 | origin doesn't). |
123 | ||
b09fe971 | 124 | git log master --not --remotes=*/master:: |
d08bae7e IL |
125 | |
126 | Shows all commits that are in local master but not in any remote | |
127 | repository master branches. | |
128 | ||
88d9d45d PB |
129 | git log -p -m --first-parent:: |
130 | ||
131 | Shows the history including change diffs, but only from the | |
132 | "main branch" perspective, skipping commits that come from merged | |
133 | branches, and showing full diffs of changes introduced by the merges. | |
134 | This makes sense only when following a strict policy of merging all | |
135 | topic branches when staying on a single integration branch. | |
136 | ||
137 | ||
5dc7bcc2 JH |
138 | Discussion |
139 | ---------- | |
140 | ||
141 | include::i18n.txt[] | |
142 | ||
59893a88 JN |
143 | Configuration |
144 | ------------- | |
145 | ||
146 | See linkgit:git-config[1] for core variables and linkgit:git-diff[1] | |
147 | for settings related to diff generation. | |
148 | ||
149 | format.pretty:: | |
150 | Default for the `--format` option. (See "PRETTY FORMATS" above.) | |
151 | Defaults to "medium". | |
152 | ||
153 | i18n.logOutputEncoding:: | |
154 | Encoding to use when displaying logs. (See "Discussion", above.) | |
155 | Defaults to the value of `i18n.commitEncoding` if set, UTF-8 | |
156 | otherwise. | |
157 | ||
158 | log.date:: | |
159 | Default format for human-readable dates. (Compare the | |
160 | `--date` option.) Defaults to "default", which means to write | |
161 | dates like `Sat May 8 19:35:34 2010 -0500`. | |
162 | ||
163 | log.showroot:: | |
164 | If `false`, 'git log' and related commands will not treat the | |
165 | initial commit as a big creation event. Any root commits in | |
166 | `git log -p` output would be shown without a diff attached. | |
167 | The default is `true`. | |
168 | ||
169 | mailmap.file:: | |
170 | See linkgit:git-shortlog[1]. | |
171 | ||
172 | notes.displayRef:: | |
173 | Which refs, in addition to the default set by `core.notesRef` | |
174 | or 'GIT_NOTES_REF', to read notes from when showing commit | |
175 | messages with the 'log' family of commands. See | |
176 | linkgit:git-notes[1]. | |
177 | + | |
178 | May be an unabbreviated ref name or a glob and may be specified | |
179 | multiple times. A warning will be issued for refs that do not exist, | |
180 | but a glob that does not match any refs is silently ignored. | |
181 | + | |
ab18b2c0 | 182 | This setting can be disabled by the `--no-notes` option, |
59893a88 | 183 | overridden by the 'GIT_NOTES_DISPLAY_REF' environment variable, |
ab18b2c0 | 184 | and overridden by the `--notes=<ref>` option. |
5dc7bcc2 | 185 | |
3f971fc4 JH |
186 | GIT |
187 | --- | |
9e1f0a85 | 188 | Part of the linkgit:git[1] suite |