comparison tests/test-bad-pull @ 485:c5705ab9cebd

[PATCH] add clone command -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [PATCH] add clone command Add clone command. Mark with-source version of "init" as deprecated. manifest hash: 3c31263474977c3d8303f45f71c44f7b7e10e97e -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCvzhOywK+sNU5EO8RAmh+AJwIlRfX143oxKShgPWF2dbDvCuH3gCbBrAW isIHptwVRX8pcA0lU638pHo= =ZoQy -----END PGP SIGNATURE-----
author mpm@selenic.com
date Sun, 26 Jun 2005 15:20:46 -0800
parents fbe8834923c5
children 9bd468e36de3 e94cebc60d96
comparison
equal deleted inserted replaced
484:934279f3ca53 485:c5705ab9cebd
1 #!/bin/bash 1 #!/bin/bash
2 2
3 mkdir copy 3 hg clone http://localhost:20059/ copy
4 cd copy 4 cd copy
5 hg init http://localhost:20059/
6 hg verify 5 hg verify
7 hg co 6 hg co
8 cat foo 7 cat foo
9 hg manifest 8 hg manifest
10 9
21 run() 20 run()
22 EOF 21 EOF
23 22
24 python dumb.py 2>/dev/null & 23 python dumb.py 2>/dev/null &
25 24
26 mkdir copy2 25 hg clone http://localhost:20059/foo copy2
27 cd copy2 26 cd copy2
28 hg init http://localhost:20059/foo
29 hg verify 27 hg verify
30 hg co 28 hg co
31 cat foo 29 cat foo
32 hg manifest 30 hg manifest
33 31