Mercurial > public > mercurial-scm > hg
comparison mercurial/configitems.py @ 49609:9cac281eb9c0
debug: add an option to display statistic about a bundling operation
This will helps a lot to understand how the bundling decision might impact
pull/unbundle on the other side.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 15 Nov 2022 16:25:23 +0100 |
parents | 53e4f44ba0e8 |
children | 35d4c2124073 |
comparison
equal
deleted
inserted
replaced
49608:78ba41878f2e | 49609:9cac281eb9c0 |
---|---|
586 coreconfigitem( | 586 coreconfigitem( |
587 b'debug', | 587 b'debug', |
588 b'revlog.debug-delta', | 588 b'revlog.debug-delta', |
589 default=False, | 589 default=False, |
590 ) | 590 ) |
591 # display extra information about the bundling process | |
592 coreconfigitem( | |
593 b'debug', | |
594 b'bundling-stats', | |
595 default=False, | |
596 ) | |
591 coreconfigitem( | 597 coreconfigitem( |
592 b'defaults', | 598 b'defaults', |
593 b'.*', | 599 b'.*', |
594 default=None, | 600 default=None, |
595 generic=True, | 601 generic=True, |