blob: ba5417567c4df286a95a99cf1ae3e02ee466458f [file] [log] [blame]
Jonas Fonseca8f2b72a2006-03-06 06:24:44 +01001git-blame(1)
2============
3
4NAME
5----
Jonas Fonseca26e8c5d2006-08-25 03:01:49 +02006git-blame - Show what revision and author last modified each line of a file
Jonas Fonseca8f2b72a2006-03-06 06:24:44 +01007
8SYNOPSIS
9--------
Junio C Hamanoacca6872006-11-08 18:47:54 -080010[verse]
Thomas Rast13b8f682013-03-28 17:47:33 +010011'git blame' [-c] [-b] [-l] [--root] [-t] [-f] [-n] [-s] [-e] [-p] [-w] [--incremental]
Eric Sunshine5bd9b792013-08-06 09:59:40 -040012 [-L <range>] [-S <revs-file>] [-M] [-C] [-C] [-C] [--since=<date>]
Edmundo Carmona Antoranzaba37f42015-12-12 18:51:03 -060013 [--progress] [--abbrev=<n>] [<rev> | --contents <file> | --reverse <rev>]
14 [--] <file>
Jonas Fonseca8f2b72a2006-03-06 06:24:44 +010015
16DESCRIPTION
17-----------
Jonas Fonseca26e8c5d2006-08-25 03:01:49 +020018
19Annotates each line in the given file with information from the revision which
20last modified the line. Optionally, start annotating from the given revision.
21
Eric Sunshine5bd9b792013-08-06 09:59:40 -040022When specified one or more times, `-L` restricts annotation to the requested
23lines.
Junio C Hamanoacca6872006-11-08 18:47:54 -080024
Junio C Hamanoe5dce962012-09-21 12:09:42 -070025The origin of lines is automatically followed across whole-file
26renames (currently there is no option to turn the rename-following
27off). To follow lines moved from one file to another, or to follow
28lines that were copied and pasted from another file, etc., see the
29`-C` and `-M` options.
30
David J. Mellorb89510f2009-03-16 23:16:16 -070031The report does not tell you anything about lines which have been deleted or
Thomas Rast0b444cd2010-01-10 00:33:00 +010032replaced; you need to use a tool such as 'git diff' or the "pickaxe"
Jonas Fonseca26e8c5d2006-08-25 03:01:49 +020033interface briefly mentioned in the following paragraph.
34
Thomas Ackermann2de9b712013-01-21 20:17:53 +010035Apart from supporting file annotation, Git also supports searching the
René Scharfe23bfbb82007-01-17 16:32:41 +010036development history for when a code snippet occurred in a change. This makes it
Jonas Fonseca26e8c5d2006-08-25 03:01:49 +020037possible to track when a code snippet was added to a file, moved or copied
38between files, and eventually deleted or replaced. It works by searching for
Albert L. Lash, IV246090a2014-02-08 15:41:37 -050039a text string in the diff. A small example of the pickaxe interface
40that searches for `blame_usage`:
Jonas Fonseca26e8c5d2006-08-25 03:01:49 +020041
42-----------------------------------------------------------------------------
43$ git log --pretty=oneline -S'blame_usage'
445040f17eba15504bad66b14a645bddd9b015ebb7 blame -S <ancestry-file>
45ea4c7f9bf69e781dd0cd88d2bccb2bf5cc15c9a7 git-blame: Make the output
46-----------------------------------------------------------------------------
Jonas Fonseca8f2b72a2006-03-06 06:24:44 +010047
48OPTIONS
49-------
Andrew Ruder635f4a32007-04-16 01:20:34 -050050include::blame-options.txt[]
51
52-c::
Dan McGee5162e692007-12-29 00:20:38 -060053 Use the same output mode as linkgit:git-annotate[1] (Default: off).
Jonas Fonseca8f2b72a2006-03-06 06:24:44 +010054
Andrew Ruder635f4a32007-04-16 01:20:34 -050055--score-debug::
56 Include debugging information related to the movement of
57 lines between files (see `-C`) and lines moved within a
58 file (see `-M`). The first number listed is the score.
59 This is the number of alphanumeric characters detected
David J. Mellorb89510f2009-03-16 23:16:16 -070060 as having been moved between or within files. This must be above
Thomas Rast0b444cd2010-01-10 00:33:00 +010061 a certain threshold for 'git blame' to consider those lines
Andrew Ruder635f4a32007-04-16 01:20:34 -050062 of code to have been moved.
Jonas Fonseca8f2b72a2006-03-06 06:24:44 +010063
Stephan Beyer32402402008-06-08 03:36:09 +020064-f::
65--show-name::
David J. Mellorb89510f2009-03-16 23:16:16 -070066 Show the filename in the original commit. By default
67 the filename is shown if there is any line that came from a
68 file with a different name, due to rename detection.
Junio C Hamanob24642b2006-10-12 00:44:27 -070069
Stephan Beyer32402402008-06-08 03:36:09 +020070-n::
71--show-number::
David J. Mellorb89510f2009-03-16 23:16:16 -070072 Show the line number in the original commit (Default: off).
Junio C Hamanob24642b2006-10-12 00:44:27 -070073
Junio C Hamano093dc5b2007-04-12 15:50:45 -070074-s::
David J. Mellorb89510f2009-03-16 23:16:16 -070075 Suppress the author name and timestamp from the output.
Junio C Hamano093dc5b2007-04-12 15:50:45 -070076
Kevin Ballard1b8cdce2010-10-15 23:57:51 -070077-e::
78--show-email::
79 Show the author email instead of author name (Default: off).
Quentin Neill8b504db2015-05-31 14:27:37 -050080 This can also be controlled via the `blame.showEmail` config
81 option.
Kevin Ballard1b8cdce2010-10-15 23:57:51 -070082
Junio C Hamanob82871b2007-06-09 18:14:56 -070083-w::
David J. Mellorb89510f2009-03-16 23:16:16 -070084 Ignore whitespace when comparing the parent's version and
85 the child's to find where the lines came from.
Junio C Hamanob82871b2007-06-09 18:14:56 -070086
Namhyung Kim84393bf2011-04-06 11:20:50 +090087--abbrev=<n>::
88 Instead of using the default 7+1 hexadecimal digits as the
89 abbreviated object name, use <n>+1 digits. Note that 1 column
90 is used for a caret to mark the boundary commit.
91
Junio C Hamanob82871b2007-06-09 18:14:56 -070092
Junio C Hamanob24642b2006-10-12 00:44:27 -070093THE PORCELAIN FORMAT
94--------------------
95
96In this format, each line is output after a header; the
René Scharfe23bfbb82007-01-17 16:32:41 +010097header at the minimum has the first line which has:
Junio C Hamanob24642b2006-10-12 00:44:27 -070098
99- 40-byte SHA-1 of the commit the line is attributed to;
100- the line number of the line in the original file;
101- the line number of the line in the final file;
David J. Mellorb89510f2009-03-16 23:16:16 -0700102- on a line that starts a group of lines from a different
Junio C Hamanob24642b2006-10-12 00:44:27 -0700103 commit than the previous one, the number of lines in this
104 group. On subsequent lines this field is absent.
105
106This header line is followed by the following information
107at least once for each commit:
108
David J. Mellorb89510f2009-03-16 23:16:16 -0700109- the author name ("author"), email ("author-mail"), time
Jason St. John0ffa1542013-11-08 19:48:52 -0500110 ("author-time"), and time zone ("author-tz"); similarly
Junio C Hamanob24642b2006-10-12 00:44:27 -0700111 for committer.
David J. Mellorb89510f2009-03-16 23:16:16 -0700112- the filename in the commit that the line is attributed to.
Junio C Hamanob24642b2006-10-12 00:44:27 -0700113- the first line of the commit log message ("summary").
114
115The contents of the actual line is output after the above
116header, prefixed by a TAB. This is to allow adding more
117header elements later.
118
Jeff Kinged747dd2011-05-09 09:34:42 -0400119The porcelain format generally suppresses commit information that has
120already been seen. For example, two lines that are blamed to the same
121commit will both be shown, but the details for that commit will be shown
122only once. This is more efficient, but may require more state be kept by
123the reader. The `--line-porcelain` option can be used to output full
124commit information for each line, allowing simpler (but less efficient)
125usage like:
126
127 # count the number of lines attributed to each author
128 git blame --line-porcelain file |
129 sed -n 's/^author //p' |
130 sort | uniq -c | sort -rn
131
Junio C Hamanoacca6872006-11-08 18:47:54 -0800132
René Scharfe23bfbb82007-01-17 16:32:41 +0100133SPECIFYING RANGES
134-----------------
Junio C Hamanoacca6872006-11-08 18:47:54 -0800135
Thomas Rast0b444cd2010-01-10 00:33:00 +0100136Unlike 'git blame' and 'git annotate' in older versions of git, the extent
David J. Mellorb89510f2009-03-16 23:16:16 -0700137of the annotation can be limited to both line ranges and revision
Eric Sunshine5bd9b792013-08-06 09:59:40 -0400138ranges. The `-L` option, which limits annotation to a range of lines, may be
139specified multiple times.
140
141When you are interested in finding the origin for
David J. Mellorb89510f2009-03-16 23:16:16 -0700142lines 40-60 for file `foo`, you can use the `-L` option like so
Junio C Hamano42f62db2007-01-17 13:04:15 -0800143(they mean the same thing -- both ask for 21 lines starting at
144line 40):
Junio C Hamanoacca6872006-11-08 18:47:54 -0800145
146 git blame -L 40,60 foo
Junio C Hamano42f62db2007-01-17 13:04:15 -0800147 git blame -L 40,+21 foo
Junio C Hamanoacca6872006-11-08 18:47:54 -0800148
David J. Mellorb89510f2009-03-16 23:16:16 -0700149Also you can use a regular expression to specify the line range:
Junio C Hamano18d54532006-11-09 10:44:56 -0800150
151 git blame -L '/^sub hello {/,/^}$/' foo
152
David J. Mellorb89510f2009-03-16 23:16:16 -0700153which limits the annotation to the body of the `hello` subroutine.
Junio C Hamano18d54532006-11-09 10:44:56 -0800154
David J. Mellorb89510f2009-03-16 23:16:16 -0700155When you are not interested in changes older than version
Junio C Hamanoacca6872006-11-08 18:47:54 -0800156v2.6.18, or changes older than 3 weeks, you can use revision
Thomas Rast0b444cd2010-01-10 00:33:00 +0100157range specifiers similar to 'git rev-list':
Junio C Hamanoacca6872006-11-08 18:47:54 -0800158
159 git blame v2.6.18.. -- foo
160 git blame --since=3.weeks -- foo
161
162When revision range specifiers are used to limit the annotation,
163lines that have not changed since the range boundary (either the
164commit v2.6.18 or the most recent commit that is more than 3
165weeks old in the above example) are blamed for that range
166boundary commit.
167
David J. Mellorb89510f2009-03-16 23:16:16 -0700168A particularly useful way is to see if an added file has lines
Junio C Hamanoacca6872006-11-08 18:47:54 -0800169created by copy-and-paste from existing files. Sometimes this
170indicates that the developer was being sloppy and did not
171refactor the code properly. You can first find the commit that
172introduced the file with:
173
174 git log --diff-filter=A --pretty=short -- foo
175
176and then annotate the change between the commit and its
Jeff King6cf378f2012-04-26 04:51:57 -0400177parents, using `commit^!` notation:
Junio C Hamanoacca6872006-11-08 18:47:54 -0800178
179 git blame -C -C -f $commit^! -- foo
180
181
Junio C Hamano57e7a0a2007-01-28 12:21:53 -0800182INCREMENTAL OUTPUT
183------------------
184
185When called with `--incremental` option, the command outputs the
186result as it is built. The output generally will talk about
187lines touched by more recent commits first (i.e. the lines will
188be annotated out of order) and is meant to be used by
189interactive viewers.
190
191The output format is similar to the Porcelain format, but it
192does not contain the actual lines from the file that is being
193annotated.
194
195. Each blame entry always starts with a line of:
196
197 <40-byte hex sha1> <sourceline> <resultline> <num_lines>
198+
199Line numbers count from 1.
200
David J. Mellorb89510f2009-03-16 23:16:16 -0700201. The first time that a commit shows up in the stream, it has various
Junio C Hamano57e7a0a2007-01-28 12:21:53 -0800202 other information about it printed out with a one-word tag at the
David J. Mellorb89510f2009-03-16 23:16:16 -0700203 beginning of each line describing the extra commit information (author,
204 email, committer, dates, summary, etc.).
Junio C Hamano57e7a0a2007-01-28 12:21:53 -0800205
David J. Mellorb89510f2009-03-16 23:16:16 -0700206. Unlike the Porcelain format, the filename information is always
Junio C Hamano57e7a0a2007-01-28 12:21:53 -0800207 given and terminates the entry:
208
209 "filename" <whitespace-quoted-filename-goes-here>
210+
David J. Mellorb89510f2009-03-16 23:16:16 -0700211and thus it is really quite easy to parse for some line- and word-oriented
Junio C Hamano57e7a0a2007-01-28 12:21:53 -0800212parser (which should be quite natural for most scripting languages).
213+
214[NOTE]
215For people who do parsing: to make it more robust, just ignore any
David J. Mellorb89510f2009-03-16 23:16:16 -0700216lines between the first and last one ("<sha1>" and "filename" lines)
217where you do not recognize the tag words (or care about that particular
Junio C Hamano57e7a0a2007-01-28 12:21:53 -0800218one) at the beginning of the "extended information" lines. That way, if
219there is ever added information (like the commit encoding or extended
David J. Mellorb89510f2009-03-16 23:16:16 -0700220commit commentary), a blame viewer will not care.
Junio C Hamano57e7a0a2007-01-28 12:21:53 -0800221
222
Marius Storm-Olsen7d48e9e2009-02-08 15:34:31 +0100223MAPPING AUTHORS
224---------------
225
226include::mailmap.txt[]
227
228
Jonas Fonseca8f2b72a2006-03-06 06:24:44 +0100229SEE ALSO
230--------
Dan McGee5162e692007-12-29 00:20:38 -0600231linkgit:git-annotate[1]
Jonas Fonseca8f2b72a2006-03-06 06:24:44 +0100232
Jonas Fonseca8f2b72a2006-03-06 06:24:44 +0100233GIT
234---
Christian Couder9e1f0a82008-06-06 09:07:32 +0200235Part of the linkgit:git[1] suite