config.txt: move add.* to a separate file
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Sat, 27 Oct 2018 06:22:37 +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/add.txt [new file with mode: 0644]
index 2ba70144c7552ff94fbd072c8d5968d406b10c50..77e45e5219aab24e59f6eb52a6394ad9de8ab66d 100644 (file)
@@ -291,13 +291,7 @@ include::config/advice.txt[]
 
 include::config/core.txt[]
 
-add.ignoreErrors::
-add.ignore-errors (deprecated)::
-       Tells 'git add' to continue adding files when some files cannot be
-       added due to indexing errors. Equivalent to the `--ignore-errors`
-       option of linkgit:git-add[1].  `add.ignore-errors` is deprecated,
-       as it does not follow the usual naming convention for configuration
-       variables.
+include::config/add.txt[]
 
 alias.*::
        Command aliases for the linkgit:git[1] command wrapper - e.g.
diff --git a/Documentation/config/add.txt b/Documentation/config/add.txt
new file mode 100644 (file)
index 0000000..4d753f0
--- /dev/null
@@ -0,0 +1,7 @@
+add.ignoreErrors::
+add.ignore-errors (deprecated)::
+       Tells 'git add' to continue adding files when some files cannot be
+       added due to indexing errors. Equivalent to the `--ignore-errors`
+       option of linkgit:git-add[1].  `add.ignore-errors` is deprecated,
+       as it does not follow the usual naming convention for configuration
+       variables.