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 | a476efa | 2008-10-10 15:31:42 | [diff] [blame] | 11 | 'git log' [<options>] [<since>..<until>] [[\--] <path>...] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 15 | Shows the commit logs. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 16 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 17 | The command takes options applicable to the 'git rev-list' |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 18 | command to control what is shown and how, and options applicable to |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 19 | the 'git diff-*' commands to control how the changes |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 20 | each commit introduces are shown. |
| 21 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 22 | |
| 23 | OPTIONS |
| 24 | ------- |
Junio C Hamano | a340aaa | 2006-11-23 02:47:33 | [diff] [blame] | 25 | |
Junio C Hamano | 00b8b63 | 2007-12-07 09:50:49 | [diff] [blame] | 26 | :git-log: 1 |
| 27 | include::diff-options.txt[] |
| 28 | |
Junio C Hamano | edd2b0a | 2007-01-15 06:12:45 | [diff] [blame] | 29 | -<n>:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 30 | Limits the number of commits to show. |
| 31 | |
| 32 | <since>..<until>:: |
Junio C Hamano | 775a0f4 | 2006-12-31 01:19:14 | [diff] [blame] | 33 | Show only commits between the named two commits. When |
| 34 | either <since> or <until> is omitted, it defaults to |
| 35 | `HEAD`, i.e. the tip of the current branch. |
Junio C Hamano | 2d47c62 | 2007-01-18 06:24:10 | [diff] [blame] | 36 | For a more complete list of ways to spell <since> |
| 37 | and <until>, see "SPECIFYING REVISIONS" section in |
Junio C Hamano | 35738e8 | 2008-01-07 07:55:46 | [diff] [blame] | 38 | linkgit:git-rev-parse[1]. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 39 | |
Junio C Hamano | c276ec7 | 2009-08-26 01:35:22 | [diff] [blame] | 40 | --decorate[=short|full]:: |
| 41 | Print out the ref names of any commits that are shown. If 'short' is |
| 42 | specified, the ref name prefixes 'refs/heads/', 'refs/tags/' and |
| 43 | 'refs/remotes/' will not be printed. If 'full' is specified, the |
| 44 | full ref name (including prefix) will be printed. The default option |
| 45 | is 'short'. |
Junio C Hamano | ee695f2 | 2007-06-21 00:35:36 | [diff] [blame] | 46 | |
Junio C Hamano | 2836349 | 2008-11-14 08:26:31 | [diff] [blame] | 47 | --source:: |
| 48 | Print out the ref name given on the command line by which each |
| 49 | commit was reached. |
| 50 | |
Junio C Hamano | ee695f2 | 2007-06-21 00:35:36 | [diff] [blame] | 51 | --full-diff:: |
Junio C Hamano | 9e39507 | 2008-07-31 22:11:21 | [diff] [blame] | 52 | Without this flag, "git log -p <path>..." shows commits that |
Junio C Hamano | ee695f2 | 2007-06-21 00:35:36 | [diff] [blame] | 53 | touch the specified paths, and diffs about the same specified |
| 54 | paths. With this, the full diff is shown for commits that touch |
Junio C Hamano | 9e39507 | 2008-07-31 22:11:21 | [diff] [blame] | 55 | the specified paths; this means that "<path>..." limits only |
Junio C Hamano | ee695f2 | 2007-06-21 00:35:36 | [diff] [blame] | 56 | commits, and doesn't limit diff for those commits. |
Junio C Hamano | ea5dae6 | 2007-05-10 23:25:08 | [diff] [blame] | 57 | |
Junio C Hamano | 235d53f | 2007-07-13 00:25:15 | [diff] [blame] | 58 | --follow:: |
| 59 | Continue listing the history of a file beyond renames. |
| 60 | |
Junio C Hamano | 024b6c6 | 2007-08-14 09:43:08 | [diff] [blame] | 61 | --log-size:: |
| 62 | Before the log message print out its size in bytes. Intended |
| 63 | mainly for porcelain tools consumption. If git is unable to |
| 64 | produce a valid value size is set to zero. |
| 65 | Note that only message is considered, if also a diff is shown |
| 66 | its size is not included. |
| 67 | |
Junio C Hamano | a476efa | 2008-10-10 15:31:42 | [diff] [blame] | 68 | [\--] <path>...:: |
| 69 | Show only commits that affect any of the specified paths. To |
| 70 | prevent confusion with options and branch names, paths may need |
| 71 | to be prefixed with "\-- " to separate them from options or |
| 72 | refnames. |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 73 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 74 | |
Junio C Hamano | b0e0295 | 2008-01-19 08:02:00 | [diff] [blame] | 75 | include::rev-list-options.txt[] |
| 76 | |
Junio C Hamano | 0430e3a | 2007-05-15 03:13:17 | [diff] [blame] | 77 | include::pretty-formats.txt[] |
| 78 | |
Junio C Hamano | 00b8b63 | 2007-12-07 09:50:49 | [diff] [blame] | 79 | include::diff-generate-patch.txt[] |
Junio C Hamano | 0430e3a | 2007-05-15 03:13:17 | [diff] [blame] | 80 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 81 | Examples |
| 82 | -------- |
| 83 | git log --no-merges:: |
| 84 | |
| 85 | Show the whole commit history, but skip any merges |
| 86 | |
| 87 | git log v2.6.12.. include/scsi drivers/scsi:: |
| 88 | |
| 89 | Show all commits since version 'v2.6.12' that changed any file |
| 90 | in the include/scsi or drivers/scsi subdirectories |
| 91 | |
Junio C Hamano | 1bb569e | 2006-05-05 23:14:25 | [diff] [blame] | 92 | git log --since="2 weeks ago" \-- gitk:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 93 | |
| 94 | Show the changes during the last two weeks to the file 'gitk'. |
| 95 | The "--" is necessary to avoid confusion with the *branch* named |
| 96 | 'gitk' |
| 97 | |
Junio C Hamano | 7d9e9bd | 2007-08-29 07:31:47 | [diff] [blame] | 98 | git log --name-status release..test:: |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 99 | |
| 100 | Show the commits that are in the "test" branch but not yet |
| 101 | in the "release" branch, along with the list of paths |
| 102 | each commit modifies. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 103 | |
Junio C Hamano | 235d53f | 2007-07-13 00:25:15 | [diff] [blame] | 104 | git log --follow builtin-rev-list.c:: |
| 105 | |
| 106 | Shows the commits that changed builtin-rev-list.c, including |
| 107 | those commits that occurred before the file was given its |
| 108 | present name. |
| 109 | |
Junio C Hamano | 57827fb | 2010-01-23 03:02:50 | [diff] [blame] | 110 | git log --branches --not --remotes=origin:: |
| 111 | |
| 112 | Shows all commits that are in any of local branches but not in |
| 113 | any of remote tracking branches for 'origin' (what you have that |
| 114 | origin doesn't). |
| 115 | |
| 116 | git log master --not --remotes=*/master:: |
| 117 | |
| 118 | Shows all commits that are in local master but not in any remote |
| 119 | repository master branches. |
| 120 | |
Junio C Hamano | 3166736 | 2010-03-25 00:38:53 | [diff] [blame^] | 121 | git log -p -m --first-parent:: |
| 122 | |
| 123 | Shows the history including change diffs, but only from the |
| 124 | "main branch" perspective, skipping commits that come from merged |
| 125 | branches, and showing full diffs of changes introduced by the merges. |
| 126 | This makes sense only when following a strict policy of merging all |
| 127 | topic branches when staying on a single integration branch. |
| 128 | |
| 129 | |
Junio C Hamano | 775a0f4 | 2006-12-31 01:19:14 | [diff] [blame] | 130 | Discussion |
| 131 | ---------- |
| 132 | |
| 133 | include::i18n.txt[] |
| 134 | |
| 135 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 136 | Author |
| 137 | ------ |
| 138 | Written by Linus Torvalds <torvalds@osdl.org> |
| 139 | |
| 140 | Documentation |
| 141 | -------------- |
| 142 | Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>. |
| 143 | |
| 144 | GIT |
| 145 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 146 | Part of the linkgit:git[1] suite |