t / t6037-merge-ours-theirs.shon commit Merge branch 'jk/merge-subtree-heuristics' (60858f3)
   1#!/bin/sh
   2
   3test_description='Merge-recursive ours and theirs variants'
   4. ./test-lib.sh
   5
   6test_expect_success setup '
   7        for i in 1 2 3 4 5 6 7 8 9
   8        do
   9                echo "$i"
  10        done >file &&
  11        git add file &&
  12        cp file elif &&
  13        git commit -m initial &&
  14
  15        sed -e "s/1/one/" -e "s/9/nine/" >file <elif &&
  16        git commit -a -m ours &&
  17
  18        git checkout -b side HEAD^ &&
  19
  20        sed -e "s/9/nueve/" >file <elif &&
  21        git commit -a -m theirs &&
  22
  23        git checkout master^0
  24'
  25
  26test_expect_success 'plain recursive - should conflict' '
  27        git reset --hard master &&
  28        test_must_fail git merge -s recursive side &&
  29        grep nine file &&
  30        grep nueve file &&
  31        ! grep 9 file &&
  32        grep one file &&
  33        ! grep 1 file
  34'
  35
  36test_expect_success 'recursive favouring theirs' '
  37        git reset --hard master &&
  38        git merge -s recursive -Xtheirs side &&
  39        ! grep nine file &&
  40        grep nueve file &&
  41        ! grep 9 file &&
  42        grep one file &&
  43        ! grep 1 file
  44'
  45
  46test_expect_success 'recursive favouring ours' '
  47        git reset --hard master &&
  48        git merge -s recursive -X ours side &&
  49        grep nine file &&
  50        ! grep nueve file &&
  51        ! grep 9 file &&
  52        grep one file &&
  53        ! grep 1 file
  54'
  55
  56test_expect_success 'binary file with -Xours/-Xtheirs' '
  57        echo file binary >.gitattributes &&
  58
  59        git reset --hard master &&
  60        git merge -s recursive -X theirs side &&
  61        git diff --exit-code side HEAD -- file &&
  62
  63        git reset --hard master &&
  64        git merge -s recursive -X ours side &&
  65        git diff --exit-code master HEAD -- file
  66'
  67
  68test_expect_success 'pull passes -X to underlying merge' '
  69        git reset --hard master && git pull -s recursive -Xours . side &&
  70        git reset --hard master && git pull -s recursive -X ours . side &&
  71        git reset --hard master && git pull -s recursive -Xtheirs . side &&
  72        git reset --hard master && git pull -s recursive -X theirs . side &&
  73        git reset --hard master && test_must_fail git pull -s recursive -X bork . side
  74'
  75
  76test_expect_success SYMLINKS 'symlink with -Xours/-Xtheirs' '
  77        git reset --hard master &&
  78        git checkout -b two master &&
  79        ln -s target-zero link &&
  80        git add link &&
  81        git commit -m "add link pointing to zero" &&
  82
  83        ln -f -s target-two link &&
  84        git commit -m "add link pointing to two" link &&
  85
  86        git checkout -b one HEAD^ &&
  87        ln -f -s target-one link &&
  88        git commit -m "add link pointing to one" link &&
  89
  90        # we expect symbolic links not to resolve automatically, of course
  91        git checkout one^0 &&
  92        test_must_fail git merge -s recursive two &&
  93
  94        # favor theirs to resolve to target-two?
  95        git reset --hard &&
  96        git checkout one^0 &&
  97        git merge -s recursive -X theirs two &&
  98        git diff --exit-code two HEAD link &&
  99
 100        # favor ours to resolve to target-one?
 101        git reset --hard &&
 102        git checkout one^0 &&
 103        git merge -s recursive -X ours two &&
 104        git diff --exit-code one HEAD link
 105
 106'
 107
 108test_done