# HG changeset patch # User Pierre-Yves David # Date 2023-04-18 13:26:55 # Node ID 4ca794f4e6a3043774090f7d91807eb89dc425fb # Parent 8038493eb31af86560f78b3f484c8054c51e8ea3 debug-delta: add minimal documentation for `devel.bundle-delta` option So the next person won't have to grep the code to know what it is doing. diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -616,6 +616,10 @@ coreconfigitem( b'bundle2.debug', default=False, ) +# which kind of delta to put in the bundled changegroup. Possible value +# - '': use default behavior +# - p1: force to always use delta against p1 +# - full: force to always use full content coreconfigitem( b'devel', b'bundle.delta',