# HG changeset patch # User Pierre-Yves David # Date 1638886448 -3600 # Node ID bf2738e03e96332fc05cbc71d8e5462ee2ecebab # Parent 7964a2dbde125b4cd45e226660711a6545a8e468 share: make it possible to control the working copy format variant A share will use the same format as its source for the store, but there are no reason to not lets it control the working copy variant at creation time. So we make it so. Differential Revision: https://phab.mercurial-scm.org/D11892 diff -r 7964a2dbde12 -r bf2738e03e96 mercurial/localrepo.py --- a/mercurial/localrepo.py Tue Dec 07 14:51:45 2021 +0100 +++ b/mercurial/localrepo.py Tue Dec 07 15:14:08 2021 +0100 @@ -1,4 +1,5 @@ # localrepo.py - read/write repository class for mercurial +# coding: utf-8 # # Copyright 2005-2007 Olivia Mackall # @@ -3661,17 +3662,36 @@ if ui.configbool(b'format', b'use-share-safe'): requirements.add(requirementsmod.SHARESAFE_REQUIREMENT) - # If the repo is being created from a shared repository, we copy - # its requirements. + # if we are creating a share-repo¹ we have to handle requirement + # differently. + # + # [1] (i.e. reusing the store from another repository, just having a + # working copy) if b'sharedrepo' in createopts: - requirements = set(createopts[b'sharedrepo'].requirements) + source_requirements = set(createopts[b'sharedrepo'].requirements) + + if requirementsmod.SHARESAFE_REQUIREMENT not in source_requirements: + # share to an old school repository, we have to copy the + # requirements and hope for the best. + requirements = source_requirements + else: + # We have control on the working copy only, so "copy" the non + # working copy part over, ignoring previous logic. + to_drop = set() + for req in requirements: + if req in requirementsmod.WORKING_DIR_REQUIREMENTS: + continue + if req in source_requirements: + continue + to_drop.add(req) + requirements -= to_drop + requirements |= source_requirements + if createopts.get(b'sharedrelative'): requirements.add(requirementsmod.RELATIVE_SHARED_REQUIREMENT) else: requirements.add(requirementsmod.SHARED_REQUIREMENT) - return requirements - return requirements diff -r 7964a2dbde12 -r bf2738e03e96 tests/test-share.t --- a/tests/test-share.t Tue Dec 07 14:51:45 2021 +0100 +++ b/tests/test-share.t Tue Dec 07 15:14:08 2021 +0100 @@ -284,3 +284,25 @@ $ hg share nostore sharednostore abort: cannot create shared repository as source was created with 'format.usestore' config disabled [255] + +Check that (safe) share can control wc-specific format variant at creation time +------------------------------------------------------------------------------- + +#if no-rust + + $ cat << EOF >> $HGRCPATH + > [storage] + > dirstate-v2.slow-path = allow + > EOF + +#endif + + $ hg init repo-safe-d1 --config format.use-share-safe=yes --config format.exp-rc-dirstate-v2=no + $ hg debugformat -R repo-safe-d1 | grep dirstate-v2 + dirstate-v2: no + + $ hg share repo-safe-d1 share-safe-d2 --config format.use-share-safe=yes --config format.exp-rc-dirstate-v2=yes + updating working directory + 0 files updated, 0 files merged, 0 files removed, 0 files unresolved + $ hg debugformat -R share-safe-d2 | grep dirstate-v2 + dirstate-v2: yes