]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-blame.txt
Merge branch 'ab/detox-gettext-tests'
[thirdparty/git.git] / Documentation / git-blame.txt
CommitLineData
8f2b72a9
JF
1git-blame(1)
2============
3
4NAME
5----
26e8c5d3 6git-blame - Show what revision and author last modified each line of a file
8f2b72a9
JF
7
8SYNOPSIS
9--------
acca687f 10[verse]
13b8f68c 11'git blame' [-c] [-b] [-l] [--root] [-t] [-f] [-n] [-s] [-e] [-p] [-w] [--incremental]
5bd9b79a 12 [-L <range>] [-S <revs-file>] [-M] [-C] [-C] [-C] [--since=<date>]
ae3f36de 13 [--ignore-rev <rev>] [--ignore-revs-file <file>]
d993ce1e 14 [--progress] [--abbrev=<n>] [<rev> | --contents <file> | --reverse <rev>..<rev>]
aba37f49 15 [--] <file>
8f2b72a9
JF
16
17DESCRIPTION
18-----------
26e8c5d3
JF
19
20Annotates each line in the given file with information from the revision which
21last modified the line. Optionally, start annotating from the given revision.
22
5bd9b79a
ES
23When specified one or more times, `-L` restricts annotation to the requested
24lines.
acca687f 25
e5dce96e
JH
26The origin of lines is automatically followed across whole-file
27renames (currently there is no option to turn the rename-following
28off). To follow lines moved from one file to another, or to follow
29lines that were copied and pasted from another file, etc., see the
30`-C` and `-M` options.
31
b89510f0 32The report does not tell you anything about lines which have been deleted or
0b444cdb 33replaced; you need to use a tool such as 'git diff' or the "pickaxe"
26e8c5d3
JF
34interface briefly mentioned in the following paragraph.
35
2de9b711 36Apart from supporting file annotation, Git also supports searching the
23bfbb81 37development history for when a code snippet occurred in a change. This makes it
26e8c5d3
JF
38possible to track when a code snippet was added to a file, moved or copied
39between files, and eventually deleted or replaced. It works by searching for
246090a5
ALI
40a text string in the diff. A small example of the pickaxe interface
41that searches for `blame_usage`:
26e8c5d3
JF
42
43-----------------------------------------------------------------------------
44$ git log --pretty=oneline -S'blame_usage'
455040f17eba15504bad66b14a645bddd9b015ebb7 blame -S <ancestry-file>
46ea4c7f9bf69e781dd0cd88d2bccb2bf5cc15c9a7 git-blame: Make the output
47-----------------------------------------------------------------------------
8f2b72a9
JF
48
49OPTIONS
50-------
635f4a30 51include::blame-options.txt[]
b19ee24b 52
635f4a30 53-c::
5162e697 54 Use the same output mode as linkgit:git-annotate[1] (Default: off).
8f2b72a9 55
635f4a30
AR
56--score-debug::
57 Include debugging information related to the movement of
58 lines between files (see `-C`) and lines moved within a
59 file (see `-M`). The first number listed is the score.
60 This is the number of alphanumeric characters detected
b89510f0 61 as having been moved between or within files. This must be above
0b444cdb 62 a certain threshold for 'git blame' to consider those lines
635f4a30 63 of code to have been moved.
8f2b72a9 64
3240240f
SB
65-f::
66--show-name::
b89510f0
DM
67 Show the filename in the original commit. By default
68 the filename is shown if there is any line that came from a
69 file with a different name, due to rename detection.
b24642b2 70
3240240f
SB
71-n::
72--show-number::
b89510f0 73 Show the line number in the original commit (Default: off).
b24642b2 74
093dc5be 75-s::
b89510f0 76 Suppress the author name and timestamp from the output.
093dc5be 77
1b8cdce9
KB
78-e::
79--show-email::
80 Show the author email instead of author name (Default: off).
8b504db3
QN
81 This can also be controlled via the `blame.showEmail` config
82 option.
1b8cdce9 83
b82871b3 84-w::
b89510f0
DM
85 Ignore whitespace when comparing the parent's version and
86 the child's to find where the lines came from.
b82871b3 87
84393bfd
NK
88--abbrev=<n>::
89 Instead of using the default 7+1 hexadecimal digits as the
cda34e0d
JH
90 abbreviated object name, use <m>+1 digits, where <m> is at
91 least <n> but ensures the commit object names are unique.
92 Note that 1 column
84393bfd
NK
93 is used for a caret to mark the boundary commit.
94
b82871b3 95
b24642b2
JH
96THE PORCELAIN FORMAT
97--------------------
98
99In this format, each line is output after a header; the
23bfbb81 100header at the minimum has the first line which has:
b24642b2
JH
101
102- 40-byte SHA-1 of the commit the line is attributed to;
103- the line number of the line in the original file;
104- the line number of the line in the final file;
b89510f0 105- on a line that starts a group of lines from a different
b24642b2
JH
106 commit than the previous one, the number of lines in this
107 group. On subsequent lines this field is absent.
108
109This header line is followed by the following information
110at least once for each commit:
111
b89510f0 112- the author name ("author"), email ("author-mail"), time
0ffa154b 113 ("author-time"), and time zone ("author-tz"); similarly
b24642b2 114 for committer.
b89510f0 115- the filename in the commit that the line is attributed to.
b24642b2
JH
116- the first line of the commit log message ("summary").
117
118The contents of the actual line is output after the above
119header, prefixed by a TAB. This is to allow adding more
120header elements later.
121
ed747dd5
JK
122The porcelain format generally suppresses commit information that has
123already been seen. For example, two lines that are blamed to the same
124commit will both be shown, but the details for that commit will be shown
125only once. This is more efficient, but may require more state be kept by
126the reader. The `--line-porcelain` option can be used to output full
127commit information for each line, allowing simpler (but less efficient)
128usage like:
129
130 # count the number of lines attributed to each author
131 git blame --line-porcelain file |
132 sed -n 's/^author //p' |
133 sort | uniq -c | sort -rn
134
acca687f 135
23bfbb81
RS
136SPECIFYING RANGES
137-----------------
acca687f 138
0b444cdb 139Unlike 'git blame' and 'git annotate' in older versions of git, the extent
b89510f0 140of the annotation can be limited to both line ranges and revision
5bd9b79a
ES
141ranges. The `-L` option, which limits annotation to a range of lines, may be
142specified multiple times.
143
144When you are interested in finding the origin for
b89510f0 145lines 40-60 for file `foo`, you can use the `-L` option like so
42f62db9
JH
146(they mean the same thing -- both ask for 21 lines starting at
147line 40):
acca687f
JH
148
149 git blame -L 40,60 foo
42f62db9 150 git blame -L 40,+21 foo
acca687f 151
b89510f0 152Also you can use a regular expression to specify the line range:
18d5453e
JH
153
154 git blame -L '/^sub hello {/,/^}$/' foo
155
b89510f0 156which limits the annotation to the body of the `hello` subroutine.
18d5453e 157
b89510f0 158When you are not interested in changes older than version
acca687f 159v2.6.18, or changes older than 3 weeks, you can use revision
0b444cdb 160range specifiers similar to 'git rev-list':
acca687f
JH
161
162 git blame v2.6.18.. -- foo
163 git blame --since=3.weeks -- foo
164
165When revision range specifiers are used to limit the annotation,
166lines that have not changed since the range boundary (either the
167commit v2.6.18 or the most recent commit that is more than 3
168weeks old in the above example) are blamed for that range
169boundary commit.
170
b89510f0 171A particularly useful way is to see if an added file has lines
acca687f
JH
172created by copy-and-paste from existing files. Sometimes this
173indicates that the developer was being sloppy and did not
174refactor the code properly. You can first find the commit that
175introduced the file with:
176
177 git log --diff-filter=A --pretty=short -- foo
178
179and then annotate the change between the commit and its
6cf378f0 180parents, using `commit^!` notation:
acca687f
JH
181
182 git blame -C -C -f $commit^! -- foo
183
184
57e7a0a4
JH
185INCREMENTAL OUTPUT
186------------------
187
188When called with `--incremental` option, the command outputs the
189result as it is built. The output generally will talk about
190lines touched by more recent commits first (i.e. the lines will
191be annotated out of order) and is meant to be used by
192interactive viewers.
193
194The output format is similar to the Porcelain format, but it
195does not contain the actual lines from the file that is being
196annotated.
197
198. Each blame entry always starts with a line of:
199
200 <40-byte hex sha1> <sourceline> <resultline> <num_lines>
201+
202Line numbers count from 1.
203
b89510f0 204. The first time that a commit shows up in the stream, it has various
57e7a0a4 205 other information about it printed out with a one-word tag at the
b89510f0
DM
206 beginning of each line describing the extra commit information (author,
207 email, committer, dates, summary, etc.).
57e7a0a4 208
b89510f0 209. Unlike the Porcelain format, the filename information is always
57e7a0a4
JH
210 given and terminates the entry:
211
212 "filename" <whitespace-quoted-filename-goes-here>
213+
b89510f0 214and thus it is really quite easy to parse for some line- and word-oriented
57e7a0a4
JH
215parser (which should be quite natural for most scripting languages).
216+
217[NOTE]
218For people who do parsing: to make it more robust, just ignore any
b89510f0
DM
219lines between the first and last one ("<sha1>" and "filename" lines)
220where you do not recognize the tag words (or care about that particular
57e7a0a4
JH
221one) at the beginning of the "extended information" lines. That way, if
222there is ever added information (like the commit encoding or extended
b89510f0 223commit commentary), a blame viewer will not care.
57e7a0a4
JH
224
225
7d48e9e6
MSO
226MAPPING AUTHORS
227---------------
228
42957af0 229See linkgit:gitmailmap[5].
7d48e9e6
MSO
230
231
8f2b72a9
JF
232SEE ALSO
233--------
5162e697 234linkgit:git-annotate[1]
8f2b72a9 235
8f2b72a9
JF
236GIT
237---
9e1f0a85 238Part of the linkgit:git[1] suite