11742
|
1 Create a repository:
|
|
2
|
|
3 $ mkdir t
|
|
4 $ cd t
|
|
5 $ hg init
|
|
6
|
|
7 Make a changeset:
|
|
8
|
|
9 $ echo a > a
|
|
10 $ hg add a
|
|
11 $ hg commit -m test -d "1000000 0"
|
|
12
|
|
13 This command is ancient:
|
331
|
14
|
11742
|
15 $ hg history
|
|
16 changeset: 0:0acdaf898367
|
|
17 tag: tip
|
|
18 user: test
|
|
19 date: Mon Jan 12 13:46:40 1970 +0000
|
|
20 summary: test
|
|
21
|
|
22
|
|
23 Poke around at hashes:
|
|
24
|
|
25 $ hg manifest --debug
|
|
26 b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 644 a
|
|
27
|
|
28 $ hg cat a
|
|
29 a
|
|
30
|
|
31 Verify should succeed:
|
|
32
|
|
33 $ hg verify
|
|
34 checking changesets
|
|
35 checking manifests
|
|
36 crosschecking files in changesets and manifests
|
|
37 checking files
|
|
38 1 files, 1 changesets, 1 total revisions
|
|
39
|
|
40 At the end...
|