mercurial/help/internals/changegroups.txt
changeset 31287 16539e32ebe0
parent 31213 9f169b7f53d5
child 32139 de86a6872d06
equal deleted inserted replaced
31286:f8df87018ae9 31287:16539e32ebe0
   106 
   106 
   107 The *delta data* consists of ``chunklen - 4 - headerlen`` bytes, which contain a
   107 The *delta data* consists of ``chunklen - 4 - headerlen`` bytes, which contain a
   108 series of *delta*s, densely packed (no separators). These deltas describe a diff
   108 series of *delta*s, densely packed (no separators). These deltas describe a diff
   109 from an existing entry (either that the recipient already has, or previously
   109 from an existing entry (either that the recipient already has, or previously
   110 specified in the bundle/changegroup). The format is described more fully in
   110 specified in the bundle/changegroup). The format is described more fully in
   111 ``hg help internals.bdiff``, but briefly:
   111 ``hg help internals.bdiff``, but briefly::
   112 
   112 
   113    +---------------------------------------------------------------+
   113    +---------------------------------------------------------------+
   114    |              |            |            |                      |
   114    |              |            |            |                      |
   115    | start offset | end offset | new length |        content       |
   115    | start offset | end offset | new length |        content       |
   116    |  (4 bytes)   |  (4 bytes) |  (4 bytes) | (<new length> bytes) |
   116    |  (4 bytes)   |  (4 bytes) |  (4 bytes) | (<new length> bytes) |