config.txt: move apply.* 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 696d4796fb4fe5c8538be9dcc6daeb857f9ff894
2 files changed +12 -11
Documentation/config.txt
+1 -11
@@ -297,17 +297,7 @@ include::config/alias.txt[]
297
298 include::config/am.txt[]
299
300 -apply.ignoreWhitespace::
301 - When set to 'change', tells 'git apply' to ignore changes in
302 - whitespace, in the same way as the `--ignore-space-change`
303 - option.
304 - When set to one of: no, none, never, false tells 'git apply' to
305 - respect all whitespace differences.
306 - See linkgit:git-apply[1].
307 -
308 -apply.whitespace::
309 - Tells 'git apply' how to handle whitespaces, in the same way
310 - as the `--whitespace` option. See linkgit:git-apply[1].
300 +include::config/apply.txt[]
301
302 blame.blankBoundary::
303 Show blank commit object name for boundary commits in
Documentation/config/apply.txt new
+11
@@ -0,0 +1,11 @@
1 +apply.ignoreWhitespace::
2 + When set to 'change', tells 'git apply' to ignore changes in
3 + whitespace, in the same way as the `--ignore-space-change`
4 + option.
5 + When set to one of: no, none, never, false tells 'git apply' to
6 + respect all whitespace differences.
7 + See linkgit:git-apply[1].
8 +
9 +apply.whitespace::
10 + Tells 'git apply' how to handle whitespaces, in the same way
11 + as the `--whitespace` option. See linkgit:git-apply[1].