Show More
@@ -857,6 +857,16 b' https://www.mercurial-scm.org/wiki/Missi' | |||
|
857 | 857 | |
|
858 | 858 | Enabled by default. |
|
859 | 859 | |
|
860 | ``sparse-revlog`` | |
|
861 | Enable or disable the ``sparse-revlog`` delta strategy. This format improves | |
|
862 | delta re-use inside revlog. For very branchy repositories, it results in a | |
|
863 | smaller store. For repositories with many revisions, it also helps | |
|
864 | performance (by using shortened delta chains.) | |
|
865 | ||
|
866 | Repositories with this on-disk format require Mercurial version 4.7 | |
|
867 | ||
|
868 | Enabled by default. | |
|
869 | ||
|
860 | 870 | ``graph`` |
|
861 | 871 | --------- |
|
862 | 872 |
@@ -2920,7 +2920,6 b' def newreporequirements(ui, createopts):' | |||
|
2920 | 2920 | |
|
2921 | 2921 | if scmutil.gdinitconfig(ui): |
|
2922 | 2922 | requirements.add('generaldelta') |
|
2923 | # experimental config: format.sparse-revlog | |
|
2924 | 2923 | if ui.configbool('format', 'sparse-revlog'): |
|
2925 | 2924 | requirements.add(SPARSEREVLOG_REQUIREMENT) |
|
2926 | 2925 | if ui.configbool('experimental', 'treemanifest'): |
General Comments 0
You need to be logged in to leave comments.
Login now