author | Martin Geisler <mg@aragost.com> |
Fri, 01 Apr 2011 12:27:12 +0200 | |
changeset 13841 | 367805c848e5 |
parent 13568 | 0b79cf616e65 |
child 13956 | ffb5c09ba822 |
permissions | -rw-r--r-- |
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 |
|
12156
4c94b6d0fb1c
tests: remove unneeded -d flags
Martin Geisler <mg@lazybytes.net>
parents:
11742
diff
changeset
|
11 |
$ hg commit -m test |
11742 | 12 |
|
13 |
This command is ancient: |
|
331 | 14 |
|
11742 | 15 |
$ hg history |
12156
4c94b6d0fb1c
tests: remove unneeded -d flags
Martin Geisler <mg@lazybytes.net>
parents:
11742
diff
changeset
|
16 |
changeset: 0:acb14030fe0a |
11742 | 17 |
tag: tip |
18 |
user: test |
|
12156
4c94b6d0fb1c
tests: remove unneeded -d flags
Martin Geisler <mg@lazybytes.net>
parents:
11742
diff
changeset
|
19 |
date: Thu Jan 01 00:00:00 1970 +0000 |
11742 | 20 |
summary: test |
21 |
||
22 |
||
13568
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
23 |
Verify that updating to revision 0 via commands.update() works properly |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
24 |
|
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
25 |
$ cat <<EOF > update_to_rev0.py |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
26 |
> from mercurial import ui, hg, commands |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
27 |
> myui = ui.ui() |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
28 |
> repo = hg.repository(myui, path='.') |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
29 |
> commands.update(myui, repo, rev=0) |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
30 |
> EOF |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
31 |
$ hg up null |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
32 |
0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
33 |
$ python ./update_to_rev0.py |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
34 |
1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
35 |
$ hg identify -n |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
36 |
0 |
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
37 |
|
0b79cf616e65
commands.update() now works properly with a revision of 0
Mark Drago <markdrago@gmail.com>
parents:
12156
diff
changeset
|
38 |
|
11742 | 39 |
Poke around at hashes: |
40 |
||
41 |
$ hg manifest --debug |
|
42 |
b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 644 a |
|
43 |
||
44 |
$ hg cat a |
|
45 |
a |
|
46 |
||
47 |
Verify should succeed: |
|
48 |
||
49 |
$ hg verify |
|
50 |
checking changesets |
|
51 |
checking manifests |
|
52 |
crosschecking files in changesets and manifests |
|
53 |
checking files |
|
54 |
1 files, 1 changesets, 1 total revisions |
|
55 |
||
56 |
At the end... |