config.txt: move blame.* to a separate file

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Nguyễn Thái Ngọc Duy committed Oct 27, 2018 at 08:22 UTC d09467b67f1f23a400a20f720b0c6be70019266f
2 files changed +22 -21
Documentation/config.txt
+1 -21
@@ -299,27 +299,7 @@ include::config/am.txt[]
299
300 include::config/apply.txt[]
301
302 -blame.blankBoundary::
303 - Show blank commit object name for boundary commits in
304 - linkgit:git-blame[1]. This option defaults to false.
305 -
306 -blame.coloring::
307 - This determines the coloring scheme to be applied to blame
308 - output. It can be 'repeatedLines', 'highlightRecent',
309 - or 'none' which is the default.
310 -
311 -blame.date::
312 - Specifies the format used to output dates in linkgit:git-blame[1].
313 - If unset the iso format is used. For supported values,
314 - see the discussion of the `--date` option at linkgit:git-log[1].
315 -
316 -blame.showEmail::
317 - Show the author email instead of author name in linkgit:git-blame[1].
318 - This option defaults to false.
319 -
320 -blame.showRoot::
321 - Do not treat root commits as boundaries in linkgit:git-blame[1].
322 - This option defaults to false.
302 +include::config/blame.txt[]
303
304 branch.autoSetupMerge::
305 Tells 'git branch' and 'git checkout' to set up new branches
Documentation/config/blame.txt new
+21
@@ -0,0 +1,21 @@
1 +blame.blankBoundary::
2 + Show blank commit object name for boundary commits in
3 + linkgit:git-blame[1]. This option defaults to false.
4 +
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.
9 +
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].
14 +
15 +blame.showEmail::
16 + Show the author email instead of author name in linkgit:git-blame[1].
17 + This option defaults to false.
18 +
19 +blame.showRoot::
20 + Do not treat root commits as boundaries in linkgit:git-blame[1].
21 + This option defaults to false.