33mkdir Z
44for a in N D M
55do
6- for b in N D M
7- do
8- p=$a$b
6+ for b in N D M
7+ do
8+ p=$a$b
99 echo This is $p from the original tree. > $p
1010 echo This is Z/$p from the original tree. > Z/$p
1111 test_expect_success " adding test file $p and Z/$p " '
1616done
1717echo This is SS from the original tree. > SS
1818test_expect_success ' adding test file SS' '
19- git update-index --add SS
19+ git update-index --add SS
2020'
2121cat > TT << \EOF
2222This is a trivial merge sample text.
@@ -31,10 +31,10 @@ the word, expected to be upcased by Branch B.
3131This concludes the trivial merge sample file.
3232EOF
3333test_expect_success ' adding test file TT' '
34- git update-index --add TT
34+ git update-index --add TT
3535'
3636test_expect_success ' prepare initial tree' '
37- tree_O=$(git write-tree)
37+ tree_O=$(git write-tree)
3838'
3939
4040# ###############################################################
@@ -46,46 +46,46 @@ test_expect_success 'prepare initial tree' '
4646to_remove=$( echo D? Z/D? )
4747rm -f $to_remove
4848test_expect_success ' change in branch A (removal)' '
49- git update-index --remove $to_remove
49+ git update-index --remove $to_remove
5050'
5151
5252for p in M? Z/M?
5353do
54- echo This is modified $p in the branch A. > $p
55- test_expect_success ' change in branch A (modification)' '
56- git update-index $p
57- '
54+ echo This is modified $p in the branch A. > $p
55+ test_expect_success ' change in branch A (modification)' '
56+ git update-index $p
57+ '
5858done
5959
6060for p in AN AA Z/AN Z/AA
6161do
62- echo This is added $p in the branch A. > $p
63- test_expect_success ' change in branch A (addition)' '
64- git update-index --add $p
65- '
62+ echo This is added $p in the branch A. > $p
63+ test_expect_success ' change in branch A (addition)' '
64+ git update-index --add $p
65+ '
6666done
6767
6868echo This is SS from the modified tree. > SS
6969echo This is LL from the modified tree. > LL
7070test_expect_success ' change in branch A (addition)' '
71- git update-index --add LL &&
72- git update-index SS
71+ git update-index --add LL &&
72+ git update-index SS
7373'
7474mv TT TT-
7575sed -e ' /Branch A/s/word/WORD/g' < TT- > TT
7676rm -f TT-
7777test_expect_success ' change in branch A (edit)' '
78- git update-index TT
78+ git update-index TT
7979'
8080
8181mkdir DF
8282echo Branch A makes a file at DF/DF, creating a directory DF. > DF/DF
8383test_expect_success ' change in branch A (change file to directory)' '
84- git update-index --add DF/DF
84+ git update-index --add DF/DF
8585'
8686
8787test_expect_success ' recording branch A tree' '
88- tree_A=$(git write-tree)
88+ tree_A=$(git write-tree)
8989'
9090
9191# ###############################################################
@@ -95,64 +95,64 @@ test_expect_success 'recording branch A tree' '
9595rm -rf [NDMASLT][NDMASLT] Z DF
9696mkdir Z
9797test_expect_success ' reading original tree and checking out' '
98- git read-tree $tree_O &&
99- git checkout-index -a
98+ git read-tree $tree_O &&
99+ git checkout-index -a
100100'
101101
102102to_remove=$( echo ? D Z/? D)
103103rm -f $to_remove
104104test_expect_success ' change in branch B (removal)' '
105- git update-index --remove $to_remove
105+ git update-index --remove $to_remove
106106'
107107
108108for p in ? M Z/? M
109109do
110- echo This is modified $p in the branch B. > $p
111- test_expect_success ' change in branch B (modification)' '
112- git update-index $p
113- '
110+ echo This is modified $p in the branch B. > $p
111+ test_expect_success ' change in branch B (modification)' '
112+ git update-index $p
113+ '
114114done
115115
116116for p in NA AA Z/NA Z/AA
117117do
118- echo This is added $p in the branch B. > $p
119- test_expect_success ' change in branch B (addition)' '
120- git update-index --add $p
121- '
118+ echo This is added $p in the branch B. > $p
119+ test_expect_success ' change in branch B (addition)' '
120+ git update-index --add $p
121+ '
122122done
123123echo This is SS from the modified tree. > SS
124124echo This is LL from the modified tree. > LL
125125test_expect_success ' change in branch B (addition and modification)' '
126- git update-index --add LL &&
127- git update-index SS
126+ git update-index --add LL &&
127+ git update-index SS
128128'
129129mv TT TT-
130130sed -e ' /Branch B/s/word/WORD/g' < TT- > TT
131131rm -f TT-
132132test_expect_success ' change in branch B (modification)' '
133- git update-index TT
133+ git update-index TT
134134'
135135
136136echo Branch B makes a file at DF. > DF
137137test_expect_success ' change in branch B (addition of a file to conflict with directory)' '
138- git update-index --add DF
138+ git update-index --add DF
139139'
140140
141141test_expect_success ' recording branch B tree' '
142- tree_B=$(git write-tree)
142+ tree_B=$(git write-tree)
143143'
144144
145145test_expect_success ' keep contents of 3 trees for easy access' '
146- rm -f .git/index &&
147- git read-tree $tree_O &&
148- mkdir .orig-O &&
149- git checkout-index --prefix=.orig-O/ -f -q -a &&
150- rm -f .git/index &&
151- git read-tree $tree_A &&
152- mkdir .orig-A &&
153- git checkout-index --prefix=.orig-A/ -f -q -a &&
154- rm -f .git/index &&
155- git read-tree $tree_B &&
156- mkdir .orig-B &&
157- git checkout-index --prefix=.orig-B/ -f -q -a
146+ rm -f .git/index &&
147+ git read-tree $tree_O &&
148+ mkdir .orig-O &&
149+ git checkout-index --prefix=.orig-O/ -f -q -a &&
150+ rm -f .git/index &&
151+ git read-tree $tree_A &&
152+ mkdir .orig-A &&
153+ git checkout-index --prefix=.orig-A/ -f -q -a &&
154+ rm -f .git/index &&
155+ git read-tree $tree_B &&
156+ mkdir .orig-B &&
157+ git checkout-index --prefix=.orig-B/ -f -q -a
158158'
0 commit comments