7

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?

2 Answers 2

10

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.

1
  • I didn't realize the pack file format was described in the technical docs. I even looked there and didn't find it. Oh well. I guess it was in my blind spot. Thanks! Commented Sep 16, 2008 at 19:32
7

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.