config.txt: move apply.* to a separate file
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Sat, 27 Oct 2018 06:22:40 +0000 (08:22 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 29 Oct 2018 01:17:00 +0000 (10:17 +0900)
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config.txt
Documentation/config/apply.txt [new file with mode: 0644]
index 5e0f76fc6eb1d5d4a6f266d7c0cc56e681ceac14..c8d20227a8278ddc8ac43a281d4c1b85e9fbc00f 100644 (file)
@@ -297,17 +297,7 @@ include::config/alias.txt[]
 
 include::config/am.txt[]
 
 
 include::config/am.txt[]
 
-apply.ignoreWhitespace::
-       When set to 'change', tells 'git apply' to ignore changes in
-       whitespace, in the same way as the `--ignore-space-change`
-       option.
-       When set to one of: no, none, never, false tells 'git apply' to
-       respect all whitespace differences.
-       See linkgit:git-apply[1].
-
-apply.whitespace::
-       Tells 'git apply' how to handle whitespaces, in the same way
-       as the `--whitespace` option. See linkgit:git-apply[1].
+include::config/apply.txt[]
 
 blame.blankBoundary::
        Show blank commit object name for boundary commits in
 
 blame.blankBoundary::
        Show blank commit object name for boundary commits in
diff --git a/Documentation/config/apply.txt b/Documentation/config/apply.txt
new file mode 100644 (file)
index 0000000..8fb8ef7
--- /dev/null
@@ -0,0 +1,11 @@
+apply.ignoreWhitespace::
+       When set to 'change', tells 'git apply' to ignore changes in
+       whitespace, in the same way as the `--ignore-space-change`
+       option.
+       When set to one of: no, none, never, false tells 'git apply' to
+       respect all whitespace differences.
+       See linkgit:git-apply[1].
+
+apply.whitespace::
+       Tells 'git apply' how to handle whitespaces, in the same way
+       as the `--whitespace` option. See linkgit:git-apply[1].