Show More
@@ -1,21 +1,22 | |||
|
1 | 1 | #!/bin/sh |
|
2 | 2 | |
|
3 | 3 | mkdir test |
|
4 | 4 | cd test |
|
5 | 5 | echo foo>foo |
|
6 | 6 | hg init |
|
7 | 7 | hg addremove |
|
8 | 8 | hg commit -m 1 |
|
9 | 9 | hg verify |
|
10 | 10 | hg serve -p 20059 > /dev/null & |
|
11 | sleep 1 # wait for server to be started | |
|
11 | 12 | cd .. |
|
12 | 13 | |
|
13 | 14 | hg clone http://localhost:20059/ copy |
|
14 | 15 | cd copy |
|
15 | 16 | hg verify |
|
16 | 17 | hg co |
|
17 | 18 | cat foo |
|
18 | 19 | hg manifest |
|
19 | 20 | hg pull |
|
20 | 21 | |
|
21 | 22 | kill $! |
General Comments 0
You need to be logged in to leave comments.
Login now