author | mpm@selenic.com |
Tue, 26 Jul 2005 19:23:59 -0800 | |
changeset 775 | 122449dd89db |
parent 767 | 61ed30e82b27 |
child 793 | 445970ccf57a |
child 808 | 8f5637f0a0c0 |
child 814 | 0902ffece4b4 |
permissions | -rw-r--r-- |
331 | 1 |
+ mkdir test |
2 |
+ cd test |
|
3 |
+ echo foo |
|
4 |
+ hg init |
|
5 |
+ hg addremove |
|
767
61ed30e82b27
Update tests to match new addremove chattiness.
Bryan O'Sullivan <bos@serpentine.com>
parents:
749
diff
changeset
|
6 |
adding foo |
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
676
diff
changeset
|
7 |
+ hg commit -m 1 |
331 | 8 |
+ hg verify |
9 |
checking changesets |
|
10 |
checking manifests |
|
11 |
crosschecking files in changesets and manifests |
|
12 |
checking files |
|
13 |
1 files, 1 changesets, 1 total revisions |
|
485 | 14 |
+ hg clone . ../branch |
15 |
+ cd ../branch |
|
331 | 16 |
+ hg co |
17 |
+ echo bar |
|
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
676
diff
changeset
|
18 |
+ hg commit -m 2 |
331 | 19 |
+ cd ../test |
20 |
+ hg pull ../branch |
|
404 | 21 |
pulling from ../branch |
331 | 22 |
searching for changes |
23 |
adding changesets |
|
24 |
adding manifests |
|
775 | 25 |
adding file changes |
26 |
added 1 changesets with 1 changes to 1 files |
|
404 | 27 |
(run 'hg update' to get a working copy) |
331 | 28 |
+ hg verify |
29 |
checking changesets |
|
30 |
checking manifests |
|
31 |
crosschecking files in changesets and manifests |
|
32 |
checking files |
|
33 |
1 files, 2 changesets, 2 total revisions |
|
34 |
+ hg co |
|
35 |
+ cat foo |
|
36 |
foo |
|
37 |
bar |
|
38 |
+ hg manifest |
|
39 |
6f4310b00b9a147241b071a60c28a650827fb03d 644 foo |