@@ -55,6 +55,18 @@ Valid object types are:
55
55
56
56
Type 5 is reserved for future expansion. Type 0 is invalid.
57
57
58
+ === Size encoding
59
+
60
+ This document uses the following "size encoding" of non-negative
61
+ integers: From each byte, the seven least significant bits are
62
+ used to form the resulting integer. As long as the most significant
63
+ bit is 1, this process continues; the byte with MSB 0 provides the
64
+ last seven bits. The seven-bit chunks are concatenated. Later
65
+ values are more significant.
66
+
67
+ This size encoding should not be confused with the "offset encoding",
68
+ which is also used in this document.
69
+
58
70
=== Deltified representation
59
71
60
72
Conceptually there are only four object types: commit, tree, tag and
@@ -73,7 +85,10 @@ Ref-delta can also refer to an object outside the pack (i.e. the
73
85
so-called "thin pack"). When stored on disk however, the pack should
74
86
be self contained to avoid cyclic dependency.
75
87
76
- The delta data is a sequence of instructions to reconstruct an object
88
+ The delta data starts with the size of the base object and the
89
+ size of the object to be reconstructed. These sizes are
90
+ encoded using the size encoding from above. The remainder of
91
+ the delta data is a sequence of instructions to reconstruct the object
77
92
from the base object. If the base object is deltified, it must be
78
93
converted to canonical form first. Each instruction appends more and
79
94
more data to the target object until it's complete. There are two
0 commit comments