author | mpm@selenic.com |
Thu, 21 Jul 2005 15:05:17 -0500 | |
changeset 749 | 7e4843b7efd2 |
parent 642 | 5d6177b72fcc |
child 790 | d7380783a086 |
child 793 | 445970ccf57a |
child 808 | 8f5637f0a0c0 |
child 814 | 0902ffece4b4 |
permissions | -rwxr-xr-x |
544
3d4d5f2aba9a
Remove bashisms and use /bin/sh instead of /bin/bash.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
522
diff
changeset
|
1 |
#!/bin/sh |
336 | 2 |
|
3 |
mkdir test |
|
4 |
cd test |
|
5 |
echo foo>foo |
|
6 |
hg init |
|
7 |
hg addremove |
|
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
642
diff
changeset
|
8 |
hg commit -m 1 |
336 | 9 |
hg verify |
642 | 10 |
hg serve -p 20059 > /dev/null & |
336 | 11 |
cd .. |
12 |
||
485 | 13 |
hg clone http://localhost:20059/ copy |
336 | 14 |
cd copy |
15 |
hg verify |
|
16 |
hg co |
|
17 |
cat foo |
|
18 |
hg manifest |
|
522
2f1de824798a
Fix empty pull bug that appeared this morning
mpm@selenic.com
parents:
495
diff
changeset
|
19 |
hg pull |
336 | 20 |
|
492
9bd468e36de3
Use "kill $!" to kill running background processes.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
485
diff
changeset
|
21 |
kill $! |