@@ -40,7 +40,7 @@ test_expect_success 'alice works and pushes' '
40
40
cd alice-work &&
41
41
echo more >file &&
42
42
git commit -a -m second &&
43
- git push ../alice-pub
43
+ git push ../alice-pub :
44
44
)
45
45
'
46
46
@@ -57,7 +57,7 @@ test_expect_success 'bob fetches from alice, works and pushes' '
57
57
git pull ../alice-pub master &&
58
58
echo more bob >file &&
59
59
git commit -a -m third &&
60
- git push ../bob-pub
60
+ git push ../bob-pub :
61
61
) &&
62
62
63
63
# Check that the second commit by Alice is not sent
@@ -86,7 +86,7 @@ test_expect_success 'alice works and pushes again' '
86
86
cd alice-work &&
87
87
echo more alice >file &&
88
88
git commit -a -m fourth &&
89
- git push ../alice-pub
89
+ git push ../alice-pub :
90
90
)
91
91
'
92
92
@@ -99,7 +99,7 @@ test_expect_success 'bob works and pushes' '
99
99
cd bob-work &&
100
100
echo yet more bob >file &&
101
101
git commit -a -m fifth &&
102
- git push ../bob-pub
102
+ git push ../bob-pub :
103
103
)
104
104
'
105
105
@@ -115,7 +115,7 @@ test_expect_success 'alice works and pushes yet again' '
115
115
git commit -a -m sixth.2 &&
116
116
echo more and more alice >>file &&
117
117
git commit -a -m sixth.3 &&
118
- git push ../alice-pub
118
+ git push ../alice-pub :
119
119
)
120
120
'
121
121
@@ -136,7 +136,7 @@ test_expect_success 'bob works and pushes again' '
136
136
git hash-object -t commit -w commit &&
137
137
echo even more bob >file &&
138
138
git commit -a -m seventh &&
139
- git push ../bob-pub
139
+ git push ../bob-pub :
140
140
)
141
141
'
142
142
0 commit comments