##// END OF EJS Templates
make manifest friendlier...
make manifest friendlier switch to using context code ..which uses first parent by default show file hashes only with debug switch show permissions with verbose fix up tests

File last commit:

r1933:7544700f default
r3736:ad3d5b43 default
Show More
test-cat
18 lines | 242 B | text/plain | TextLexer
Benoit Boissinot
fix the cat command...
r1582 #!/bin/sh
#
mkdir t
cd t
hg init
echo 0 > a
echo 0 > b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg ci -A -m m -d "1000000 0"
Benoit Boissinot
fix the cat command...
r1582 hg rm a
hg cat a
sleep 1 # make sure mtime is changed
echo 1 > b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg ci -m m -d "1000000 0"
Benoit Boissinot
fix the cat command...
r1582 echo 2 > b
hg cat -r 0 a
hg cat -r 0 b
hg cat -r 1 a
hg cat -r 1 b