2 .\" Title: gitformat-pack
3 .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
7 .\" Source: Git 2.44.0.117.g43072b4ca1
10 .TH "GITFORMAT\-PACK" "5" "2024\-03\-05" "Git 2\&.44\&.0\&.117\&.g43072b" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 gitformat-pack \- Git pack format
35 $GIT_DIR/objects/pack/pack\-\fB\&.{pack,idx}
36 $GIT_DIR/objects/pack/pack\-\fR\&.rev
37 $GIT_DIR/objects/pack/pack\-*\&.mtimes
38 $GIT_DIR/objects/pack/multi\-pack\-index
43 The Git pack format is how Git stores most of its primary repository data\&. Over the lifetime of a repository, loose objects (if any) and smaller packs are consolidated into larger pack(s)\&. See \fBgit-gc\fR(1) and \fBgit-pack-objects\fR(1)\&.
45 The pack format is also used over\-the\-wire, see e\&.g\&. \fBgitprotocol-v2\fR(5), as well as being a part of other container formats in the case of \fBgitformat-bundle\fR(5)\&.
46 .SH "CHECKSUMS AND OBJECT IDS"
48 In a repository using the traditional SHA\-1, pack checksums, index checksums, and object IDs (object names) mentioned below are all computed using SHA\-1\&. Similarly, in SHA\-256 repositories, these values are computed using SHA\-256\&.
49 .SH "PACK\-*\&.PACK FILES HAVE THE FOLLOWING FORMAT:"
59 A header appears at the beginning and consists of the following:
66 The signature is: {\*(AqP\*(Aq, \*(AqA\*(Aq, \*(AqC\*(Aq, \*(AqK\*(Aq}
76 4\-byte version number (network byte order):
77 Git currently accepts version number 2 or 3 but
78 generates version 2 only\&.
88 4\-byte number of objects contained in the pack (network byte order)
98 Observation: we cannot have more than 4G versions ;\-) and
99 more than 4G objects in a pack\&.
114 The header is followed by a number of object entries, each of which looks like this:
120 (undeltified representation)
121 n\-byte type and length (3\-bit type, (n\-1)*7+4\-bit length)
132 (deltified representation)
133 n\-byte type and length (3\-bit type, (n\-1)*7+4\-bit length)
134 base object name if OBJ_REF_DELTA or a negative relative
135 offset from the delta object\*(Aqs position in the pack if this
136 is an OBJ_OFS_DELTA object
137 compressed delta data
147 Observation: the length of each object is encoded in a variable
148 length format and is not constrained to 32\-bit or anything\&.
163 The trailer records a pack checksum of all of the above\&.
167 Valid object types are:
235 Type 5 is reserved for future expansion\&. Type 0 is invalid\&.
238 This document uses the following "size encoding" of non\-negative integers: From each byte, the seven least significant bits are used to form the resulting integer\&. As long as the most significant bit is 1, this process continues; the byte with MSB 0 provides the last seven bits\&. The seven\-bit chunks are concatenated\&. Later values are more significant\&.
240 This size encoding should not be confused with the "offset encoding", which is also used in this document\&.
241 .SS "Deltified representation"
243 Conceptually there are only four object types: commit, tree, tag and blob\&. However to save space, an object could be stored as a "delta" of another "base" object\&. These representations are assigned new types ofs\-delta and ref\-delta, which is only valid in a pack file\&.
245 Both ofs\-delta and ref\-delta store the "delta" to be applied to another object (called \fIbase object\fR) to reconstruct the object\&. The difference between them is, ref\-delta directly encodes base object name\&. If the base object is in the same pack, ofs\-delta encodes the offset of the base object in the pack instead\&.
247 The base object could also be deltified if it\(cqs in the same pack\&. Ref\-delta can also refer to an object outside the pack (i\&.e\&. the so\-called "thin pack")\&. When stored on disk however, the pack should be self contained to avoid cyclic dependency\&.
249 The delta data starts with the size of the base object and the size of the object to be reconstructed\&. These sizes are encoded using the size encoding from above\&. The remainder of the delta data is a sequence of instructions to reconstruct the object from the base object\&. If the base object is deltified, it must be converted to canonical form first\&. Each instruction appends more and more data to the target object until it\(cqs complete\&. There are two supported instructions so far: one for copying a byte range from the source object and one for inserting new data embedded in the instruction itself\&.
251 Each instruction has variable length\&. Instruction type is determined by the seventh bit of the first octet\&. The following diagrams follow the convention in RFC 1951 (Deflate compressed data format)\&.
254 .nr an-no-space-flag 1
258 \fBInstruction to copy from base object\fR
265 +\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-+\-\-\-\-\-\-\-+\-\-\-\-\-\-\-+
266 | 1xxxxxxx | offset1 | offset2 | offset3 | offset4 | size1 | size2 | size3 |
267 +\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-+\-\-\-\-\-\-\-+\-\-\-\-\-\-\-+
273 This is the instruction format to copy a byte range from the source object\&. It encodes the offset to copy from and the number of bytes to copy\&. Offset and size are in little\-endian order\&.
275 All offset and size bytes are optional\&. This is to reduce the instruction size when encoding small offsets or sizes\&. The first seven bits in the first octet determine which of the next seven octets is present\&. If bit zero is set, offset1 is present\&. If bit one is set offset2 is present and so on\&.
277 Note that a more compact instruction does not change offset and size encoding\&. For example, if only offset2 is omitted like below, offset3 still contains bits 16\-23\&. It does not become offset2 and contains bits 8\-15 even if it\(cqs right next to offset1\&.
283 +\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+
284 | 10000101 | offset1 | offset3 |
285 +\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-+
291 In its most compact form, this instruction only takes up one byte (0x80) with both offset and size omitted, which will have default values zero\&. There is another exception: size zero is automatically converted to 0x10000\&.
295 .nr an-no-space-flag 1
299 \fBInstruction to add new data\fR
306 +\-\-\-\-\-\-\-\-\-\-+============+
308 +\-\-\-\-\-\-\-\-\-\-+============+
314 This is the instruction to construct the target object without the base object\&. The following data is appended to the target object\&. The first seven bits of the first octet determine the size of data in bytes\&. The size must be non\-zero\&.
318 .nr an-no-space-flag 1
322 \fBReserved instruction\fR
329 +\-\-\-\-\-\-\-\-\-\-+============
331 +\-\-\-\-\-\-\-\-\-\-+============
337 This is the instruction reserved for future expansion\&.
339 .SH "ORIGINAL (VERSION 1) PACK\-*\&.IDX FILES HAVE THE FOLLOWING FORMAT:"
349 The header consists of 256 4\-byte network byte order integers\&. N\-th entry of this table records the number of objects in the corresponding pack, the first byte of whose object name is less than or equal to N\&. This is called the
350 \fIfirst\-level fan\-out\fR
362 The header is followed by sorted 24\-byte entries, one entry per object in the pack\&. Each entry is:
368 4\-byte network byte order integer, recording where the
369 object is stored in the packfile as the offset from the
380 one object name of the appropriate size\&.
395 The file is concluded with a trailer:
401 A copy of the pack checksum at the end of the corresponding
412 Index checksum of all of the above\&.
425 \-\- +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
426 fanout | fanout[0] = 2 (for example) |\-\&.
427 table +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+ |
429 +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+ |
431 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
432 | fanout[255] = total objects |\-\-\-\&.
433 \-\- +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+ | |
435 index | object name 00XXXXXXXXXXXXXXXX | | |
436 table +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+ | |
438 | object name 00XXXXXXXXXXXXXXXX | | |
439 +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+<+ |
441 | | object name 01XXXXXXXXXXXXXXXX | |
442 | +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+ |
444 | | object name 01XXXXXXXXXXXXXXXX | |
445 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
447 | | object name FFXXXXXXXXXXXXXXXX | |
448 \-\-| +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+<\-\-+
449 trailer | | packfile checksum |
450 | +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
451 | | idxfile checksum |
452 | +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
465 packed object header:
466 1\-byte size extension bit (MSB)
469 n\-byte sizeN (as long as MSB is set, each 7\-bit)
470 size0\&.\&.sizeN form 4+7+7+\&.\&.+7 bit integer, size0
471 is the least significant part, and sizeN is the
472 most significant part\&.
474 If it is not DELTA, then deflated bytes (the size above
475 is the size before compression)\&.
476 If it is REF_DELTA, then
477 base object name (the size above is the
478 size of the delta data that follows)\&.
479 delta data, deflated\&.
480 If it is OFS_DELTA, then
481 n\-byte offset (see below) interpreted as a negative
482 offset from the type\-byte of the header of the
483 ofs\-delta entry (the size above is the size of
484 the delta data that follows)\&.
485 delta data, deflated\&.
496 n bytes with MSB set in all but the last one\&.
497 The offset is then the number constructed by
498 concatenating the lower 7 bit of each byte, and
499 for n >= 2 adding 2^7 + 2^14 + \&.\&.\&. + 2^(7*(n\-1))
505 .SH "VERSION 2 PACK\-*\&.IDX FILES SUPPORT PACKS LARGER THAN 4 GIB, AND"
511 have some other reorganizations\&. They have the format:
525 A 4\-byte magic number
527 which is an unreasonable fanout[0] value\&.
538 A 4\-byte version number (= 2)
549 A 256\-entry fan\-out table just like v1\&.
560 A table of sorted object names\&. These are packed together without offset values to reduce the cache footprint of the binary search for a specific object name\&.
571 A table of 4\-byte CRC32 values of the packed object data\&. This is new in v2 so compressed data can be copied directly from pack to pack during repacking without undetected data corruption\&.
582 A table of 4\-byte offset values (in network byte order)\&. These are usually 31\-bit pack file offsets, but large offsets are encoded as an index into the next table with the msbit set\&.
593 A table of 8\-byte offset entries (empty for pack files less than 2 GiB)\&. Pack files are organized with heavily used objects toward the front, so most object references should not need to refer to this table\&.
604 The same trailer as a v1 pack file:
610 A copy of the pack checksum at the end of the
611 corresponding packfile\&.
621 Index checksum of all of the above\&.
627 .SH "PACK\-*\&.REV FILES HAVE THE FORMAT:"
637 A 4\-byte magic number
650 A 4\-byte version identifier (= 1)\&.
661 A 4\-byte hash function identifier (= 1 for SHA\-1, 2 for SHA\-256)\&.
672 A table of index positions (one per packed object, num_objects in total, each a 4\-byte unsigned integer in network order), sorted by their corresponding offsets in the packfile\&.
683 A trailer, containing a:
689 checksum of the corresponding packfile, and
699 a checksum of all of the above\&.
706 All 4\-byte numbers are in network order\&.
707 .SH "PACK\-*\&.MTIMES FILES HAVE THE FORMAT:"
709 All 4\-byte numbers are in network byte order\&.
719 A 4\-byte magic number
732 A 4\-byte version identifier (= 1)\&.
743 A 4\-byte hash function identifier (= 1 for SHA\-1, 2 for SHA\-256)\&.
754 A table of 4\-byte unsigned integers\&. The ith value is the modification time (mtime) of the ith object in the corresponding pack by lexicographic (index) order\&. The mtimes count standard epoch seconds\&.
765 A trailer, containing a checksum of the corresponding packfile, and a checksum of all of the above (each having length according to the specified hash function)\&.
767 .SH "MULTI\-PACK\-INDEX (MIDX) FILES HAVE THE FOLLOWING FORMAT:"
769 The multi\-pack\-index files refer to multiple pack\-files and loose objects\&.
771 In order to allow extensions that add extra data to the MIDX, we organize the body into "chunks" and provide a lookup table at the beginning of the body\&. The header includes certain length values, such as the number of packs, the number of base MIDX files, hash lengths and types\&.
773 All 4\-byte numbers are in network order\&.
782 The signature is: {\*(AqM\*(Aq, \*(AqI\*(Aq, \*(AqD\*(Aq, \*(AqX\*(Aq}
792 1\-byte version number:
793 Git only writes or recognizes version 1\&.
803 1\-byte Object Id Version
804 We infer the length of object IDs (OIDs) from this value:
807 If the hash type does not match the repository\*(Aqs hash algorithm,
808 the multi\-pack\-index file should be ignored with a warning
809 presented to the user\&.
819 1\-byte number of "chunks"
829 1\-byte number of base multi\-pack\-index files:
830 This value is currently always zero\&.
840 4\-byte number of pack files
852 (C + 1) * 12 bytes providing the chunk offsets:
853 First 4 bytes describe chunk id\&. Value 0 is a terminating label\&.
854 Other 8 bytes provide offset in current file for chunk to start\&.
855 (Chunks are provided in file\-order, so you can infer the length
856 using the next chunk position if necessary\&.)
866 The CHUNK LOOKUP matches the table of contents from
867 the chunk\-based file format, see linkgit:gitformat\-chunk[5]\&.
877 The remaining data in the body is described one chunk at a time, and
878 these chunks may be given in any order\&. Chunks are required unless
879 otherwise specified\&.
891 Packfile Names (ID: {\*(AqP\*(Aq, \*(AqN\*(Aq, \*(AqA\*(Aq, \*(AqM\*(Aq})
892 Store the names of packfiles as a sequence of NUL\-terminated
893 strings\&. There is no extra padding between the filenames,
894 and they are listed in lexicographic order\&. The chunk itself
895 is padded at the end with between 0 and 3 NUL bytes to make the
896 chunk size a multiple of 4 bytes\&.
906 Bitmapped Packfiles (ID: {\*(AqB\*(Aq, \*(AqT\*(Aq, \*(AqM\*(Aq, \*(AqP\*(Aq})
907 Stores a table of two 4\-byte unsigned integers in network order\&.
908 Each table entry corresponds to a single pack (in the order that
909 they appear above in the `PNAM` chunk)\&. The values for each table
910 entry are as follows:
911 \- The first bit position (in pseudo\-pack order, see below) to
912 contain an object from that pack\&.
913 \- The number of bits whose objects are selected from that pack\&.
923 OID Fanout (ID: {\*(AqO\*(Aq, \*(AqI\*(Aq, \*(AqD\*(Aq, \*(AqF\*(Aq})
924 The ith entry, F[i], stores the number of OIDs with first
925 byte at most i\&. Thus F[255] stores the total
936 OID Lookup (ID: {\*(AqO\*(Aq, \*(AqI\*(Aq, \*(AqD\*(Aq, \*(AqL\*(Aq})
937 The OIDs for all objects in the MIDX are stored in lexicographic
938 order in this chunk\&.
948 Object Offsets (ID: {\*(AqO\*(Aq, \*(AqO\*(Aq, \*(AqF\*(Aq, \*(AqF\*(Aq})
949 Stores two 4\-byte values for every object\&.
950 1: The pack\-int\-id for the pack storing this object\&.
951 2: The offset within the pack\&.
952 If all offsets are less than 2^32, then the large offset chunk
953 will not exist and offsets are stored as in IDX v1\&.
954 If there is at least one offset value larger than 2^32\-1, then
955 the large offset chunk must exist, and offsets larger than
956 2^31\-1 must be stored in it instead\&. If the large offset chunk
957 exists and the 31st bit is on, then removing that bit reveals
958 the row in the large offsets containing the 8\-byte offset of
969 [Optional] Object Large Offsets (ID: {\*(AqL\*(Aq, \*(AqO\*(Aq, \*(AqF\*(Aq, \*(AqF\*(Aq})
970 8\-byte offsets into large packfiles\&.
980 [Optional] Bitmap pack order (ID: {\*(AqR\*(Aq, \*(AqI\*(Aq, \*(AqD\*(Aq, \*(AqX\*(Aq})
981 A list of MIDX positions (one per object in the MIDX, num_objects in
982 total, each a 4\-byte unsigned integer in network byte order), sorted
983 according to their relative bitmap/pseudo\-pack positions\&.
995 Index checksum of the above contents\&.
1000 .SH "MULTI\-PACK\-INDEX REVERSE INDEXES"
1002 Similar to the pack\-based reverse index, the multi\-pack index can also be used to generate a reverse index\&.
1004 Instead of mapping between offset, pack\-, and index position, this reverse index maps between an object\(cqs position within the MIDX, and that object\(cqs position within a pseudo\-pack that the MIDX describes (i\&.e\&., the ith entry of the multi\-pack reverse index holds the MIDX position of ith object in pseudo\-pack order)\&.
1006 To clarify the difference between these orderings, consider a multi\-pack reachability bitmap (which does not yet exist, but is what we are building towards here)\&. Each bit needs to correspond to an object in the MIDX, and so we need an efficient mapping from bit position to MIDX position\&.
1008 One solution is to let bits occupy the same position in the oid\-sorted index stored by the MIDX\&. But because oids are effectively random, their resulting reachability bitmaps would have no locality, and thus compress poorly\&. (This is the reason that single\-pack bitmaps use the pack ordering, and not the \&.idx ordering, for the same purpose\&.)
1010 So we\(cqd like to define an ordering for the whole MIDX based around pack ordering, which has far better locality (and thus compresses more efficiently)\&. We can think of a pseudo\-pack created by the concatenation of all of the packs in the MIDX\&. E\&.g\&., if we had a MIDX with three packs (a, b, c), with 10, 15, and 20 objects respectively, we can imagine an ordering of the objects like:
1016 |a,0|a,1|\&.\&.\&.|a,9|b,0|b,1|\&.\&.\&.|b,14|c,0|c,1|\&.\&.\&.|c,19|
1022 where the ordering of the packs is defined by the MIDX\(cqs pack list, and then the ordering of objects within each pack is the same as the order in the actual packfile\&.
1024 Given the list of packs and their counts of objects, you can na\(:ively reconstruct that pseudo\-pack ordering (e\&.g\&., the object at position 27 must be (c,1) because packs "a" and "b" consumed 25 of the slots)\&. But there\(cqs a catch\&. Objects may be duplicated between packs, in which case the MIDX only stores one pointer to the object (and thus we\(cqd want only one slot in the bitmap)\&.
1026 Callers could handle duplicates themselves by reading objects in order of their bit\-position, but that\(cqs linear in the number of objects, and much too expensive for ordinary bitmap lookups\&. Building a reverse index solves this, since it is the logical inverse of the index, and that index has already removed duplicates\&. But, building a reverse index on the fly can be expensive\&. Since we already have an on\-disk format for pack\-based reverse indexes, let\(cqs reuse it for the MIDX\(cqs pseudo\-pack, too\&.
1028 Objects from the MIDX are ordered as follows to string together the pseudo\-pack\&. Let \fBpack(o)\fR return the pack from which \fBo\fR was selected by the MIDX, and define an ordering of packs based on their numeric ID (as stored by the MIDX)\&. Let \fBoffset(o)\fR return the object offset of \fBo\fR within \fBpack(o)\fR\&. Then, compare \fBo1\fR and \fBo2\fR as follows:
1032 \h'-04'\(bu\h'+03'\c
1042 is preferred and the other is not, then the preferred one sorts first\&.
1044 (This is a detail that allows the MIDX bitmap to determine which pack should be used by the pack\-reuse mechanism, since it can ask the MIDX for the pack containing the object at bit position 0)\&.
1049 \h'-04'\(bu\h'+03'\c
1056 \fBpack(o1) \(!= pack(o2)\fR, then sort the two objects in descending order based on the pack ID\&.
1061 \h'-04'\(bu\h'+03'\c
1068 \fBpack(o1) = pack(o2)\fR, and the objects are sorted in pack\-order (i\&.e\&.,
1073 \fBoffset(o1) < offset(o2)\fR)\&.
1076 In short, a MIDX\(cqs pseudo\-pack is the de\-duplicated concatenation of objects in packs stored by the MIDX, laid out in pack order, and the packs arranged in MIDX order (with the preferred pack coming first)\&.
1078 The MIDX\(cqs reverse index is stored in the optional \fIRIDX\fR chunk within the MIDX itself\&.
1079 .SS "\fBBTMP\fR chunk"
1081 The Bitmapped Packfiles (\fBBTMP\fR) chunk encodes additional information about the objects in the multi\-pack index\(cqs reachability bitmap\&. Recall that objects from the MIDX are arranged in "pseudo\-pack" order (see above) for reachability bitmaps\&.
1083 From the example above, suppose we have packs "a", "b", and "c", with 10, 15, and 20 objects, respectively\&. In pseudo\-pack order, those would be arranged as follows:
1089 |a,0|a,1|\&.\&.\&.|a,9|b,0|b,1|\&.\&.\&.|b,14|c,0|c,1|\&.\&.\&.|c,19|
1095 When working with single\-pack bitmaps (or, equivalently, multi\-pack reachability bitmaps with a preferred pack), \fBgit-pack-objects\fR(1) performs \(lqverbatim\(rq reuse, attempting to reuse chunks of the bitmapped or preferred packfile instead of adding objects to the packing list\&.
1097 When a chunk of bytes is reused from an existing pack, any objects contained therein do not need to be added to the packing list, saving memory and CPU time\&. But a chunk from an existing packfile can only be reused when the following conditions are met:
1101 \h'-04'\(bu\h'+03'\c
1107 The chunk contains only objects which were requested by the caller (i\&.e\&. does not contain any objects which the caller didn\(cqt ask for explicitly or implicitly)\&.
1112 \h'-04'\(bu\h'+03'\c
1118 All objects stored in non\-thin packs as offset\- or reference\-deltas also include their base object in the resulting pack\&.
1121 The \fBBTMP\fR chunk encodes the necessary information in order to implement multi\-pack reuse over a set of packfiles as described above\&. Specifically, the \fBBTMP\fR chunk encodes three pieces of information (all 32\-bit unsigned integers in network byte\-order) for each packfile \fBp\fR that is stored in the MIDX, as follows:
1125 The first bit position (in pseudo\-pack order) in the multi\-pack index\(cqs reachability bitmap occupied by an object from
1131 The number of bit positions (including the one at
1132 \fBbitmap_pos\fR) that encode objects from that pack
1136 For example, the \fBBTMP\fR chunk corresponding to the above example (with packs \(lqa\(rq, \(lqb\(rq, and \(lqc\(rq) would look like:
1185 With this information in place, we can treat each packfile as individually reusable in the same fashion as verbatim pack reuse is performed on individual packs prior to the implementation of the \fBBTMP\fR chunk\&.
1188 The cruft packs feature offer an alternative to Git\(cqs traditional mechanism of removing unreachable objects\&. This document provides an overview of Git\(cqs pruning mechanism, and how a cruft pack can be used instead to accomplish the same\&.
1191 To remove unreachable objects from your repository, Git offers \fBgit repack \-Ad\fR (see \fBgit-repack\fR(1))\&. Quoting from the documentation:
1197 [\&.\&.\&.] unreachable objects in a previous pack become loose, unpacked objects,
1198 instead of being left in the old pack\&. [\&.\&.\&.] loose unreachable objects will be
1199 pruned according to normal expiry rules with the next \*(Aqgit gc\*(Aq invocation\&.
1206 Unreachable objects aren\(cqt removed immediately, since doing so could race with an incoming push which may reference an object which is about to be deleted\&. Instead, those unreachable objects are stored as loose objects and stay that way until they are older than the expiration window, at which point they are removed by \fBgit-prune\fR(1)\&.
1208 Git must store these unreachable objects loose in order to keep track of their per\-object mtimes\&. If these unreachable objects were written into one big pack, then either freshening that pack (because an object contained within it was re\-written) or creating a new pack of unreachable objects would cause the pack\(cqs mtime to get updated, and the objects within it would never leave the expiration window\&. Instead, objects are stored loose in order to keep track of the individual object mtimes and avoid a situation where all cruft objects are freshened at once\&.
1210 This can lead to undesirable situations when a repository contains many unreachable objects which have not yet left the grace period\&. Having large directories in the shards of \fB\&.git/objects\fR can lead to decreased performance in the repository\&. But given enough unreachable objects, this can lead to inode starvation and degrade the performance of the whole system\&. Since we can never pack those objects, these repositories often take up a large amount of disk space, since we can only zlib compress them, but not store them in delta chains\&.
1213 A cruft pack eliminates the need for storing unreachable objects in a loose state by including the per\-object mtimes in a separate file alongside a single pack containing all loose objects\&.
1215 A cruft pack is written by \fBgit repack \-\-cruft\fR when generating a new pack\&. \fBgit-pack-objects\fR(1)\*(Aqs \fB\-\-cruft\fR option\&. Note that \fBgit repack \-\-cruft\fR is a classic all\-into\-one repack, meaning that everything in the resulting pack is reachable, and everything else is unreachable\&. Once written, the \fB\-\-cruft\fR option instructs \fBgit repack\fR to generate another pack containing only objects not packed in the previous step (which equates to packing all unreachable objects together)\&. This progresses as follows:
1225 Enumerate every object, marking any object which is (a) not contained in a kept\-pack, and (b) whose mtime is within the grace period as a traversal tip\&.
1236 Perform a reachability traversal based on the tips gathered in the previous step, adding every object along the way to the pack\&.
1247 Write the pack out, along with a
1249 file that records the per\-object timestamps\&.
1252 This mode is invoked internally by \fBgit-repack\fR(1) when instructed to write a cruft pack\&. Crucially, the set of in\-core kept packs is exactly the set of packs which will not be deleted by the repack; in other words, they contain all of the repository\(cqs reachable objects\&.
1254 When a repository already has a cruft pack, \fBgit repack \-\-cruft\fR typically only adds objects to it\&. An exception to this is when \fBgit repack\fR is given the \fB\-\-cruft\-expiration\fR option, which allows the generated cruft pack to omit expired objects instead of waiting for \fBgit-gc\fR(1) to expire those objects later on\&.
1256 It is \fBgit-gc\fR(1) that is typically responsible for removing expired unreachable objects\&.
1259 Notable alternatives to this design include:
1263 \h'-04'\(bu\h'+03'\c
1269 The location of the per\-object mtime data\&.
1272 On the location of mtime data, a new auxiliary file tied to the pack was chosen to avoid complicating the \fB\&.idx\fR format\&. If the \fB\&.idx\fR format were ever to gain support for optional chunks of data, it may make sense to consolidate the \fB\&.mtimes\fR format into the \fB\&.idx\fR itself\&.
1275 Part of the \fBgit\fR(1) suite