pack.bitmapContiguousCommitCount | 100 | ⃞ | Count of most recent commits for which to build bitmaps. |
pack.bitmapDistantCommitSpan | 5000 | ⃞ | Span of commits when building bitmaps for distant history. |
pack.bitmapExcessiveBranchCount | 100 | ⃞ | The count of branches deemed “excessive”. If the count of branches in a repository exceeds this number and bitmaps are enabled, “inactive” branches will have fewer bitmaps than “active” branches. |
pack.bitmapInactiveBranchAgeInDays | 90 | ⃞ | Age in days that marks a branch as “inactive” for bitmap creation. |
pack.bitmapRecentCommitCount | 20000 | ⃞ | Count at which to switch from bitmapRecentCommitSpan to bitmapDistantCommitSpan . |
pack.bitmapRecentCommitSpan | 100 | ⃞ | Span of commits when building bitmaps for recent history. |
pack.buildBitmaps | true | ⃞ synonym for repack.writeBitmaps | Whether index writer is allowed to build bitmaps for indexes. |
pack.compression | core.compression | ✅ | Compression level applied to objects in the pack. |
pack.cutDeltaChains | false | ⃞ | Whether existing delta chains should be cut at {@link #getMaxDeltaDepth() |
pack.deltaCacheLimit | 100 | ✅ | Maximum size in bytes of a delta to cache. |
pack.deltaCacheSize | 52428800 (50 MiB) | ✅ | Size of the in-memory delta cache. |
pack.deltaCompression | true | ⃞ | Whether the writer will create new deltas on the fly. true if the pack writer will create a new delta when either pack.reuseDeltas is false, or no suitable delta is available for reuse. |
pack.depth | 50 | ✅ | Maximum depth of delta chain set up for the pack writer. |
pack.indexVersion | 2 | ✅ | Pack index file format version. |
pack.minSizePreventRacyPack | 104857600 (100 MiB) | ⃞ | Minimum packfile size for which we wait before opening a newly written pack to prevent its lastModified timestamp could be racy if pack.waitPreventRacyPack is true . |
pack.preserveOldPacks | false | ⃞ | Whether to preserve old packs in a preserved directory. |
prunePreserved , only via API of PackConfig | false | ⃞ | Whether to remove preserved pack files in a preserved directory. |
pack.reuseDeltas | true | ⃞ | Whether to reuse deltas existing in repository. |
pack.reuseObjects | true | ⃞ | Whether to reuse existing objects representation in repository. |
pack.singlePack | false | ⃞ | Whether all of refs/* should be packed in a single pack. |
pack.threads | 0 (auto-detect number of processors) | ✅ | Number of threads to use for delta compression. |
pack.waitPreventRacyPack | false | ⃞ | Whether we wait before opening a newly written pack to prevent its lastModified timestamp could be racy. |
pack.window | 10 | ✅ | Number of objects to try when looking for a delta base per thread searching for deltas. |
pack.windowMemory | 0 (unlimited) | ✅ | Maximum number of bytes to put into the delta search window. |