##// END OF EJS Templates
dispatch: provide help for disabled extensions and commands...
dispatch: provide help for disabled extensions and commands Before a command is declared unknown, each extension in hgext is searched, starting with hgext.<cmdname>. If there's a matching command, a help message suggests the appropriate extension and how to enable it. Every extension could potentially be imported, but for cases like rebase, relink, etc. only one extension is imported. For the case of "hg help disabledext", if the extension is in hgext, the extension description is read and a similar help suggestion is printed. No extension import occurs.

File last commit:

r9934:720f70b7 default
r10364:de1e7099 default
Show More
test-fncache.out
73 lines | 1.2 KiB | text/plain | TextLexer
Adrian Buehlmann
add test-fncache
r7290 % init repo1
% add a; ci
adding a
% cat .hg/store/fncache
data/a.i
% add a.i/b; ci
adding a.i/b
% cat .hg/store/fncache
data/a.i
data/a.i.hg/b.i
% add a.i.hg/c; ci
adding a.i.hg/c
% cat .hg/store/fncache
data/a.i
data/a.i.hg/b.i
data/a.i.hg.hg/c.i
% hg verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
3 files, 3 changesets, 3 total revisions
% rm .hg/store/fncache
% hg verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
data/a.i@0: missing revlog!
Benoit Boissinot
filelog encoding: move the encoding/decoding into store...
r8531 data/a.i.hg/c.i@2: missing revlog!
data/a.i/b.i@1: missing revlog!
Adrian Buehlmann
add test-fncache
r7290 3 files, 3 changesets, 3 total revisions
3 integrity errors encountered!
(first damaged changeset appears to be 0)
Benoit Boissinot
store encoding: .i/.d encoding for non-store repo (broken by 810387f59696)
r8633 % non store repo
adding tst.d/foo
Will Maier
test-fncache: Use find instead of ls -R....
r8721 .hg
.hg/00changelog.i
.hg/00manifest.i
.hg/data
.hg/data/tst.d.hg
.hg/data/tst.d.hg/foo.i
.hg/dirstate
Greg Ward
commit: save commit message so it's not destroyed by rollback....
r9934 .hg/last-message.txt
Will Maier
test-fncache: Use find instead of ls -R....
r8721 .hg/requires
.hg/undo
.hg/undo.branch
.hg/undo.dirstate
Benoit Boissinot
store encoding: .i/.d encoding for non-store repo (broken by 810387f59696)
r8633 % non fncache repo
adding tst.d/Foo
Will Maier
test-fncache: Use find instead of ls -R....
r8721 .hg
.hg/00changelog.i
.hg/dirstate
Greg Ward
commit: save commit message so it's not destroyed by rollback....
r9934 .hg/last-message.txt
Will Maier
test-fncache: Use find instead of ls -R....
r8721 .hg/requires
.hg/store
.hg/store/00changelog.i
.hg/store/00manifest.i
.hg/store/data
.hg/store/data/tst.d.hg
.hg/store/data/tst.d.hg/_foo.i
.hg/store/undo
.hg/undo.branch
.hg/undo.dirstate