⇤ ← Revision 1 as of 2011-06-28 19:04:40
Size: 2665
Comment:
|
Size: 2673
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 55: | Line 55: |
CategoryAudit | CategoryTipsAndTricks |
Missing Requirement
All about handling missing repository requirements.
Contents
1. What is a missing requirement?
When an old version of Mercurial attempts to read an on-disk repository using features it doesn't support, it immediately aborts with a "requirement error" to avoid compatibility problems.
This only happens when a newer version of Mercurial creates a repository via init or clone and an older version is used to access that repository on the same disk or network filesystem. All versions of Mercurial are compatible over HTTP or SSH connections.
The following table shows which Mercurial versions support each requirement:
Requirement
Compatible versions
Description
revlogv1
>= 0.9
RevlogNG is used
store
>= 0.9.2
The directory .hg/store contains the subdirectories data (see CaseFoldingPlan)
fncache
>= 1.1
store files are named to work around Windows limitations described in fncacheRepoFormat.
shared
>= 1.3
shared store support
dotencode
>= 1.7
Leading '.' (period) or ' ' (space) in store filenames are encoded (34d8247a4595)
parentdelta
1.7 - 1.8.4
Use parentdelta for new revlogs (experimental, replaced by generaldelta)
generaldelta
>= 1.9
Use generaldelta for improved delta chaining
2. What do I do now?
2.1. Use a newer Mercurial
See the above table to find a version that supports the missing requirement. Upgrading is generally painless, see UpgradingMercurial for more information.
2.2. Downgrade your repository over the network
Because all versions of Mercurial can interoperate over the network, an old client can simply pull from a repository served by a new client:
# run this on the new client $ hg serve listening at http://hostname:8000/ (bound to *:8000) # run this on the old client $ hg clone http://hostname:8000/ downgraded-repo
2.3. Downgrade your repository with a new client
The format configuration option may be used to instruct Mercurial to create older repository formats. For example, to convert a 'dotencode' repository into the previous format, the command
hg --config format.dotencode=0 clone --pull repoA repoB
can be used, which of course requires a Mercurial version that supports the 'dotencode' capability.