##// 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:

r2982:890e285c default
r2988:63c3a192 default
Show More
test-remove
32 lines | 377 B | text/plain | TextLexer
mpm@selenic.com
Add a simple remove test
r936 #!/bin/sh
hg init a
cd a
echo a > foo
Vadim Gelfer
remove: rewrite to be ~400x faster, bit more friendly...
r2309 hg rm foo
mpm@selenic.com
Add a simple remove test
r936 hg add foo
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m 1 -d "1000000 0"
Vadim Gelfer
make test-remove check some more cases.
r2180 hg remove
mpm@selenic.com
Add a simple remove test
r936 rm foo
hg remove foo
Vadim Gelfer
revert: require --all to revert all files.
r2982 hg revert --all
Vadim Gelfer
make test-remove check some more cases.
r2180 rm foo
hg remove --after
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m 2 -d "1000000 0"
TK Soh
change default strftime format for better portability...
r1953 hg export 0
hg export 1
hg log -p -r 0
hg log -p -r 1
mpm@selenic.com
Add a simple remove test
r936
Vadim Gelfer
remove: rewrite to be ~400x faster, bit more friendly...
r2309 echo a > a
hg add a
hg rm a
hg rm -f a
echo b > b
hg ci -A -m 3 -d "1000001 0"
echo c >> b
hg rm b
hg rm -f b
mpm@selenic.com
Add a simple remove test
r936 cd ..
hg clone a b