##// END OF EJS Templates
histedit: rename `revs` in `ctxs` inside the `between` function...
histedit: rename `revs` in `ctxs` inside the `between` function The variable content is actually contexts, not revision numbers.

File last commit:

r16913:f2719b38 default
r17765:ef7760f0 default
Show More
test-requires.t
19 lines | 476 B | text/troff | Tads3Lexer
$ hg init t
$ cd t
$ echo a > a
$ hg add a
$ hg commit -m test
$ rm .hg/requires
$ hg tip
abort: index 00changelog.i unknown format 2!
[255]
$ echo indoor-pool > .hg/requires
$ hg tip
abort: unknown repository format: requires features 'indoor-pool' (upgrade Mercurial)!
[255]
$ echo outdoor-pool >> .hg/requires
$ hg tip
abort: unknown repository format: requires features 'indoor-pool', 'outdoor-pool' (upgrade Mercurial)!
[255]
$ cd ..