##// END OF EJS Templates
Add a --time command line option to time hg commands
Add a --time command line option to time hg commands

File last commit:

r749:7e4843b7 default
r783:4b06fc1c default
Show More
test-clone
28 lines | 275 B | text/plain | TextLexer
mpm@selenic.com
[PATCH] Tests for clone command...
r550 #!/bin/bash
set -x
mkdir a
cd a
hg init
echo a > a
hg add a
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m test -d '0 0'
mpm@selenic.com
[PATCH] Tests for clone command...
r550
# 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