331
|
1 |
+ mkdir test
|
|
2 |
+ cd test
|
|
3 |
+ echo foo
|
|
4 |
+ hg init
|
|
5 |
+ hg addremove
|
|
6 |
+ hg commit -t 1
|
|
7 |
+ hg verify
|
|
8 |
checking changesets
|
|
9 |
checking manifests
|
|
10 |
crosschecking files in changesets and manifests
|
|
11 |
checking files
|
|
12 |
1 files, 1 changesets, 1 total revisions
|
485
|
13 |
+ hg clone . ../branch
|
642
|
14 |
cloning by hardlink
|
485
|
15 |
+ cd ../branch
|
331
|
16 |
+ hg co
|
|
17 |
+ echo bar
|
|
18 |
+ hg commit -t 2
|
|
19 |
+ cd ../test
|
|
20 |
+ hg pull ../branch
|
404
|
21 |
pulling from ../branch
|
331
|
22 |
searching for changes
|
|
23 |
adding changesets
|
|
24 |
adding manifests
|
|
25 |
adding file revisions
|
|
26 |
modified 1 files, added 1 changesets and 1 new revisions
|
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
|