Fourth batch
[git/raj.git] / Documentation / config / blame.txt
blob9468e8599c0c16d3bd54ec67ba65351be9de1a69
1 blame.blankBoundary::
2         Show blank commit object name for boundary commits in
3         linkgit:git-blame[1]. This option defaults to false.
5 blame.coloring::
6         This determines the coloring scheme to be applied to blame
7         output. It can be 'repeatedLines', 'highlightRecent',
8         or 'none' which is the default.
10 blame.date::
11         Specifies the format used to output dates in linkgit:git-blame[1].
12         If unset the iso format is used. For supported values,
13         see the discussion of the `--date` option at linkgit:git-log[1].
15 blame.showEmail::
16         Show the author email instead of author name in linkgit:git-blame[1].
17         This option defaults to false.
19 blame.showRoot::
20         Do not treat root commits as boundaries in linkgit:git-blame[1].
21         This option defaults to false.
23 blame.ignoreRevsFile::
24         Ignore revisions listed in the file, one unabbreviated object name per
25         line, in linkgit:git-blame[1].  Whitespace and comments beginning with
26         `#` are ignored.  This option may be repeated multiple times.  Empty
27         file names will reset the list of ignored revisions.  This option will
28         be handled before the command line option `--ignore-revs-file`.
30 blame.markUnblamables::
31         Mark lines that were changed by an ignored revision that we could not
32         attribute to another commit with a '*' in the output of
33         linkgit:git-blame[1].
35 blame.markIgnoredLines::
36         Mark lines that were changed by an ignored revision that we attributed to
37         another commit with a '?' in the output of linkgit:git-blame[1].