comparison tests/test-flags @ 749:7e4843b7efd2

Update tests to use commit -m and default -u manifest hash: 6e4385453843031a712005a320d6000595b40d05
author mpm@selenic.com
date Thu, 21 Jul 2005 15:05:17 -0500
parents eb46971fc57f
children ec85f9e6f3b1 8f5637f0a0c0 0902ffece4b4
comparison
equal deleted inserted replaced
748:c5df1a9c5276 749:7e4843b7efd2
5 cd test1 5 cd test1
6 6
7 hg init 7 hg init
8 touch a b 8 touch a b
9 hg add a b 9 hg add a b
10 hg ci -t "added a b" -u test -d "0 0" 10 hg ci -m "added a b" -d "0 0"
11 11
12 cd .. 12 cd ..
13 mkdir test2 13 mkdir test2
14 cd test2 14 cd test2
15 15
16 hg init 16 hg init
17 hg pull ../test1 17 hg pull ../test1
18 hg co 18 hg co
19 chmod +x a 19 chmod +x a
20 hg ci -t "chmod +x a" -u test -d "0 0" 20 hg ci -m "chmod +x a" -d "0 0"
21 21
22 cd ../test1 22 cd ../test1
23 echo 123 >>a 23 echo 123 >>a
24 hg ci -t "a updated" -u test -d "0 0" 24 hg ci -m "a updated" -d "0 0"
25 25
26 hg pull ../test2 26 hg pull ../test2
27 hg heads 27 hg heads
28 hg history 28 hg history
29 29