3 test_description
='pulling into void'
8 sed -e "$1" <"$2" >"$2.x" &&
14 test_expect_success setup
'
18 git commit -a -m original
22 test_expect_success
'pulling into void' '
31 test_expect_success
'checking the results' '
33 test -f cloned/file &&
34 test_cmp file cloned/file
37 test_expect_success
'pulling into void using master:master' '
42 git pull .. master:master
45 test -f cloned-uho/file &&
46 test_cmp file cloned-uho/file
49 test_expect_success
'pulling into void does not overwrite untracked files' '
50 git init cloned-untracked &&
52 cd cloned-untracked &&
53 echo untracked >file &&
54 test_must_fail git pull .. master &&
55 echo untracked >expect &&
60 test_expect_success
'pulling into void does not overwrite staged files' '
61 git init cloned-staged-colliding &&
63 cd cloned-staged-colliding &&
64 echo "alternate content" >file &&
66 test_must_fail git pull .. master &&
67 echo "alternate content" >expect &&
68 test_cmp expect file &&
69 git cat-file blob :file >file.index &&
70 test_cmp expect file.index
75 test_expect_success
'pulling into void does not remove new staged files' '
76 git init cloned-staged-new &&
78 cd cloned-staged-new &&
79 echo "new tracked file" >newfile &&
82 echo "new tracked file" >expect &&
83 test_cmp expect newfile &&
84 git cat-file blob :newfile >newfile.index &&
85 test_cmp expect newfile.index
89 test_expect_success
'test . as a remote' '
91 git branch copy master &&
92 git config branch.copy.remote . &&
93 git config branch.copy.merge refs/heads/master &&
95 git commit -a -m updated &&
97 test `cat file` = file &&
99 test `cat file` = updated
102 test_expect_success
'the default remote . should not break explicit pull' '
103 git checkout -b second master^ &&
104 echo modified >file &&
105 git commit -a -m modified &&
107 git reset --hard HEAD^ &&
108 test `cat file` = file &&
110 test `cat file` = modified
113 test_expect_success
'--rebase' '
114 git branch to-rebase &&
115 echo modified again > file &&
116 git commit -m file file &&
117 git checkout to-rebase &&
120 git commit -m "new file" &&
121 git tag before-rebase &&
122 git pull --rebase . copy &&
123 test $(git rev-parse HEAD^) = $(git rev-parse copy) &&
124 test new = $(git show HEAD:file2)
126 test_expect_success
'pull.rebase' '
127 git reset --hard before-rebase &&
128 git config --bool pull.rebase true &&
129 test_when_finished "git config --unset pull.rebase" &&
131 test $(git rev-parse HEAD^) = $(git rev-parse copy) &&
132 test new = $(git show HEAD:file2)
135 test_expect_success
'branch.to-rebase.rebase' '
136 git reset --hard before-rebase &&
137 git config --bool branch.to-rebase.rebase true &&
138 test_when_finished "git config --unset branch.to-rebase.rebase" &&
140 test $(git rev-parse HEAD^) = $(git rev-parse copy) &&
141 test new = $(git show HEAD:file2)
144 test_expect_success
'branch.to-rebase.rebase should override pull.rebase' '
145 git reset --hard before-rebase &&
146 git config --bool pull.rebase true &&
147 test_when_finished "git config --unset pull.rebase" &&
148 git config --bool branch.to-rebase.rebase false &&
149 test_when_finished "git config --unset branch.to-rebase.rebase" &&
151 test $(git rev-parse HEAD^) != $(git rev-parse copy) &&
152 test new = $(git show HEAD:file2)
155 test_expect_success
'--rebase with rebased upstream' '
157 git remote add -f me . &&
160 git reset --hard HEAD^ &&
161 echo conflicting modification > file &&
162 git commit -m conflict file &&
163 git checkout to-rebase &&
165 git commit -m to-rebase file2 &&
166 git tag to-rebase-orig &&
167 git pull --rebase me copy &&
168 test "conflicting modification" = "$(cat file)" &&
169 test file = $(cat file2)
173 test_expect_success
'--rebase with rebased default upstream' '
175 git update-ref refs/remotes/me/copy copy-orig &&
176 git checkout --track -b to-rebase2 me/copy &&
177 git reset --hard to-rebase-orig &&
179 test "conflicting modification" = "$(cat file)" &&
180 test file = $(cat file2)
184 test_expect_success
'rebased upstream + fetch + pull --rebase' '
186 git update-ref refs/remotes/me/copy copy-orig &&
187 git reset --hard to-rebase-orig &&
188 git checkout --track -b to-rebase3 me/copy &&
189 git reset --hard to-rebase-orig &&
192 test "conflicting modification" = "$(cat file)" &&
193 test file = "$(cat file2)"
197 test_expect_success
'pull --rebase dies early with dirty working directory' '
199 git checkout to-rebase &&
200 git update-ref refs/remotes/me/copy copy^ &&
201 COPY=$(git rev-parse --verify me/copy) &&
202 git rebase --onto $COPY copy &&
203 git config branch.to-rebase.remote me &&
204 git config branch.to-rebase.merge refs/heads/copy &&
205 git config branch.to-rebase.rebase true &&
206 echo dirty >> file &&
208 test_must_fail git pull &&
209 test $COPY = $(git rev-parse --verify me/copy) &&
210 git checkout HEAD -- file &&
212 test $COPY != $(git rev-parse --verify me/copy)
216 test_expect_success
'pull --rebase works on branch yet to be born' '
217 git rev-parse master >expect &&
221 git pull --rebase .. master &&
222 git rev-parse HEAD >../actual
224 test_cmp expect actual
227 test_expect_success
'setup for detecting upstreamed changes' '
231 printf "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" > stuff &&
233 git commit -m "Initial revision"
237 modify s/5/43/ stuff &&
238 git commit -a -m "5->43" &&
239 modify s/6/42/ stuff &&
240 git commit -a -m "Make it bigger"
243 modify s/5/43/ stuff &&
244 git commit -a -m "Independent discovery of 5->43"
248 test_expect_success
'git pull --rebase detects upstreamed changes' '
251 test -z "$(git ls-files -u)"
255 test_expect_success
'setup for avoiding reapplying old patches' '
257 test_might_fail git rebase --abort &&
258 git reset --hard origin/master
260 git clone --bare src src-replace.git &&
262 mv src-replace.git src &&
264 modify s/2/22/ stuff &&
265 git commit -a -m "Change 2" &&
266 modify s/3/33/ stuff &&
267 git commit -a -m "Change 3" &&
268 modify s/4/44/ stuff &&
269 git commit -a -m "Change 4" &&
272 modify s/44/55/ stuff &&
273 git commit --amend -a -m "Modified Change 4"
277 test_expect_success
'git pull --rebase does not reapply old patches' '
279 test_must_fail git pull --rebase &&
280 test 1 = $(find .git/rebase-apply -name "000*" | wc -l)
284 test_expect_success
'git pull --rebase against local branch' '
285 git checkout -b copy2 to-rebase-orig &&
286 git pull --rebase . to-rebase &&
287 test "conflicting modification" = "$(cat file)" &&
288 test file = "$(cat file2)"