##// END OF EJS Templates
Add ui.strict config item....
Add ui.strict config item. This turns off command matching by unambiguous prefix, and is a good thing if you want to write future-proof scripts. This fixes issue 314.

File last commit:

r2925:14b4ad61 default
r2988:63c3a192 default
Show More
test-annotate
23 lines | 286 B | text/plain | TextLexer
#!/bin/sh
echo % init
hg init
echo % commit
echo 'a' > a
hg ci -A -m test -u nobody -d '1 0'
echo % annotate -c
hg annotate -c a
echo % annotate -d
hg annotate -d a
echo % annotate -n
hg annotate -n a
echo % annotate -u
hg annotate -u a
echo % annotate -cdnu
hg annotate -cdnu a