config.txt: move index.* 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:23 UTC
c1b342adcea5648353add010c4cfa22a810776ba
2 files changed
+11
-10
Documentation/config.txt
+1
-10
@@ -355,16 +355,7 @@ include::config/i18n.txt[]
355
356
include::config/imap.txt[]
357
358
-index.threads::
359
- Specifies the number of threads to spawn when loading the index.
360
- This is meant to reduce index load time on multiprocessor machines.
361
- Specifying 0 or 'true' will cause Git to auto-detect the number of
362
- CPU's and set the number of threads accordingly. Specifying 1 or
363
- 'false' will disable multithreading. Defaults to 'true'.
364
-
365
-index.version::
366
- Specify the version with which new index files should be
367
- initialized. This does not affect existing repositories.
358
+include::config/index.txt[]
359
360
init.templateDir::
361
Specify the directory from which templates will be copied.
Documentation/config/index.txt
new
+10
@@ -0,0 +1,10 @@
1
+index.threads::
2
+ Specifies the number of threads to spawn when loading the index.
3
+ This is meant to reduce index load time on multiprocessor machines.
4
+ Specifying 0 or 'true' will cause Git to auto-detect the number of
5
+ CPU's and set the number of threads accordingly. Specifying 1 or
6
+ 'false' will disable multithreading. Defaults to 'true'.
7
+
8
+index.version::
9
+ Specify the version with which new index files should be
10
+ initialized. This does not affect existing repositories.