Mercurial > public > mercurial-scm > hg
comparison mercurial/debugcommands.py @ 49222:e7d23c512d3d
debugdeltachain: document the possible value for deltatype
So that one can understand what is displayed by the command.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Wed, 18 May 2022 17:29:03 +0100 |
parents | 75d0775dce7f |
children | 13e523228623 |
comparison
equal
deleted
inserted
replaced
49221:75d0775dce7f | 49222:e7d23c512d3d |
---|---|
762 :``p2``: parent 2 revision number (for reference) | 762 :``p2``: parent 2 revision number (for reference) |
763 :``chainid``: delta chain identifier (numbered by unique base) | 763 :``chainid``: delta chain identifier (numbered by unique base) |
764 :``chainlen``: delta chain length to this revision | 764 :``chainlen``: delta chain length to this revision |
765 :``prevrev``: previous revision in delta chain | 765 :``prevrev``: previous revision in delta chain |
766 :``deltatype``: role of delta / how it was computed | 766 :``deltatype``: role of delta / how it was computed |
767 - base: a full snapshot | |
768 - snap: an intermediate snapshot | |
769 - p1: a delta against the first parent | |
770 - p2: a delta against the second parent | |
771 - prev: a delta against the previous revision | |
772 - other: a delta against an arbitrary revision | |
767 :``compsize``: compressed size of revision | 773 :``compsize``: compressed size of revision |
768 :``uncompsize``: uncompressed size of revision | 774 :``uncompsize``: uncompressed size of revision |
769 :``chainsize``: total size of compressed revisions in chain | 775 :``chainsize``: total size of compressed revisions in chain |
770 :``chainratio``: total chain size divided by uncompressed revision size | 776 :``chainratio``: total chain size divided by uncompressed revision size |
771 (new delta chains typically start at ratio 2.00) | 777 (new delta chains typically start at ratio 2.00) |