Show More
@@ -1425,9 +1425,12 b' coreconfigitem(' | |||||
1425 | default=False, |
|
1425 | default=False, | |
1426 | experimental=True, |
|
1426 | experimental=True, | |
1427 | ) |
|
1427 | ) | |
|
1428 | ||||
|
1429 | # Moving this on by default means we are confident about the scaling of phases. | |||
|
1430 | # This is not garanteed to be the case at the time this message is written. | |||
1428 | coreconfigitem( |
|
1431 | coreconfigitem( | |
1429 | b'format', |
|
1432 | b'format', | |
1430 | b'internal-phase', |
|
1433 | b'use-internal-phase', | |
1431 | default=False, |
|
1434 | default=False, | |
1432 | experimental=True, |
|
1435 | experimental=True, | |
1433 | ) |
|
1436 | ) |
@@ -3662,7 +3662,7 b' def newreporequirements(ui, createopts):' | |||||
3662 | requirements.discard(requirementsmod.REVLOGV1_REQUIREMENT) |
|
3662 | requirements.discard(requirementsmod.REVLOGV1_REQUIREMENT) | |
3663 | requirements.add(requirementsmod.REVLOGV2_REQUIREMENT) |
|
3663 | requirements.add(requirementsmod.REVLOGV2_REQUIREMENT) | |
3664 | # experimental config: format.internal-phase |
|
3664 | # experimental config: format.internal-phase | |
3665 | if ui.configbool(b'format', b'internal-phase'): |
|
3665 | if ui.configbool(b'format', b'use-internal-phase'): | |
3666 | requirements.add(requirementsmod.INTERNAL_PHASE_REQUIREMENT) |
|
3666 | requirements.add(requirementsmod.INTERNAL_PHASE_REQUIREMENT) | |
3667 |
|
3667 | |||
3668 | # experimental config: format.exp-archived-phase |
|
3668 | # experimental config: format.exp-archived-phase |
@@ -29,7 +29,7 b" SPARSE_REQUIREMENT = b'exp-sparse'" | |||||
29 |
|
29 | |||
30 | # Enables the internal phase which is used to hide changesets instead |
|
30 | # Enables the internal phase which is used to hide changesets instead | |
31 | # of stripping them |
|
31 | # of stripping them | |
32 | INTERNAL_PHASE_REQUIREMENT = b'internal-phase' |
|
32 | INTERNAL_PHASE_REQUIREMENT = b'internal-phase-2' | |
33 |
|
33 | |||
34 | # Enables the internal phase which is used to hide changesets instead |
|
34 | # Enables the internal phase which is used to hide changesets instead | |
35 | # of stripping them |
|
35 | # of stripping them |
@@ -879,7 +879,7 b' Test for the "internal" phase' | |||||
879 |
|
879 | |||
880 | Check we deny its usage on older repository |
|
880 | Check we deny its usage on older repository | |
881 |
|
881 | |||
882 | $ hg init no-internal-phase --config format.internal-phase=no |
|
882 | $ hg init no-internal-phase --config format.use-internal-phase=no | |
883 | $ cd no-internal-phase |
|
883 | $ cd no-internal-phase | |
884 | $ hg debugrequires | grep internal-phase |
|
884 | $ hg debugrequires | grep internal-phase | |
885 | [1] |
|
885 | [1] | |
@@ -900,10 +900,10 b' Check we deny its usage on older reposit' | |||||
900 |
|
900 | |||
901 | Check it works fine with repository that supports it. |
|
901 | Check it works fine with repository that supports it. | |
902 |
|
902 | |||
903 | $ hg init internal-phase --config format.internal-phase=yes |
|
903 | $ hg init internal-phase --config format.use-internal-phase=yes | |
904 | $ cd internal-phase |
|
904 | $ cd internal-phase | |
905 | $ hg debugrequires | grep internal-phase |
|
905 | $ hg debugrequires | grep internal-phase | |
906 | internal-phase |
|
906 | internal-phase-2 | |
907 | $ mkcommit A |
|
907 | $ mkcommit A | |
908 | test-debug-phase: new rev 0: x -> 1 |
|
908 | test-debug-phase: new rev 0: x -> 1 | |
909 | test-hook-close-phase: 4a2df7238c3b48766b5e22fafbb8a2f506ec8256: -> draft |
|
909 | test-hook-close-phase: 4a2df7238c3b48766b5e22fafbb8a2f506ec8256: -> draft |
General Comments 0
You need to be logged in to leave comments.
Login now