##// END OF EJS Templates

File last commit:

r839:9c918287 merge default
r1580:4737b36e merge default
Show More
test-clone
27 lines | 266 B | text/plain | TextLexer
#!/bin/sh
mkdir a
cd a
hg init
echo a > a
hg add a
hg commit -m test -d '0 0'
# Default operation
hg clone . ../b
cd ../b
cat a
hg verify
# No update
hg clone -U . ../c
cd ../c
cat a
hg verify
# Default destination
mkdir ../d
cd ../d
hg clone ../a
cd a
hg cat a