The second batch
[alt-git.git] / Documentation / config / repack.txt
blobc79af6d7b8b5d7dc03329480d8d418839fe3fef7
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.
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`).
16 repack.useDeltaIslands::
17         If set to true, makes `git repack` act as if `--delta-islands`
18         was passed. Defaults to `false`.
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 true on bare repos, false otherwise.
29 repack.updateServerInfo::
30         If set to false, linkgit:git-repack[1] will not run
31         linkgit:git-update-server-info[1]. Defaults to true. Can be overridden
32         when true by the `-n` option of linkgit:git-repack[1].
34 repack.cruftWindow::
35 repack.cruftWindowMemory::
36 repack.cruftDepth::
37 repack.cruftThreads::
38         Parameters used by linkgit:git-pack-objects[1] when generating
39         a cruft pack and the respective parameters are not given over
40         the command line. See similarly named `pack.*` configuration
41         variables for defaults and meaning.