mercurial/help/internals/revlogs.txt
changeset 30499 22d05b53b0e8
parent 29747 aba2bb2a6d0f
child 30523 726d30a6d89b
equal deleted inserted replaced
30498:d7a05d8351d0 30499:22d05b53b0e8
    90 6-7 (2 bytes)
    90 6-7 (2 bytes)
    91    Bit flags impacting revision behavior.
    91    Bit flags impacting revision behavior.
    92 8-11 (4 bytes)
    92 8-11 (4 bytes)
    93    Compressed length of revision data / chunk as stored in revlog.
    93    Compressed length of revision data / chunk as stored in revlog.
    94 12-15 (4 bytes)
    94 12-15 (4 bytes)
    95    Uncompressed length of revision data / chunk.
    95    Uncompressed length of revision data. This is the size of the full
       
    96    revision data, not the size of the chunk post decompression.
    96 16-19 (4 bytes)
    97 16-19 (4 bytes)
    97    Base or previous revision this revision's delta was produced against.
    98    Base or previous revision this revision's delta was produced against.
    98    -1 means this revision holds full text (as opposed to a delta).
    99    -1 means this revision holds full text (as opposed to a delta).
    99    For generaldelta repos, this is the previous revision in the delta
   100    For generaldelta repos, this is the previous revision in the delta
   100    chain. For non-generaldelta repos, this is the base or first
   101    chain. For non-generaldelta repos, this is the base or first