Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 1 | git-log(1) |
| 2 | ========== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | git-log - Show commit logs |
| 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Junio C Hamano | 15567bc | 2011-07-23 00:51:59 | [diff] [blame] | 11 | [verse] |
Junio C Hamano | ccb8252 | 2018-05-08 07:52:09 | [diff] [blame] | 12 | 'git log' [<options>] [<revision range>] [[--] <path>...] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 13 | |
| 14 | DESCRIPTION |
| 15 | ----------- |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 16 | Shows the commit logs. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 17 | |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 18 | The command takes options applicable to the `git rev-list` |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 19 | command to control what is shown and how, and options applicable to |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 20 | the `git diff-*` commands to control how the changes |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 21 | each commit introduces are shown. |
| 22 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 23 | |
| 24 | OPTIONS |
| 25 | ------- |
Junio C Hamano | a340aaa | 2006-11-23 02:47:33 | [diff] [blame] | 26 | |
Junio C Hamano | 78e3a78 | 2010-07-15 22:24:45 | [diff] [blame] | 27 | --follow:: |
| 28 | Continue listing the history of a file beyond renames |
| 29 | (works only for a single file). |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 30 | |
Junio C Hamano | cb39aea | 2010-05-09 07:24:48 | [diff] [blame] | 31 | --no-decorate:: |
Junio C Hamano | 37cf408 | 2016-05-30 01:22:14 | [diff] [blame] | 32 | --decorate[=short|full|auto|no]:: |
Junio C Hamano | c276ec7 | 2009-08-26 01:35:22 | [diff] [blame] | 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 |
Junio C Hamano | 37cf408 | 2016-05-30 01:22:14 | [diff] [blame] | 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'. |
Junio C Hamano | ee695f2 | 2007-06-21 00:35:36 | [diff] [blame] | 40 | |
Junio C Hamano | 371470a | 2017-12-13 22:26:40 | [diff] [blame] | 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 |
| 46 | doesn't match any of the patterns given to `--decorate-refs`. |
| 47 | |
Junio C Hamano | 2836349 | 2008-11-14 08:26:31 | [diff] [blame] | 48 | --source:: |
| 49 | Print out the ref name given on the command line by which each |
| 50 | commit was reached. |
| 51 | |
Junio C Hamano | 3659495 | 2019-07-25 22:26:52 | [diff] [blame] | 52 | --[no-]use-mailmap:: |
Junio C Hamano | ce836cc | 2013-01-21 02:01:53 | [diff] [blame] | 53 | Use mailmap file to map author and committer names and email |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 54 | addresses to canonical real names and email addresses. See |
Junio C Hamano | ce836cc | 2013-01-21 02:01:53 | [diff] [blame] | 55 | linkgit:git-shortlog[1]. |
| 56 | |
Junio C Hamano | ee695f2 | 2007-06-21 00:35:36 | [diff] [blame] | 57 | --full-diff:: |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 58 | Without this flag, `git log -p <path>...` shows commits that |
Junio C Hamano | ee695f2 | 2007-06-21 00:35:36 | [diff] [blame] | 59 | touch the specified paths, and diffs about the same specified |
| 60 | paths. With this, the full diff is shown for commits that touch |
Junio C Hamano | 9e39507 | 2008-07-31 22:11:21 | [diff] [blame] | 61 | the specified paths; this means that "<path>..." limits only |
Junio C Hamano | ee695f2 | 2007-06-21 00:35:36 | [diff] [blame] | 62 | commits, and doesn't limit diff for those commits. |
Junio C Hamano | e85e36f | 2010-08-10 05:30:14 | [diff] [blame] | 63 | + |
| 64 | Note that this affects all diff-based output types, e.g. those |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 65 | produced by `--stat`, etc. |
Junio C Hamano | ea5dae6 | 2007-05-10 23:25:08 | [diff] [blame] | 66 | |
Junio C Hamano | 024b6c6 | 2007-08-14 09:43:08 | [diff] [blame] | 67 | --log-size:: |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 68 | Include a line ``log size <number>'' in the output for each commit, |
| 69 | where <number> is the length of that commit's message in bytes. |
| 70 | Intended to speed up tools that read log messages from `git log` |
| 71 | output by allowing them to allocate space in advance. |
Junio C Hamano | 024b6c6 | 2007-08-14 09:43:08 | [diff] [blame] | 72 | |
Junio C Hamano | 8eac268 | 2013-09-09 22:35:20 | [diff] [blame] | 73 | -L <start>,<end>:<file>:: |
Junio C Hamano | dd5004a | 2015-05-06 19:33:32 | [diff] [blame] | 74 | -L :<funcname>:<file>:: |
Junio C Hamano | 7e590a1 | 2013-06-02 23:46:52 | [diff] [blame] | 75 | Trace the evolution of the line range given by "<start>,<end>" |
Junio C Hamano | dd5004a | 2015-05-06 19:33:32 | [diff] [blame] | 76 | (or the function name regex <funcname>) within the <file>. You may |
Junio C Hamano | 7e590a1 | 2013-06-02 23:46:52 | [diff] [blame] | 77 | not give any pathspec limiters. This is currently limited to |
| 78 | a walk starting from a single revision, i.e., you may only |
Junio C Hamano | 6879384 | 2020-01-06 23:07:09 | [diff] [blame] | 79 | give zero or one positive revision arguments, and |
| 80 | <start> and <end> (or <funcname>) must exist in the starting revision. |
| 81 | You can specify this option more than once. Implies `--patch`. |
| 82 | Patch output can be suppressed using `--no-patch`, but other diff formats |
| 83 | (namely `--raw`, `--numstat`, `--shortstat`, `--dirstat`, `--summary`, |
| 84 | `--name-only`, `--name-status`, `--check`) are not currently implemented. |
Junio C Hamano | 7e590a1 | 2013-06-02 23:46:52 | [diff] [blame] | 85 | + |
Junio C Hamano | 7e590a1 | 2013-06-02 23:46:52 | [diff] [blame] | 86 | include::line-range-format.txt[] |
| 87 | |
Junio C Hamano | f26c77e | 2013-04-27 00:06:04 | [diff] [blame] | 88 | <revision range>:: |
| 89 | Show only commits in the specified revision range. When no |
| 90 | <revision range> is specified, it defaults to `HEAD` (i.e. the |
| 91 | whole history leading to the current commit). `origin..HEAD` |
| 92 | specifies all the commits reachable from the current commit |
| 93 | (i.e. `HEAD`), but not from `origin`. For a complete list of |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 94 | ways to spell <revision range>, see the 'Specifying Ranges' |
Junio C Hamano | f26c77e | 2013-04-27 00:06:04 | [diff] [blame] | 95 | section of linkgit:gitrevisions[7]. |
| 96 | |
Junio C Hamano | ccb8252 | 2018-05-08 07:52:09 | [diff] [blame] | 97 | [--] <path>...:: |
Junio C Hamano | 5723afa | 2011-08-31 00:49:23 | [diff] [blame] | 98 | Show only commits that are enough to explain how the files |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 99 | that match the specified paths came to be. See 'History |
| 100 | Simplification' below for details and other simplification |
Junio C Hamano | 5723afa | 2011-08-31 00:49:23 | [diff] [blame] | 101 | modes. |
| 102 | + |
Junio C Hamano | ccb8252 | 2018-05-08 07:52:09 | [diff] [blame] | 103 | Paths may need to be prefixed with `--` to separate them from |
Junio C Hamano | f26c77e | 2013-04-27 00:06:04 | [diff] [blame] | 104 | options or the revision range, when confusion arises. |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 105 | |
Junio C Hamano | b0e0295 | 2008-01-19 08:02:00 | [diff] [blame] | 106 | include::rev-list-options.txt[] |
| 107 | |
Junio C Hamano | 0430e3a | 2007-05-15 03:13:17 | [diff] [blame] | 108 | include::pretty-formats.txt[] |
| 109 | |
Junio C Hamano | 58f587a | 2013-07-22 19:20:59 | [diff] [blame] | 110 | COMMON DIFF OPTIONS |
Junio C Hamano | d2c978f | 2011-03-20 19:42:22 | [diff] [blame] | 111 | ------------------- |
| 112 | |
| 113 | :git-log: 1 |
| 114 | include::diff-options.txt[] |
| 115 | |
Junio C Hamano | 00b8b63 | 2007-12-07 09:50:49 | [diff] [blame] | 116 | include::diff-generate-patch.txt[] |
Junio C Hamano | 0430e3a | 2007-05-15 03:13:17 | [diff] [blame] | 117 | |
Junio C Hamano | 58f587a | 2013-07-22 19:20:59 | [diff] [blame] | 118 | EXAMPLES |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 119 | -------- |
Junio C Hamano | 16ebcd0 | 2011-08-05 00:05:45 | [diff] [blame] | 120 | `git log --no-merges`:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 121 | |
| 122 | Show the whole commit history, but skip any merges |
| 123 | |
Junio C Hamano | 16ebcd0 | 2011-08-05 00:05:45 | [diff] [blame] | 124 | `git log v2.6.12.. include/scsi drivers/scsi`:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 125 | |
| 126 | Show all commits since version 'v2.6.12' that changed any file |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 127 | in the `include/scsi` or `drivers/scsi` subdirectories |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 128 | |
Junio C Hamano | b76a686 | 2012-05-02 22:02:46 | [diff] [blame] | 129 | `git log --since="2 weeks ago" -- gitk`:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 130 | |
| 131 | Show the changes during the last two weeks to the file 'gitk'. |
Junio C Hamano | ccb8252 | 2018-05-08 07:52:09 | [diff] [blame] | 132 | The `--` is necessary to avoid confusion with the *branch* named |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 133 | 'gitk' |
| 134 | |
Junio C Hamano | 16ebcd0 | 2011-08-05 00:05:45 | [diff] [blame] | 135 | `git log --name-status release..test`:: |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 136 | |
| 137 | Show the commits that are in the "test" branch but not yet |
| 138 | in the "release" branch, along with the list of paths |
| 139 | each commit modifies. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 140 | |
Junio C Hamano | 3a3357e | 2013-06-26 23:20:56 | [diff] [blame] | 141 | `git log --follow builtin/rev-list.c`:: |
Junio C Hamano | 235d53f | 2007-07-13 00:25:15 | [diff] [blame] | 142 | |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 143 | Shows the commits that changed `builtin/rev-list.c`, including |
Junio C Hamano | 235d53f | 2007-07-13 00:25:15 | [diff] [blame] | 144 | those commits that occurred before the file was given its |
| 145 | present name. |
| 146 | |
Junio C Hamano | 16ebcd0 | 2011-08-05 00:05:45 | [diff] [blame] | 147 | `git log --branches --not --remotes=origin`:: |
Junio C Hamano | 57827fb | 2010-01-23 03:02:50 | [diff] [blame] | 148 | |
| 149 | Shows all commits that are in any of local branches but not in |
Junio C Hamano | 97bcb48 | 2010-11-25 03:16:07 | [diff] [blame] | 150 | any of remote-tracking branches for 'origin' (what you have that |
Junio C Hamano | 57827fb | 2010-01-23 03:02:50 | [diff] [blame] | 151 | origin doesn't). |
| 152 | |
Junio C Hamano | 16ebcd0 | 2011-08-05 00:05:45 | [diff] [blame] | 153 | `git log master --not --remotes=*/master`:: |
Junio C Hamano | 57827fb | 2010-01-23 03:02:50 | [diff] [blame] | 154 | |
| 155 | Shows all commits that are in local master but not in any remote |
| 156 | repository master branches. |
| 157 | |
Junio C Hamano | 16ebcd0 | 2011-08-05 00:05:45 | [diff] [blame] | 158 | `git log -p -m --first-parent`:: |
Junio C Hamano | 3166736 | 2010-03-25 00:38:53 | [diff] [blame] | 159 | |
| 160 | Shows the history including change diffs, but only from the |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 161 | ``main branch'' perspective, skipping commits that come from merged |
Junio C Hamano | 3166736 | 2010-03-25 00:38:53 | [diff] [blame] | 162 | branches, and showing full diffs of changes introduced by the merges. |
| 163 | This makes sense only when following a strict policy of merging all |
| 164 | topic branches when staying on a single integration branch. |
| 165 | |
Junio C Hamano | 24b6835 | 2013-07-18 02:15:20 | [diff] [blame] | 166 | `git log -L '/int main/',/^}/:main.c`:: |
Junio C Hamano | 7e590a1 | 2013-06-02 23:46:52 | [diff] [blame] | 167 | |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 168 | Shows how the function `main()` in the file `main.c` evolved |
Junio C Hamano | 7e590a1 | 2013-06-02 23:46:52 | [diff] [blame] | 169 | over time. |
| 170 | |
Junio C Hamano | 693e709 | 2012-09-12 22:56:53 | [diff] [blame] | 171 | `git log -3`:: |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 172 | |
Junio C Hamano | 693e709 | 2012-09-12 22:56:53 | [diff] [blame] | 173 | Limits the number of commits to show to 3. |
Junio C Hamano | 3166736 | 2010-03-25 00:38:53 | [diff] [blame] | 174 | |
Junio C Hamano | 58f587a | 2013-07-22 19:20:59 | [diff] [blame] | 175 | DISCUSSION |
Junio C Hamano | 775a0f4 | 2006-12-31 01:19:14 | [diff] [blame] | 176 | ---------- |
| 177 | |
| 178 | include::i18n.txt[] |
| 179 | |
Junio C Hamano | 58f587a | 2013-07-22 19:20:59 | [diff] [blame] | 180 | CONFIGURATION |
Junio C Hamano | a574a09 | 2010-06-13 19:57:10 | [diff] [blame] | 181 | ------------- |
| 182 | |
| 183 | See linkgit:git-config[1] for core variables and linkgit:git-diff[1] |
| 184 | for settings related to diff generation. |
| 185 | |
| 186 | format.pretty:: |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 187 | Default for the `--format` option. (See 'Pretty Formats' above.) |
| 188 | Defaults to `medium`. |
Junio C Hamano | a574a09 | 2010-06-13 19:57:10 | [diff] [blame] | 189 | |
| 190 | i18n.logOutputEncoding:: |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 191 | Encoding to use when displaying logs. (See 'Discussion' above.) |
| 192 | Defaults to the value of `i18n.commitEncoding` if set, and UTF-8 |
Junio C Hamano | a574a09 | 2010-06-13 19:57:10 | [diff] [blame] | 193 | otherwise. |
| 194 | |
| 195 | log.date:: |
| 196 | Default format for human-readable dates. (Compare the |
| 197 | `--date` option.) Defaults to "default", which means to write |
| 198 | dates like `Sat May 8 19:35:34 2010 -0500`. |
Junio C Hamano | 23168ef | 2019-02-07 07:20:47 | [diff] [blame] | 199 | + |
| 200 | If the format is set to "auto:foo" and the pager is in use, format |
| 201 | "foo" will be the used for the date format. Otherwise "default" will |
| 202 | be used. |
Junio C Hamano | a574a09 | 2010-06-13 19:57:10 | [diff] [blame] | 203 | |
Junio C Hamano | d7ed404 | 2015-08-03 19:43:00 | [diff] [blame] | 204 | log.follow:: |
Junio C Hamano | b0a1e83 | 2015-10-15 23:08:31 | [diff] [blame] | 205 | If `true`, `git log` will act as if the `--follow` option was used when |
| 206 | a single <path> is given. This has the same limitations as `--follow`, |
| 207 | i.e. it cannot be used to follow multiple files and does not work well |
| 208 | on non-linear history. |
Junio C Hamano | d7ed404 | 2015-08-03 19:43:00 | [diff] [blame] | 209 | |
Junio C Hamano | 322c624 | 2015-03-23 21:32:46 | [diff] [blame] | 210 | log.showRoot:: |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 211 | If `false`, `git log` and related commands will not treat the |
Junio C Hamano | a574a09 | 2010-06-13 19:57:10 | [diff] [blame] | 212 | initial commit as a big creation event. Any root commits in |
| 213 | `git log -p` output would be shown without a diff attached. |
| 214 | The default is `true`. |
| 215 | |
Junio C Hamano | 48931e2 | 2016-07-11 20:08:47 | [diff] [blame] | 216 | log.showSignature:: |
| 217 | If `true`, `git log` and related commands will act as if the |
| 218 | `--show-signature` option was passed to them. |
| 219 | |
Junio C Hamano | abad6da | 2013-01-06 09:06:32 | [diff] [blame] | 220 | mailmap.*:: |
Junio C Hamano | a574a09 | 2010-06-13 19:57:10 | [diff] [blame] | 221 | See linkgit:git-shortlog[1]. |
| 222 | |
| 223 | notes.displayRef:: |
| 224 | Which refs, in addition to the default set by `core.notesRef` |
Junio C Hamano | 042f214 | 2016-06-27 18:05:05 | [diff] [blame] | 225 | or `GIT_NOTES_REF`, to read notes from when showing commit |
Junio C Hamano | b73af6c | 2013-12-03 22:07:11 | [diff] [blame] | 226 | messages with the `log` family of commands. See |
Junio C Hamano | a574a09 | 2010-06-13 19:57:10 | [diff] [blame] | 227 | linkgit:git-notes[1]. |
| 228 | + |
| 229 | May be an unabbreviated ref name or a glob and may be specified |
| 230 | multiple times. A warning will be issued for refs that do not exist, |
| 231 | but a glob that does not match any refs is silently ignored. |
| 232 | + |
Junio C Hamano | 6003346 | 2011-05-03 00:48:43 | [diff] [blame] | 233 | This setting can be disabled by the `--no-notes` option, |
Junio C Hamano | 042f214 | 2016-06-27 18:05:05 | [diff] [blame] | 234 | overridden by the `GIT_NOTES_DISPLAY_REF` environment variable, |
Junio C Hamano | 6003346 | 2011-05-03 00:48:43 | [diff] [blame] | 235 | and overridden by the `--notes=<ref>` option. |
Junio C Hamano | 775a0f4 | 2006-12-31 01:19:14 | [diff] [blame] | 236 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 237 | GIT |
| 238 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 239 | Part of the linkgit:git[1] suite |