Mercurial > hg-stable
annotate tests/test-tags.out @ 374:f07d00fcd281
update tests to reflect new short hash length
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
update tests to reflect new short hash length
manifest hash: 7ae99e74333416e8cbf8bc5d518bb5d3c449788b
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCsQo8ywK+sNU5EO8RAltAAJ97yqgcTU0eYrQ2vpIq+hrfCfrsVwCggUk4
adIvEe7OzGeG6wn0/aRoQXY=
=h8+W
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Wed, 15 Jun 2005 21:12:28 -0800 |
parents | 9d8d9207c0b3 |
children | e5d769afd3ef |
rev | line source |
---|---|
345 | 1 + mkdir t |
2 + cd t | |
3 + hg init | |
4 + hg id | |
5 unknown | |
6 + echo a | |
7 + hg add a | |
8 + hg commit -t test -u test -d '0 0' | |
9 + hg co | |
10 + hg identify | |
374
f07d00fcd281
update tests to reflect new short hash length
mpm@selenic.com
parents:
345
diff
changeset
|
11 acb14030fe0a tip |
345 | 12 ++ hg -q tip |
13 ++ cut -d : -f 2 | |
14 + T=acb14030fe0a21b60322c440ad2d20cf7685a376 | |
15 + echo 'acb14030fe0a21b60322c440ad2d20cf7685a376 first' | |
16 + cat .hgtags | |
17 acb14030fe0a21b60322c440ad2d20cf7685a376 first | |
18 + hg add .hgtags | |
19 + hg commit -t 'add tags' -u test -d '0 0' | |
20 + hg tags | |
21 tip 1:b9154636be938d3d431e75a7c906504a079bfe07 | |
22 first 0:acb14030fe0a21b60322c440ad2d20cf7685a376 | |
23 + hg identify | |
374
f07d00fcd281
update tests to reflect new short hash length
mpm@selenic.com
parents:
345
diff
changeset
|
24 b9154636be93 tip |
345 | 25 + echo bb |
26 + hg status | |
27 C a | |
28 + hg identify | |
374
f07d00fcd281
update tests to reflect new short hash length
mpm@selenic.com
parents:
345
diff
changeset
|
29 b9154636be93+ tip |
345 | 30 + hg co first |
31 + hg id | |
374
f07d00fcd281
update tests to reflect new short hash length
mpm@selenic.com
parents:
345
diff
changeset
|
32 acb14030fe0a+ first |
345 | 33 + hg -v id |
34 acb14030fe0a21b60322c440ad2d20cf7685a376+ first | |
35 + hg status | |
36 C a | |
37 + echo 1 | |
38 + hg add b | |
39 + hg commit -t branch -u test -d '0 0' | |
40 + hg id | |
374
f07d00fcd281
update tests to reflect new short hash length
mpm@selenic.com
parents:
345
diff
changeset
|
41 c8edf04160c7 tip |
345 | 42 + hg co -m 1 |
43 + hg id | |
374
f07d00fcd281
update tests to reflect new short hash length
mpm@selenic.com
parents:
345
diff
changeset
|
44 c8edf04160c7+b9154636be93+ tip |
345 | 45 + hg status |
46 C a | |
47 C .hgtags |