config.txt: move add.* 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
29120d8e648497aabbcd997d7483e3650310b384
2 files changed
+8
-7
Documentation/config.txt
+1
-7
@@ -291,13 +291,7 @@ include::config/advice.txt[]
291
292
include::config/core.txt[]
293
294
-add.ignoreErrors::
295
-add.ignore-errors (deprecated)::
296
- Tells 'git add' to continue adding files when some files cannot be
297
- added due to indexing errors. Equivalent to the `--ignore-errors`
298
- option of linkgit:git-add[1]. `add.ignore-errors` is deprecated,
299
- as it does not follow the usual naming convention for configuration
300
- variables.
294
+include::config/add.txt[]
295
296
alias.*::
297
Command aliases for the linkgit:git[1] command wrapper - e.g.
Documentation/config/add.txt
new
+7
@@ -0,0 +1,7 @@
1
+add.ignoreErrors::
2
+add.ignore-errors (deprecated)::
3
+ Tells 'git add' to continue adding files when some files cannot be
4
+ added due to indexing errors. Equivalent to the `--ignore-errors`
5
+ option of linkgit:git-add[1]. `add.ignore-errors` is deprecated,
6
+ as it does not follow the usual naming convention for configuration
7
+ variables.