diff options
author | Jeff King <peff@peff.net> | 2014-06-10 16:20:30 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-10 14:05:19 -0700 |
commit | 71d76cb48029c94af022ea9dc9c74b4ba8bcc3a3 (patch) | |
tree | 5632c4870f1acdcb47d3d6f9661728c09786e94c /Documentation | |
parent | repack: simplify handling of --write-bitmap-index (diff) | |
download | tgif-71d76cb48029c94af022ea9dc9c74b4ba8bcc3a3.tar.xz |
repack: introduce repack.writeBitmaps config option
We currently have pack.writeBitmaps, which originally
operated at the pack-objects level. This should really have
been a repack.* option from day one. Let's give it the more
sensible name, but keep the old version as a deprecated
synonym.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index c0a6e0d056..411bbe5a0d 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -1865,12 +1865,7 @@ pack.useBitmaps:: you are debugging pack bitmaps. pack.writebitmaps:: - When true, git will write a bitmap index when packing all - objects to disk (e.g., when `git repack -a` is run). This - index can speed up the "counting objects" phase of subsequent - packs created for clones and fetches, at the cost of some disk - space and extra time spent on the initial repack. Defaults to - false. + This is a deprecated synonym for `repack.writeBitmaps`. pack.writeBitmapHashCache:: When true, git will include a "hash cache" section in the bitmap @@ -2133,7 +2128,15 @@ repack.packKeptObjects:: `--pack-kept-objects` was passed. See linkgit:git-repack[1] for details. Defaults to `false` normally, but `true` if a bitmap index is being written (either via `--write-bitmap-index` or - `pack.writeBitmaps`). + `repack.writeBitmaps`). + +repack.writeBitmaps:: + When true, git will write a bitmap index when packing all + objects to disk (e.g., when `git repack -a` is run). This + index can speed up the "counting objects" phase of subsequent + packs created for clones and fetches, at the cost of some disk + space and extra time spent on the initial repack. Defaults to + false. rerere.autoupdate:: When set to true, `git-rerere` updates the index with the |