config.txt: move repack.* 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
be958be2366c325cff30b1dcbd61ebcb3680b83a
2 files changed
+28
-27
Documentation/config.txt
+1
-27
@@ -397,33 +397,7 @@ include::config/remote.txt[]
397
398
include::config/remotes.txt[]
399
400
-repack.useDeltaBaseOffset::
401
- By default, linkgit:git-repack[1] creates packs that use
402
- delta-base offset. If you need to share your repository with
403
- Git older than version 1.4.4, either directly or via a dumb
404
- protocol such as http, then you need to set this option to
405
- "false" and repack. Access from old Git versions over the
406
- native protocol are unaffected by this option.
407
-
408
-repack.packKeptObjects::
409
- If set to true, makes `git repack` act as if
410
- `--pack-kept-objects` was passed. See linkgit:git-repack[1] for
411
- details. Defaults to `false` normally, but `true` if a bitmap
412
- index is being written (either via `--write-bitmap-index` or
413
- `repack.writeBitmaps`).
414
-
415
-repack.useDeltaIslands::
416
- If set to true, makes `git repack` act as if `--delta-islands`
417
- was passed. Defaults to `false`.
418
-
419
-repack.writeBitmaps::
420
- When true, git will write a bitmap index when packing all
421
- objects to disk (e.g., when `git repack -a` is run). This
422
- index can speed up the "counting objects" phase of subsequent
423
- packs created for clones and fetches, at the cost of some disk
424
- space and extra time spent on the initial repack. This has
425
- no effect if multiple packfiles are created.
426
- Defaults to false.
400
+include::config/repack.txt[]
401
402
rerere.autoUpdate::
403
When set to true, `git-rerere` updates the index with the
Documentation/config/repack.txt
new
+27
@@ -0,0 +1,27 @@
1
+repack.useDeltaBaseOffset::
2
+ By default, linkgit:git-repack[1] creates packs that use
3
+ delta-base offset. If you need to share your repository with
4
+ Git older than version 1.4.4, either directly or via a dumb
5
+ protocol such as http, then you need to set this option to
6
+ "false" and repack. Access from old Git versions over the
7
+ native protocol are unaffected by this option.
8
+
9
+repack.packKeptObjects::
10
+ If set to true, makes `git repack` act as if
11
+ `--pack-kept-objects` was passed. See linkgit:git-repack[1] for
12
+ details. Defaults to `false` normally, but `true` if a bitmap
13
+ index is being written (either via `--write-bitmap-index` or
14
+ `repack.writeBitmaps`).
15
+
16
+repack.useDeltaIslands::
17
+ If set to true, makes `git repack` act as if `--delta-islands`
18
+ was passed. Defaults to `false`.
19
+
20
+repack.writeBitmaps::
21
+ When true, git will write a bitmap index when packing all
22
+ objects to disk (e.g., when `git repack -a` is run). This
23
+ index can speed up the "counting objects" phase of subsequent
24
+ packs created for clones and fetches, at the cost of some disk
25
+ space and extra time spent on the initial repack. This has
26
+ no effect if multiple packfiles are created.
27
+ Defaults to false.