comparison mercurial/requirements.py @ 48599:dfbfa802876b

requirements: move "bookmark in store" requirements in the right module There seems to be no reasons to not have it with the others. Differential Revision: https://phab.mercurial-scm.org/D12030
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 17 Jan 2022 19:18:20 +0100
parents bf11ff22a9af
children baddab229b86
comparison
equal deleted inserted replaced
48598:a6f16ec07ed7 48599:dfbfa802876b
64 # A repository with share implemented safely. The repository has different 64 # A repository with share implemented safely. The repository has different
65 # store and working copy requirements i.e. both `.hg/requires` and 65 # store and working copy requirements i.e. both `.hg/requires` and
66 # `.hg/store/requires` are present. 66 # `.hg/store/requires` are present.
67 SHARESAFE_REQUIREMENT = b'share-safe' 67 SHARESAFE_REQUIREMENT = b'share-safe'
68 68
69 # Bookmarks must be stored in the `store` part of the repository and will be
70 # share accross shares
71 BOOKMARKS_IN_STORE_REQUIREMENT = b'bookmarksinstore'
72
69 # List of requirements which are working directory specific 73 # List of requirements which are working directory specific
70 # These requirements cannot be shared between repositories if they 74 # These requirements cannot be shared between repositories if they
71 # share the same store 75 # share the same store
72 # * sparse is a working directory specific functionality and hence working 76 # * sparse is a working directory specific functionality and hence working
73 # directory specific requirement 77 # directory specific requirement