Question

My understanding of the Git pack file format is something like: alt text

Where the table is 32-bits wide, and the first three 32-bit words are the pack file header. The last row of 32 bits are the first 4 bytes of an entry. As I understand it, the size of the entry is specified by consecutive bytes with the MSB set, followed by compressed data.

In the first byte whose MSB is not set, is the MSB part of the compressed data, or is it a gap? If it's part of the compressed data, how can you guarantee that when the data is compressed that bit won't be set?

Was it helpful?

Solution

My reading of the pack file documentation indicates that the last byte of the size (offset 15 in your example) would have the MSB set to 0.

OTHER TIPS

There is also some graphical documentation explaining some of the format here. This section is no longer present in Community book, but still available it the location above.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top