Home Explore Blog CI



git

Documentation/config/blame.adoc
56cea38cf6256b85204ea7bbb3da572f28a4b0a290a7848f00000003000005b5
blame.blankBoundary::
	Show blank commit object name for boundary commits in
	linkgit:git-blame[1]. This option defaults to false.

blame.coloring::
	This determines the coloring scheme to be applied to blame
	output. It can be 'repeatedLines', 'highlightRecent',
	or 'none' which is the default.

blame.date::
	Specifies the format used to output dates in linkgit:git-blame[1].
	If unset the iso format is used. For supported values,
	see the discussion of the `--date` option at linkgit:git-log[1].

blame.showEmail::
	Show the author email instead of author name in linkgit:git-blame[1].
	This option defaults to false.

blame.showRoot::
	Do not treat root commits as boundaries in linkgit:git-blame[1].
	This option defaults to false.

blame.ignoreRevsFile::
	Ignore revisions listed in the file, one unabbreviated object name per
	line, in linkgit:git-blame[1].  Whitespace and comments beginning with
	`#` are ignored.  This option may be repeated multiple times.  Empty
	file names will reset the list of ignored revisions.  This option will
	be handled before the command line option `--ignore-revs-file`.

blame.markUnblamableLines::
	Mark lines that were changed by an ignored revision that we could not
	attribute to another commit with a '*' in the output of
	linkgit:git-blame[1].

blame.markIgnoredLines::
	Mark lines that were changed by an ignored revision that we attributed to
	another commit with a '?' in the output of linkgit:git-blame[1].

Chunks
b15b755f (1st chunk of `Documentation/config/blame.adoc`)
Title: Git Blame Configuration Options
Summary
The given text describes various configuration options for Git Blame, including settings for displaying commit information, coloring schemes, date formats, and ignoring certain revisions. These options allow users to customize the output of Git Blame to suit their needs, such as showing blank commit object names, author emails, and root commits. Additionally, options are available to mark unblamable lines and ignored lines, providing more detailed information about the changes made to a file.