##// END OF EJS Templates
Fix callers to file.revision to use file.read...
Fix callers to file.revision to use file.read This was causing unchanged files to show up as modified.

File last commit:

r814:0902ffec merge default
r994:88c15682 default
Show More
test-copy
19 lines | 244 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add hg copy...
r363
hg init
echo a > a
hg add a
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg commit -m "1" -d "0 0"
mpm@selenic.com
Add hg copy...
r363 hg status
cp a b
hg copy a b
hg status
mpm@selenic.com
Update tests to use commit -m and default -u...
r749 hg --debug commit -m "2" -d "0 0"
mpm@selenic.com
Add hg copy...
r363 hg history
hg log a
Thomas Arendsen Hein
Don't use 'set -x', fix exports, sed and hexdump usage for Solaris.
r800 md5sum .hg/data/b.d
mpm@selenic.com
Fix pipe timing for copy test...
r462 hg cat b > bsum
md5sum bsum
hg cat a > asum
md5sum asum
mpm@selenic.com
Add hg copy...
r363 hg verify