comparison mercurial/help/internals/requirements.txt @ 42352:1bc7d4cb4182

help: document new "bookmarksinstore" requirement in internals.requirements Differential Revision: https://phab.mercurial-scm.org/D6413
author Martin von Zweigbergk <martinvonz@google.com>
date Mon, 20 May 2019 16:12:27 -0700
parents 0147a4730420
children
comparison
equal deleted inserted replaced
42351:86f17fc31aa8 42352:1bc7d4cb4182
127 Support for this requirement was added in Mercurial 4.3 (released 127 Support for this requirement was added in Mercurial 4.3 (released
128 August 2017). This requirement and feature are experimental and may 128 August 2017). This requirement and feature are experimental and may
129 disappear in a future Mercurial release. The requirement will only 129 disappear in a future Mercurial release. The requirement will only
130 be present on repositories that have opted in to a sparse working 130 be present on repositories that have opted in to a sparse working
131 directory. 131 directory.
132
133 bookmarksinstore
134 ==================
135
136 Bookmarks are stored in ``.hg/store/`` instead of directly in ``.hg/``
137 where they used to be stored. The active bookmark is still stored
138 directly in ``.hg/``. This makes them always shared by ``hg share``,
139 whether or not ``-B`` was passed.
140
141 Support for this requirement was added in Mercurial 5.1 (released
142 August 2019). The requirement will only be present on repositories
143 that have opted in to this format (by having
144 ``format.bookmarks-in-store=true`` set when they were created).