Mercurial > hg-stable
annotate tests/test-simple-update @ 350:b4e0e20646bb
Merge with TAH
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Merge with TAH
manifest hash: ec82cc2d7b7357fd7db4917e09d7d6865482de58
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCr+f1ywK+sNU5EO8RAuPtAJ0WilDBo3iG4S/dmIabhzYW987TtgCgkjkM
8OmatsrjG01iJAhkKJj+XnQ=
=mOLr
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Wed, 15 Jun 2005 00:33:57 -0800 |
parents | 55f63f3b6a54 b2293093b89e |
children | c5705ab9cebd |
rev | line source |
---|---|
331 | 1 #!/bin/bash |
2 | |
3 set -ex | |
4 | |
5 mkdir test | |
6 cd test | |
7 echo foo>foo | |
8 hg init | |
9 hg addremove | |
10 hg commit -t "1" | |
11 hg verify | |
12 cd .. | |
13 | |
14 mkdir branch | |
15 cd branch | |
16 hg init ../test | |
17 hg co | |
18 echo bar>>foo | |
19 hg commit -t "2" | |
20 | |
21 cd ../test | |
22 hg pull ../branch | |
23 hg verify | |
24 hg co | |
25 cat foo | |
26 hg manifest |