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