Autogenerated manpages for v2.42.0-rc0
[git-manpages.git] / man5 / gitformat-commit-graph.5
blobfbb7c1d44e3d575b0ddd1be998de6b4eacd2f5ea
1 '\" t
2 .\"     Title: gitformat-commit-graph
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2023-08-04
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.42.0.rc0
8 .\"  Language: English
9 .\"
10 .TH "GITFORMAT\-COMMIT\-GRAPH" "5" "2023\-08\-04" "Git 2\&.42\&.0\&.rc0" "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 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 gitformat-commit-graph \- Git commit\-graph format
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 $GIT_DIR/objects/info/commit\-graph
36 $GIT_DIR/objects/info/commit\-graphs/*
37 .fi
38 .sp
39 .SH "DESCRIPTION"
40 .sp
41 The Git commit\-graph stores a list of commit OIDs and some associated metadata, including:
42 .sp
43 .RS 4
44 .ie n \{\
45 \h'-04'\(bu\h'+03'\c
46 .\}
47 .el \{\
48 .sp -1
49 .IP \(bu 2.3
50 .\}
51 The generation number of the commit\&.
52 .RE
53 .sp
54 .RS 4
55 .ie n \{\
56 \h'-04'\(bu\h'+03'\c
57 .\}
58 .el \{\
59 .sp -1
60 .IP \(bu 2.3
61 .\}
62 The root tree OID\&.
63 .RE
64 .sp
65 .RS 4
66 .ie n \{\
67 \h'-04'\(bu\h'+03'\c
68 .\}
69 .el \{\
70 .sp -1
71 .IP \(bu 2.3
72 .\}
73 The commit date\&.
74 .RE
75 .sp
76 .RS 4
77 .ie n \{\
78 \h'-04'\(bu\h'+03'\c
79 .\}
80 .el \{\
81 .sp -1
82 .IP \(bu 2.3
83 .\}
84 The parents of the commit, stored using positional references within the graph file\&.
85 .RE
86 .sp
87 .RS 4
88 .ie n \{\
89 \h'-04'\(bu\h'+03'\c
90 .\}
91 .el \{\
92 .sp -1
93 .IP \(bu 2.3
94 .\}
95 The Bloom filter of the commit carrying the paths that were changed between the commit and its first parent, if requested\&.
96 .RE
97 .sp
98 These positional references are stored as unsigned 32\-bit integers corresponding to the array position within the list of commit OIDs\&. Due to some special constants we use to track parents, we can store at most (1 << 30) + (1 << 29) + (1 << 28) \- 1 (around 1\&.8 billion) commits\&.
99 .SH "COMMIT\-GRAPH FILES HAVE THE FOLLOWING FORMAT:"
101 In order to allow extensions that add extra data to the graph, we organize the body into "chunks" and provide a binary lookup table at the beginning of the body\&. The header includes certain values, such as number of chunks and hash type\&.
103 All multi\-byte numbers are in network byte order\&.
104 .SS "HEADER:"
106 .if n \{\
107 .RS 4
110 4\-byte signature:
111     The signature is: {\*(AqC\*(Aq, \*(AqG\*(Aq, \*(AqP\*(Aq, \*(AqH\*(Aq}
113 .if n \{\
117 .if n \{\
118 .RS 4
121 1\-byte version number:
122     Currently, the only valid version is 1\&.
124 .if n \{\
128 .if n \{\
129 .RS 4
132 1\-byte Hash Version
133     We infer the hash length (H) from this value:
134       1 => SHA\-1
135       2 => SHA\-256
136     If the hash type does not match the repository\*(Aqs hash algorithm, the
137     commit\-graph file should be ignored with a warning presented to the
138     user\&.
140 .if n \{\
144 .if n \{\
145 .RS 4
148 1\-byte number (C) of "chunks"
150 .if n \{\
154 .if n \{\
155 .RS 4
158 1\-byte number (B) of base commit\-graphs
159     We infer the length (H*B) of the Base Graphs chunk
160     from this value\&.
162 .if n \{\
165 .SS "CHUNK LOOKUP:"
167 .if n \{\
168 .RS 4
171 (C + 1) * 12 bytes listing the table of contents for the chunks:
172     First 4 bytes describe the chunk id\&. Value 0 is a terminating label\&.
173     Other 8 bytes provide the byte\-offset in current file for chunk to
174     start\&. (Chunks are ordered contiguously in the file, so you can infer
175     the length using the next chunk position if necessary\&.) Each chunk
176     ID appears at most once\&.
178 .if n \{\
182 .if n \{\
183 .RS 4
186 The CHUNK LOOKUP matches the table of contents from
187 the chunk\-based file format, see linkgit:gitformat\-chunk[5]
189 .if n \{\
193 .if n \{\
194 .RS 4
197 The remaining data in the body is described one chunk at a time, and
198 these chunks may be given in any order\&. Chunks are required unless
199 otherwise specified\&.
201 .if n \{\
204 .SS "CHUNK DATA:"
206 .it 1 an-trap
207 .nr an-no-space-flag 1
208 .nr an-break-flag 1
210 .ps +1
211 \fBOID Fanout (ID: {O, I, D, F}) (256 * 4 bytes)\fR
212 .RS 4
214 .if n \{\
215 .RS 4
218 The ith entry, F[i], stores the number of OIDs with first
219 byte at most i\&. Thus F[255] stores the total
220 number of commits (N)\&.
222 .if n \{\
227 .it 1 an-trap
228 .nr an-no-space-flag 1
229 .nr an-break-flag 1
231 .ps +1
232 \fBOID Lookup (ID: {O, I, D, L}) (N * H bytes)\fR
233 .RS 4
235 .if n \{\
236 .RS 4
239 The OIDs for all commits in the graph, sorted in ascending order\&.
241 .if n \{\
246 .it 1 an-trap
247 .nr an-no-space-flag 1
248 .nr an-break-flag 1
250 .ps +1
251 \fBCommit Data (ID: {C, D, A, T }) (N * (H + 16) bytes)\fR
252 .RS 4
254 .RS 4
255 .ie n \{\
256 \h'-04'\(bu\h'+03'\c
258 .el \{\
259 .sp -1
260 .IP \(bu 2.3
262 The first H bytes are for the OID of the root tree\&.
265 .RS 4
266 .ie n \{\
267 \h'-04'\(bu\h'+03'\c
269 .el \{\
270 .sp -1
271 .IP \(bu 2.3
273 The next 8 bytes are for the positions of the first two parents of the ith commit\&. Stores value 0x70000000 if no parent in that position\&. If there are more than two parents, the second value has its most\-significant bit on and the other bits store an array position into the Extra Edge List chunk\&.
276 .RS 4
277 .ie n \{\
278 \h'-04'\(bu\h'+03'\c
280 .el \{\
281 .sp -1
282 .IP \(bu 2.3
284 The next 8 bytes store the topological level (generation number v1) of the commit and the commit time in seconds since EPOCH\&. The generation number uses the higher 30 bits of the first 4 bytes, while the commit time uses the 32 bits of the second 4 bytes, along with the lowest 2 bits of the lowest byte, storing the 33rd and 34th bit of the commit time\&.
288 .it 1 an-trap
289 .nr an-no-space-flag 1
290 .nr an-break-flag 1
292 .ps +1
293 \fBGeneration Data (ID: {G, D, A, 2 }) (N * 4 bytes) [Optional]\fR
294 .RS 4
296 .RS 4
297 .ie n \{\
298 \h'-04'\(bu\h'+03'\c
300 .el \{\
301 .sp -1
302 .IP \(bu 2.3
304 This list of 4\-byte values store corrected commit date offsets for the commits, arranged in the same order as commit data chunk\&.
307 .RS 4
308 .ie n \{\
309 \h'-04'\(bu\h'+03'\c
311 .el \{\
312 .sp -1
313 .IP \(bu 2.3
315 If the corrected commit date offset cannot be stored within 31 bits, the value has its most\-significant bit on and the other bits store the position of corrected commit date into the Generation Data Overflow chunk\&.
318 .RS 4
319 .ie n \{\
320 \h'-04'\(bu\h'+03'\c
322 .el \{\
323 .sp -1
324 .IP \(bu 2.3
326 Generation Data chunk is present only when commit\-graph file is written by compatible versions of Git and in case of split commit\-graph chains, the topmost layer also has Generation Data chunk\&.
330 .it 1 an-trap
331 .nr an-no-space-flag 1
332 .nr an-break-flag 1
334 .ps +1
335 \fBGeneration Data Overflow (ID: {G, D, O, 2 }) [Optional]\fR
336 .RS 4
338 .RS 4
339 .ie n \{\
340 \h'-04'\(bu\h'+03'\c
342 .el \{\
343 .sp -1
344 .IP \(bu 2.3
346 This list of 8\-byte values stores the corrected commit date offsets for commits with corrected commit date offsets that cannot be stored within 31 bits\&.
349 .RS 4
350 .ie n \{\
351 \h'-04'\(bu\h'+03'\c
353 .el \{\
354 .sp -1
355 .IP \(bu 2.3
357 Generation Data Overflow chunk is present only when Generation Data chunk is present and atleast one corrected commit date offset cannot be stored within 31 bits\&.
361 .it 1 an-trap
362 .nr an-no-space-flag 1
363 .nr an-break-flag 1
365 .ps +1
366 \fBExtra Edge List (ID: {E, D, G, E}) [Optional]\fR
367 .RS 4
369 .if n \{\
370 .RS 4
373 This list of 4\-byte values store the second through nth parents for
374 all octopus merges\&. The second parent value in the commit data stores
375 an array position within this list along with the most\-significant bit
376 on\&. Starting at that array position, iterate through this list of commit
377 positions for the parents until reaching a value with the most\-significant
378 bit on\&. The other bits correspond to the position of the last parent\&.
380 .if n \{\
385 .it 1 an-trap
386 .nr an-no-space-flag 1
387 .nr an-break-flag 1
389 .ps +1
390 \fBBloom Filter Index (ID: {B, I, D, X}) (N * 4 bytes) [Optional]\fR
391 .RS 4
393 .RS 4
394 .ie n \{\
395 \h'-04'\(bu\h'+03'\c
397 .el \{\
398 .sp -1
399 .IP \(bu 2.3
401 The ith entry, BIDX[i], stores the number of bytes in all Bloom filters from commit 0 to commit i (inclusive) in lexicographic order\&. The Bloom filter for the i\-th commit spans from BIDX[i\-1] to BIDX[i] (plus header length), where BIDX[\-1] is 0\&.
404 .RS 4
405 .ie n \{\
406 \h'-04'\(bu\h'+03'\c
408 .el \{\
409 .sp -1
410 .IP \(bu 2.3
412 The BIDX chunk is ignored if the BDAT chunk is not present\&.
416 .it 1 an-trap
417 .nr an-no-space-flag 1
418 .nr an-break-flag 1
420 .ps +1
421 \fBBloom Filter Data (ID: {B, D, A, T}) [Optional]\fR
422 .RS 4
424 .RS 4
425 .ie n \{\
426 \h'-04'\(bu\h'+03'\c
428 .el \{\
429 .sp -1
430 .IP \(bu 2.3
432 It starts with header consisting of three unsigned 32\-bit integers:
434 .RS 4
435 .ie n \{\
436 \h'-04'\(bu\h'+03'\c
438 .el \{\
439 .sp -1
440 .IP \(bu 2.3
442 Version of the hash algorithm being used\&. We currently only support value 1 which corresponds to the 32\-bit version of the murmur3 hash implemented exactly as described in
443 \m[blue]\fBhttps://en\&.wikipedia\&.org/wiki/MurmurHash#Algorithm\fR\m[]
444 and the double hashing technique using seed values 0x293ae76f and 0x7e646e2 as described in
445 \m[blue]\fBhttps://doi\&.org/10\&.1007/978\-3\-540\-30494\-4_26\fR\m[]
446 "Bloom Filters in Probabilistic Verification"
449 .RS 4
450 .ie n \{\
451 \h'-04'\(bu\h'+03'\c
453 .el \{\
454 .sp -1
455 .IP \(bu 2.3
457 The number of times a path is hashed and hence the number of bit positions that cumulatively determine whether a file is present in the commit\&.
460 .RS 4
461 .ie n \{\
462 \h'-04'\(bu\h'+03'\c
464 .el \{\
465 .sp -1
466 .IP \(bu 2.3
468 The minimum number of bits
469 \fIb\fR
470 per entry in the Bloom filter\&. If the filter contains
471 \fIn\fR
472 entries, then the filter size is the minimum number of 64\-bit words that contain n*b bits\&.
476 .RS 4
477 .ie n \{\
478 \h'-04'\(bu\h'+03'\c
480 .el \{\
481 .sp -1
482 .IP \(bu 2.3
484 The rest of the chunk is the concatenation of all the computed Bloom filters for the commits in lexicographic order\&.
487 .RS 4
488 .ie n \{\
489 \h'-04'\(bu\h'+03'\c
491 .el \{\
492 .sp -1
493 .IP \(bu 2.3
495 Note: Commits with no changes or more than 512 changes have Bloom filters of length one, with either all bits set to zero or one respectively\&.
498 .RS 4
499 .ie n \{\
500 \h'-04'\(bu\h'+03'\c
502 .el \{\
503 .sp -1
504 .IP \(bu 2.3
506 The BDAT chunk is present if and only if BIDX is present\&.
510 .it 1 an-trap
511 .nr an-no-space-flag 1
512 .nr an-break-flag 1
514 .ps +1
515 \fBBase Graphs List (ID: {B, A, S, E}) [Optional]\fR
516 .RS 4
518 .if n \{\
519 .RS 4
522 This list of H\-byte hashes describe a set of B commit\-graph files that
523 form a commit\-graph chain\&. The graph position for the ith commit in this
524 file\*(Aqs OID Lookup chunk is equal to i plus the number of commits in all
525 base graphs\&.  If B is non\-zero, this chunk must exist\&.
527 .if n \{\
531 .SS "TRAILER:"
533 .if n \{\
534 .RS 4
537 H\-byte HASH\-checksum of all of the above\&.
539 .if n \{\
542 .SH "HISTORICAL NOTES:"
544 The Generation Data (GDA2) and Generation Data Overflow (GDO2) chunks have the number \fI2\fR in their chunk IDs because a previous version of Git wrote possibly erroneous data in these chunks with the IDs "GDAT" and "GDOV"\&. By changing the IDs, newer versions of Git will silently ignore those older chunks and write the new information without trusting the incorrect data\&.
545 .SH "GIT"
547 Part of the \fBgit\fR(1) suite