##// END OF EJS Templates
TODO tweaks...
TODO tweaks -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 TODO tweaks manifest hash: 7b4c0443e17f1d848b7b7c9fe62407bf80c0a874 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxO9gywK+sNU5EO8RAisZAJwJPvdoKuL12u+C0+RLD7A+coQrIgCgsiNQ +Kml7VZ5cyCaZNCGgFYSemg= =hIqs -----END PGP SIGNATURE-----

File last commit:

r464:50da4bb9 merge default
r540:53872e2b default
Show More
test-copy
20 lines | 268 B | text/plain | TextLexer
mpm@selenic.com
Add hg copy...
r363 #!/bin/bash
set -x
hg init
echo a > a
hg add a
hg commit -t "1" -u test -d "0 0"
hg status
cp a b
hg copy a b
hg status
hg -d commit -t "2" -u test -d "0 0"
hg history
hg log a
hexdump -C .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