Show More
@@ -675,9 +675,6 b' coreconfigitem(' | |||
|
675 | 675 | b'experimental', b'rust.index', default=False, |
|
676 | 676 | ) |
|
677 | 677 | coreconfigitem( |
|
678 | b'experimental', b'exp-persistent-nodemap', default=False, | |
|
679 | ) | |
|
680 | coreconfigitem( | |
|
681 | 678 | b'experimental', b'exp-persistent-nodemap.mmap', default=True, |
|
682 | 679 | ) |
|
683 | 680 | coreconfigitem( |
@@ -787,6 +784,9 b' coreconfigitem(' | |||
|
787 | 784 | b'format', b'usestore', default=True, |
|
788 | 785 | ) |
|
789 | 786 | coreconfigitem( |
|
787 | b'format', b'use-persistent-nodemap', default=False, experimental=True | |
|
788 | ) | |
|
789 | coreconfigitem( | |
|
790 | 790 | b'format', |
|
791 | 791 | b'exp-use-copies-side-data-changeset', |
|
792 | 792 | default=False, |
@@ -3664,7 +3664,7 b' def newreporequirements(ui, createopts):' | |||
|
3664 | 3664 | if ui.configbool(b'format', b'bookmarks-in-store'): |
|
3665 | 3665 | requirements.add(bookmarks.BOOKMARKS_IN_STORE_REQUIREMENT) |
|
3666 | 3666 | |
|
3667 |
if ui.configbool(b' |
|
|
3667 | if ui.configbool(b'format', b'use-persistent-nodemap'): | |
|
3668 | 3668 | requirements.add(NODEMAP_REQUIREMENT) |
|
3669 | 3669 | |
|
3670 | 3670 | return requirements |
General Comments 0
You need to be logged in to leave comments.
Login now