Mercurial > hg
comparison tests/test-tags.out @ 345:9d8d9207c0b3
Add a tags/identify test group
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Add a tags/identify test group
manifest hash: 25c43d62cea41cddad1c2f1c82c44f0ac1841fca
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCr+JqywK+sNU5EO8RAtqxAJ0bgpL+W1fk8NH9s1eLH6AgM/EXQQCfaOy8
B6L71BwVMcuPukHb3MEtFnQ=
=gwew
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Wed, 15 Jun 2005 00:10:18 -0800 |
parents | |
children | f07d00fcd281 e5d769afd3ef |
comparison
equal
deleted
inserted
replaced
344:db419f14df4b | 345:9d8d9207c0b3 |
---|---|
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 | |
11 acb14030 tip | |
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 | |
24 b9154636 tip | |
25 + echo bb | |
26 + hg status | |
27 C a | |
28 + hg identify | |
29 b9154636+ tip | |
30 + hg co first | |
31 + hg id | |
32 acb14030+ first | |
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 | |
41 c8edf041 tip | |
42 + hg co -m 1 | |
43 + hg id | |
44 c8edf041+b9154636+ tip | |
45 + hg status | |
46 C a | |
47 C .hgtags |