diff options
author | 2018-11-21 20:39:02 +0900 | |
---|---|---|
committer | 2018-11-21 20:39:02 +0900 | |
commit | cdda0ccebfaba45d6e157f9fa205a82aa563c44a (patch) | |
tree | ae5c1b3ef937fa0589029cf4b6aeb5c4274b68d5 /Documentation/config | |
parent | Merge branch 'cc/delta-islands' (diff) | |
parent | index: make index.threads=true enable ieot and eoie (diff) | |
download | tgif-cdda0ccebfaba45d6e157f9fa205a82aa563c44a.tar.xz |
Merge branch 'jn/eoie-ieot'
As the warning message shown by existing versions of Git for
unknown index extensions is a bit too alarming, two new extensions
are held back and not written by default for the upcoming release.
* jn/eoie-ieot:
index: make index.threads=true enable ieot and eoie
ieot: default to not writing IEOT section
eoie: default to not writing EOIE section
Diffstat (limited to 'Documentation/config')
-rw-r--r-- | Documentation/config/index.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/config/index.txt b/Documentation/config/index.txt index 4b94b6bedc..f181503041 100644 --- a/Documentation/config/index.txt +++ b/Documentation/config/index.txt @@ -1,3 +1,19 @@ +index.recordEndOfIndexEntries:: + Specifies whether the index file should include an "End Of Index + Entry" section. This reduces index load time on multiprocessor + machines but produces a message "ignoring EOIE extension" when + reading the index using Git versions before 2.20. Defaults to + 'true' if index.threads has been explicitly enabled, 'false' + otherwise. + +index.recordOffsetTable:: + Specifies whether the index file should include an "Index Entry + Offset Table" section. This reduces index load time on + multiprocessor machines but produces a message "ignoring IEOT + extension" when reading the index using Git versions before 2.20. + Defaults to 'true' if index.threads has been explicitly enabled, + 'false' otherwise. + index.threads:: Specifies the number of threads to spawn when loading the index. This is meant to reduce index load time on multiprocessor machines. |