##// END OF EJS Templates
test-merge-default: make content of test repo clearer....
Greg Ward -
r10504:d2c1fc44 stable
parent child Browse files
Show More
@@ -4,18 +4,18 b' hg init'
4 echo a > a
4 echo a > a
5 hg commit -A -ma
5 hg commit -A -ma
6
6
7 echo a >> a
7 echo b >> a
8 hg commit -mb
8 hg commit -mb
9
9
10 echo a >> a
10 echo c >> a
11 hg commit -mc
11 hg commit -mc
12
12
13 hg up 1
13 hg up 1
14 echo a >> a
14 echo d >> a
15 hg commit -md
15 hg commit -md
16
16
17 hg up 1
17 hg up 1
18 echo a >> a
18 echo e >> a
19 hg commit -me
19 hg commit -me
20
20
21 hg up 1
21 hg up 1
@@ -24,6 +24,7 b' hg merge'
24
24
25 hg up
25 hg up
26 echo % should fail because \> 2 heads
26 echo % should fail because \> 2 heads
27 export HGMERGE=internal:other
27 hg merge
28 hg merge
28
29
29 echo % should succeed
30 echo % should succeed
@@ -43,7 +44,7 b' echo % should fail because 1 head'
43 hg merge
44 hg merge
44
45
45 hg up 3
46 hg up 3
46 echo a >> a
47 echo f >> a
47 hg branch foobranch
48 hg branch foobranch
48 hg commit -mf
49 hg commit -mf
49 echo % should fail because merge with other branch
50 echo % should fail because merge with other branch
@@ -12,16 +12,16 b' 1 files updated, 0 files merged, 0 files'
12 abort: branch 'default' has 3 heads - please merge with an explicit rev
12 abort: branch 'default' has 3 heads - please merge with an explicit rev
13 (run 'hg heads .' to see heads)
13 (run 'hg heads .' to see heads)
14 % should succeed
14 % should succeed
15 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
15 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
16 (branch merge, don't forget to commit)
16 (branch merge, don't forget to commit)
17 % should succeed - 2 heads
17 % should succeed - 2 heads
18 changeset: 3:903c264cdf57
18 changeset: 3:ea9ff125ff88
19 parent: 1:ba677d0156c1
19 parent: 1:1846eede8b68
20 user: test
20 user: test
21 date: Thu Jan 01 00:00:00 1970 +0000
21 date: Thu Jan 01 00:00:00 1970 +0000
22 summary: d
22 summary: d
23
23
24 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
24 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
25 (branch merge, don't forget to commit)
25 (branch merge, don't forget to commit)
26 % should fail because at tip
26 % should fail because at tip
27 abort: there is nothing to merge
27 abort: there is nothing to merge
General Comments 0
You need to be logged in to leave comments. Login now