diff options
author | Stefan Saasen <ssaasen@atlassian.com> | 2013-04-12 15:56:24 +1000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-12 09:14:01 -0700 |
commit | 06cb843fea195ea99391c4daf8018a13ec99c75e (patch) | |
tree | 85225713f77b7a7b0f9e92ace2074015c344f863 | |
parent | 2137ce01f83d254e4917c107901a5a04f61e8c16 (diff) | |
download | git-06cb843fea195ea99391c4daf8018a13ec99c75e.tar.gz git-06cb843fea195ea99391c4daf8018a13ec99c75e.tar.xz |
Documentation: distinguish between ref and offset deltas in pack-format
eb32d236 introduced the OBJ_OFS_DELTA object that uses a relative offset to
identify the base object instead of the 20-byte SHA1 reference. The pack file
documentation only mentions the SHA1 based reference in its description of the
deltified object entry.
Update the pack format documentation to clarify that the deltified object
representation refers to its base using either a relative negative offset or
the absolute SHA1 identifier.
Signed-off-by: Stefan Saasen <ssaasen@atlassian.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/technical/pack-format.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/technical/pack-format.txt b/Documentation/technical/pack-format.txt index a7871fb86..f194d1c6a 100644 --- a/Documentation/technical/pack-format.txt +++ b/Documentation/technical/pack-format.txt @@ -26,7 +26,9 @@ GIT pack format (deltified representation) n-byte type and length (3-bit type, (n-1)*7+4-bit length) - 20-byte base object name + 20-byte base object name if OBJ_REF_DELTA or a negative relative + offset from the delta object's position in the pack if this + is an OBJ_OFS_DELTA object compressed delta data Observation: length of each object is encoded in a variable |