3 test_description
='merging when a directory was replaced with a symlink'
6 test_expect_success SYMLINKS
'create a commit where dir a/b changed to symlink' '
7 mkdir -p a/b/c a/b-2/c &&
17 git commit -m "dir to symlink"
20 test_expect_success SYMLINKS
'checkout does not clobber untracked symlink' '
21 git checkout HEAD^0 &&
22 git reset --hard master &&
23 git rm --cached a/b &&
24 git commit -m "untracked symlink remains" &&
25 test_must_fail git checkout start^0
28 test_expect_success SYMLINKS
'a/b-2/c/d is kept when clobbering symlink b' '
29 git checkout HEAD^0 &&
30 git reset --hard master &&
31 git rm --cached a/b &&
32 git commit -m "untracked symlink remains" &&
33 git checkout -f start^0 &&
37 test_expect_success SYMLINKS
'checkout should not have deleted a/b-2/c/d' '
38 git checkout HEAD^0 &&
39 git reset --hard master &&
40 git checkout start^0 &&
44 test_expect_success SYMLINKS
'setup for merge test' '
53 test_expect_success SYMLINKS
'Handle D/F conflict, do not lose a/b-2/c/d in merge (resolve)' '
55 git checkout baseline^0 &&
56 git merge -s resolve master &&
61 test_expect_success SYMLINKS
'Handle D/F conflict, do not lose a/b-2/c/d in merge (recursive)' '
63 git checkout baseline^0 &&
64 git merge -s recursive master &&
69 test_expect_success SYMLINKS
'Handle F/D conflict, do not lose a/b-2/c/d in merge (resolve)' '
71 git checkout master^0 &&
72 git merge -s resolve baseline^0 &&
77 test_expect_success SYMLINKS
'Handle F/D conflict, do not lose a/b-2/c/d in merge (recursive)' '
79 git checkout master^0 &&
80 git merge -s recursive baseline^0 &&
85 test_expect_failure SYMLINKS
'do not lose untracked in merge (resolve)' '
87 git checkout baseline^0 &&
89 test_must_fail git merge -s resolve master &&
94 test_expect_success SYMLINKS
'do not lose untracked in merge (recursive)' '
96 git checkout baseline^0 &&
98 test_must_fail git merge -s recursive master &&
103 test_expect_success SYMLINKS
'do not lose modifications in merge (resolve)' '
105 git checkout baseline^0 &&
106 echo more content >>a/b/c/d &&
107 test_must_fail git merge -s resolve master
110 test_expect_success SYMLINKS
'do not lose modifications in merge (recursive)' '
112 git checkout baseline^0 &&
113 echo more content >>a/b/c/d &&
114 test_must_fail git merge -s recursive master
117 test_expect_success SYMLINKS
'setup a merge where dir a/b-2 changed to symlink' '
119 git checkout start^0 &&
123 git commit -m "dir a/b-2 to symlink" &&
127 test_expect_success SYMLINKS
'merge should not have D/F conflicts (resolve)' '
129 git checkout baseline^0 &&
130 git merge -s resolve test2 &&
135 test_expect_success SYMLINKS
'merge should not have D/F conflicts (recursive)' '
137 git checkout baseline^0 &&
138 git merge -s recursive test2 &&
143 test_expect_success SYMLINKS
'merge should not have F/D conflicts (recursive)' '
145 git checkout -b foo test2 &&
146 git merge -s recursive baseline^0 &&