equal
deleted
inserted
replaced
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 |