3 test_description
='checkout -m -- <conflicted path>
5 Ensures that checkout -m on a resolved file restores the conflicted file'
7 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
=main
8 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
10 TEST_PASSES_SANITIZE_LEAK
=true
13 test_expect_success setup
'
15 test_commit both.txt both.txt initial &&
17 test_commit modified_in_main both.txt in_main &&
18 test_commit added_in_main each.txt in_main &&
20 test_commit modified_in_topic both.txt in_topic &&
21 test_commit added_in_topic each.txt in_topic
24 test_expect_success
'git merge main' '
25 test_must_fail git merge main
28 clean_branchnames
() {
29 # Remove branch names after conflict lines
30 sed 's/^\([<>]\{5,\}\) .*$/\1/'
33 test_expect_success
'-m restores 2-way conflicted+resolved file' '
34 cp each.txt each.txt.conflicted &&
35 echo resolved >each.txt &&
37 git checkout -m -- each.txt &&
38 clean_branchnames <each.txt >each.txt.cleaned &&
39 clean_branchnames <each.txt.conflicted >each.txt.conflicted.cleaned &&
40 test_cmp each.txt.conflicted.cleaned each.txt.cleaned
43 test_expect_success
'-m restores 3-way conflicted+resolved file' '
44 cp both.txt both.txt.conflicted &&
45 echo resolved >both.txt &&
47 git checkout -m -- both.txt &&
48 clean_branchnames <both.txt >both.txt.cleaned &&
49 clean_branchnames <both.txt.conflicted >both.txt.conflicted.cleaned &&
50 test_cmp both.txt.conflicted.cleaned both.txt.cleaned
53 test_expect_success
'force checkout a conflict file creates stage zero entry' '
60 A_OBJ=$(git rev-parse :a) &&
64 B_OBJ=$(git rev-parse :a) &&
67 C_OBJ=$(git hash-object a) &&
68 git checkout -m main &&
69 test_cmp_rev :1:a $A_OBJ &&
70 test_cmp_rev :2:a $B_OBJ &&
71 test_cmp_rev :3:a $C_OBJ &&
72 git checkout -f topic &&
73 test_cmp_rev :0:a $A_OBJ