tests/test-double-merge
changeset 5042 f191bc3916f7
child 5057 99a4592ea886
equal deleted inserted replaced
5029:ac97e065cfc7 5042:f191bc3916f7
       
     1 #!/bin/sh
       
     2 
       
     3 hg init repo
       
     4 cd repo
       
     5 
       
     6 echo line 1 > foo
       
     7 hg ci -qAm 'add foo' -d "1000000 0"
       
     8 
       
     9 # copy foo to bar and change both files
       
    10 hg cp foo bar
       
    11 echo line 2-1 >> foo
       
    12 echo line 2-2 >> bar
       
    13 hg ci -m 'cp foo bar; change both' -d "1000000 0"
       
    14 
       
    15 # in another branch, change foo in a way that doesn't conflict with
       
    16 # the other changes
       
    17 hg up -qC 0
       
    18 echo line 0 >| foo
       
    19 hg cat foo >> foo
       
    20 hg ci -m 'change foo' -d "1000000 0"
       
    21 
       
    22 # we get conflicts that shouldn't be there
       
    23 hg merge --debug
       
    24 
       
    25 echo "-- foo --"
       
    26 cat foo
       
    27 
       
    28 echo "-- bar --"
       
    29 cat bar
       
    30