3 test_description
='basic git merge-index / git-merge-one-file tests'
6 test_expect_success
'setup diverging branches' '
7 for i in 1 2 3 4 5 6 7 8 9 10; do
13 sed s/2/two/ <file >tmp &&
15 git commit -a -m two &&
17 git checkout -b other HEAD^ &&
18 sed s/10/ten/ <file >tmp &&
20 git commit -a -m ten &&
24 cat >expect-merged
<<'EOF'
37 test_expect_success
'read-tree does not resolve content merge' '
38 git read-tree -i -m base ten two &&
40 git diff-files --name-only --diff-filter=U >unmerged &&
41 test_cmp expect unmerged
44 test_expect_success
'git merge-index git-merge-one-file resolves' '
45 git merge-index git-merge-one-file -a &&
46 git diff-files --name-only --diff-filter=U >unmerged &&
47 test_must_be_empty unmerged &&
48 test_cmp expect-merged file &&
49 git cat-file blob :file >file-index &&
50 test_cmp expect-merged file-index
53 test_expect_success
'setup bare merge' '
54 git clone --bare . bare.git &&
56 GIT_INDEX_FILE=$PWD/merge.index &&
57 export GIT_INDEX_FILE &&
58 git read-tree -i -m base ten two
62 test_expect_success
'merge-one-file fails without a work tree' '
64 GIT_INDEX_FILE=$PWD/merge.index &&
65 export GIT_INDEX_FILE &&
66 test_must_fail git merge-index git-merge-one-file -a
70 test_expect_success
'merge-one-file respects GIT_WORK_TREE' '
73 GIT_WORK_TREE=$PWD/work &&
74 export GIT_WORK_TREE &&
75 GIT_INDEX_FILE=$PWD/merge.index &&
76 export GIT_INDEX_FILE &&
77 git merge-index git-merge-one-file -a &&
78 git cat-file blob :file >work/file-index
80 test_cmp expect-merged bare.git/work/file &&
81 test_cmp expect-merged bare.git/work/file-index
84 test_expect_success
'merge-one-file respects core.worktree' '
86 git clone . subdir/child &&
88 GIT_DIR=$PWD/child/.git &&
90 git config core.worktree "$PWD/child" &&
91 git read-tree -i -m base ten two &&
92 git merge-index git-merge-one-file -a &&
93 git cat-file blob :file >file-index
95 test_cmp expect-merged subdir/child/file &&
96 test_cmp expect-merged subdir/file-index