blob: 127baf8560b8a6c208a6afc076f6d704aaecdd1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#!/bin/sh
test_description='CRLF merge conflict across text=auto change'
. ./test-lib.sh
test_expect_success setup '
git config merge.renormalize true &&
git config core.autocrlf false &&
echo first line | append_cr >file &&
echo first line >control_file &&
echo only line >inert_file &&
git add file control_file inert_file &&
git commit -m "Initial" &&
git tag initial &&
git branch side &&
echo "* text=auto" >.gitattributes &&
touch file &&
git add .gitattributes file &&
git commit -m "normalize file" &&
echo same line | append_cr >>file &&
echo same line >>control_file &&
git add file control_file &&
git commit -m "add line from a" &&
git tag a &&
git rm .gitattributes &&
rm file &&
git checkout file &&
git commit -m "remove .gitattributes" &&
git tag c &&
git checkout side &&
echo same line | append_cr >>file &&
echo same line >>control_file &&
git add file control_file &&
git commit -m "add line from b" &&
git tag b &&
git checkout master
'
test_expect_success 'Check merging after setting text=auto' '
git reset --hard a &&
git merge b &&
cat file | remove_cr >file.temp &&
test_cmp file file.temp
'
test_expect_success 'Check merging addition of text=auto' '
git reset --hard b &&
git merge a &&
cat file | remove_cr >file.temp &&
test_cmp file file.temp
'
test_expect_failure 'Test delete/normalize conflict' '
git checkout side &&
git reset --hard initial &&
git rm file &&
git commit -m "remove file" &&
git checkout master &&
git reset --hard a^ &&
git merge side
'
test_done
|