diff options
author | Christian Couder <christian.couder@gmail.com> | 2017-03-06 10:42:02 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-03-06 12:09:28 -0800 |
commit | b2dd1c5c34a99c839de26424d9a7630923a465c7 (patch) | |
tree | 24e02da95e0d397f128307894d62ff5828303cc6 | |
parent | read-cache: use freshen_shared_index() in read_index_from() (diff) | |
download | tgif-b2dd1c5c34a99c839de26424d9a7630923a465c7.tar.xz |
Documentation/config: add splitIndex.sharedIndexExpire
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/config.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 721a2afe91..5f5a92f7cf 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -2786,6 +2786,18 @@ splitIndex.maxPercentChange:: than 20 percent of the total number of entries. See linkgit:git-update-index[1]. +splitIndex.sharedIndexExpire:: + When the split index feature is used, shared index files that + were not modified since the time this variable specifies will + be removed when a new shared index file is created. The value + "now" expires all entries immediately, and "never" suppresses + expiration altogether. + The default value is "2.weeks.ago". + Note that a shared index file is considered modified (for the + purpose of expiration) each time a new split-index file is + created based on it. + See linkgit:git-update-index[1]. + status.relativePaths:: By default, linkgit:git-status[1] shows paths relative to the current directory. Setting this variable to `false` shows paths |