Merge branch 'nd/cache-tree-ita'
[git.git] / t / t5520-pull.sh
blob37ebbcfbbf0fd7815f598cf54d9c2c2825341f41
1 #!/bin/sh
3 test_description='pulling into void'
5 . ./test-lib.sh
7 modify () {
8 sed -e "$1" <"$2" >"$2.x" &&
9 mv "$2.x" "$2"
12 test_pull_autostash () {
13 git reset --hard before-rebase &&
14 echo dirty >new_file &&
15 git add new_file &&
16 git pull "$@" . copy &&
17 test_cmp_rev HEAD^ copy &&
18 test "$(cat new_file)" = dirty &&
19 test "$(cat file)" = "modified again"
22 test_pull_autostash_fail () {
23 git reset --hard before-rebase &&
24 echo dirty >new_file &&
25 git add new_file &&
26 test_must_fail git pull "$@" . copy 2>err &&
27 test_i18ngrep "uncommitted changes." err
30 test_expect_success setup '
31 echo file >file &&
32 git add file &&
33 git commit -a -m original
36 test_expect_success 'pulling into void' '
37 git init cloned &&
39 cd cloned &&
40 git pull ..
41 ) &&
42 test -f file &&
43 test -f cloned/file &&
44 test_cmp file cloned/file
47 test_expect_success 'pulling into void using master:master' '
48 git init cloned-uho &&
50 cd cloned-uho &&
51 git pull .. master:master
52 ) &&
53 test -f file &&
54 test -f cloned-uho/file &&
55 test_cmp file cloned-uho/file
58 test_expect_success 'pulling into void does not overwrite untracked files' '
59 git init cloned-untracked &&
61 cd cloned-untracked &&
62 echo untracked >file &&
63 test_must_fail git pull .. master &&
64 echo untracked >expect &&
65 test_cmp expect file
69 test_expect_success 'pulling into void does not overwrite staged files' '
70 git init cloned-staged-colliding &&
72 cd cloned-staged-colliding &&
73 echo "alternate content" >file &&
74 git add file &&
75 test_must_fail git pull .. master &&
76 echo "alternate content" >expect &&
77 test_cmp expect file &&
78 git cat-file blob :file >file.index &&
79 test_cmp expect file.index
83 test_expect_success 'pulling into void does not remove new staged files' '
84 git init cloned-staged-new &&
86 cd cloned-staged-new &&
87 echo "new tracked file" >newfile &&
88 git add newfile &&
89 git pull .. master &&
90 echo "new tracked file" >expect &&
91 test_cmp expect newfile &&
92 git cat-file blob :newfile >newfile.index &&
93 test_cmp expect newfile.index
97 test_expect_success 'pulling into void must not create an octopus' '
98 git init cloned-octopus &&
100 cd cloned-octopus &&
101 test_must_fail git pull .. master master &&
102 ! test -f file
106 test_expect_success 'test . as a remote' '
107 git branch copy master &&
108 git config branch.copy.remote . &&
109 git config branch.copy.merge refs/heads/master &&
110 echo updated >file &&
111 git commit -a -m updated &&
112 git checkout copy &&
113 test "$(cat file)" = file &&
114 git pull &&
115 test "$(cat file)" = updated &&
116 git reflog -1 >reflog.actual &&
117 sed "s/^[0-9a-f][0-9a-f]*/OBJID/" reflog.actual >reflog.fuzzy &&
118 echo "OBJID HEAD@{0}: pull: Fast-forward" >reflog.expected &&
119 test_cmp reflog.expected reflog.fuzzy
122 test_expect_success 'the default remote . should not break explicit pull' '
123 git checkout -b second master^ &&
124 echo modified >file &&
125 git commit -a -m modified &&
126 git checkout copy &&
127 git reset --hard HEAD^ &&
128 test "$(cat file)" = file &&
129 git pull . second &&
130 test "$(cat file)" = modified &&
131 git reflog -1 >reflog.actual &&
132 sed "s/^[0-9a-f][0-9a-f]*/OBJID/" reflog.actual >reflog.fuzzy &&
133 echo "OBJID HEAD@{0}: pull . second: Fast-forward" >reflog.expected &&
134 test_cmp reflog.expected reflog.fuzzy
137 test_expect_success 'fail if wildcard spec does not match any refs' '
138 git checkout -b test copy^ &&
139 test_when_finished "git checkout -f copy && git branch -D test" &&
140 test "$(cat file)" = file &&
141 test_must_fail git pull . "refs/nonexisting1/*:refs/nonexisting2/*" 2>err &&
142 test_i18ngrep "no candidates for merging" err &&
143 test "$(cat file)" = file
146 test_expect_success 'fail if no branches specified with non-default remote' '
147 git remote add test_remote . &&
148 test_when_finished "git remote remove test_remote" &&
149 git checkout -b test copy^ &&
150 test_when_finished "git checkout -f copy && git branch -D test" &&
151 test "$(cat file)" = file &&
152 test_config branch.test.remote origin &&
153 test_must_fail git pull test_remote 2>err &&
154 test_i18ngrep "specify a branch on the command line" err &&
155 test "$(cat file)" = file
158 test_expect_success 'fail if not on a branch' '
159 git remote add origin . &&
160 test_when_finished "git remote remove origin" &&
161 git checkout HEAD^ &&
162 test_when_finished "git checkout -f copy" &&
163 test "$(cat file)" = file &&
164 test_must_fail git pull 2>err &&
165 test_i18ngrep "not currently on a branch" err &&
166 test "$(cat file)" = file
169 test_expect_success 'fail if no configuration for current branch' '
170 git remote add test_remote . &&
171 test_when_finished "git remote remove test_remote" &&
172 git checkout -b test copy^ &&
173 test_when_finished "git checkout -f copy && git branch -D test" &&
174 test_config branch.test.remote test_remote &&
175 test "$(cat file)" = file &&
176 test_must_fail git pull 2>err &&
177 test_i18ngrep "no tracking information" err &&
178 test "$(cat file)" = file
181 test_expect_success 'pull --all: fail if no configuration for current branch' '
182 git remote add test_remote . &&
183 test_when_finished "git remote remove test_remote" &&
184 git checkout -b test copy^ &&
185 test_when_finished "git checkout -f copy && git branch -D test" &&
186 test_config branch.test.remote test_remote &&
187 test "$(cat file)" = file &&
188 test_must_fail git pull --all 2>err &&
189 test_i18ngrep "There is no tracking information" err &&
190 test "$(cat file)" = file
193 test_expect_success 'fail if upstream branch does not exist' '
194 git checkout -b test copy^ &&
195 test_when_finished "git checkout -f copy && git branch -D test" &&
196 test_config branch.test.remote . &&
197 test_config branch.test.merge refs/heads/nonexisting &&
198 test "$(cat file)" = file &&
199 test_must_fail git pull 2>err &&
200 test_i18ngrep "no such ref was fetched" err &&
201 test "$(cat file)" = file
204 test_expect_success 'fail if the index has unresolved entries' '
205 git checkout -b third second^ &&
206 test_when_finished "git checkout -f copy && git branch -D third" &&
207 test "$(cat file)" = file &&
208 test_commit modified2 file &&
209 test -z "$(git ls-files -u)" &&
210 test_must_fail git pull . second &&
211 test -n "$(git ls-files -u)" &&
212 cp file expected &&
213 test_must_fail git pull . second 2>err &&
214 test_i18ngrep "Pulling is not possible because you have unmerged files." err &&
215 test_cmp expected file &&
216 git add file &&
217 test -z "$(git ls-files -u)" &&
218 test_must_fail git pull . second 2>err &&
219 test_i18ngrep "You have not concluded your merge" err &&
220 test_cmp expected file
223 test_expect_success 'fast-forwards working tree if branch head is updated' '
224 git checkout -b third second^ &&
225 test_when_finished "git checkout -f copy && git branch -D third" &&
226 test "$(cat file)" = file &&
227 git pull . second:third 2>err &&
228 test_i18ngrep "fetch updated the current branch head" err &&
229 test "$(cat file)" = modified &&
230 test "$(git rev-parse third)" = "$(git rev-parse second)"
233 test_expect_success 'fast-forward fails with conflicting work tree' '
234 git checkout -b third second^ &&
235 test_when_finished "git checkout -f copy && git branch -D third" &&
236 test "$(cat file)" = file &&
237 echo conflict >file &&
238 test_must_fail git pull . second:third 2>err &&
239 test_i18ngrep "Cannot fast-forward your working tree" err &&
240 test "$(cat file)" = conflict &&
241 test "$(git rev-parse third)" = "$(git rev-parse second)"
244 test_expect_success '--rebase' '
245 git branch to-rebase &&
246 echo modified again > file &&
247 git commit -m file file &&
248 git checkout to-rebase &&
249 echo new > file2 &&
250 git add file2 &&
251 git commit -m "new file" &&
252 git tag before-rebase &&
253 git pull --rebase . copy &&
254 test "$(git rev-parse HEAD^)" = "$(git rev-parse copy)" &&
255 test new = "$(git show HEAD:file2)"
258 test_expect_success '--rebase fails with multiple branches' '
259 git reset --hard before-rebase &&
260 test_must_fail git pull --rebase . copy master 2>err &&
261 test "$(git rev-parse HEAD)" = "$(git rev-parse before-rebase)" &&
262 test_i18ngrep "Cannot rebase onto multiple branches" err &&
263 test modified = "$(git show HEAD:file)"
266 test_expect_success 'pull --rebase succeeds with dirty working directory and rebase.autostash set' '
267 test_config rebase.autostash true &&
268 test_pull_autostash --rebase
271 test_expect_success 'pull --rebase --autostash & rebase.autostash=true' '
272 test_config rebase.autostash true &&
273 test_pull_autostash --rebase --autostash
276 test_expect_success 'pull --rebase --autostash & rebase.autostash=false' '
277 test_config rebase.autostash false &&
278 test_pull_autostash --rebase --autostash
281 test_expect_success 'pull --rebase --autostash & rebase.autostash unset' '
282 test_unconfig rebase.autostash &&
283 test_pull_autostash --rebase --autostash
286 test_expect_success 'pull --rebase --no-autostash & rebase.autostash=true' '
287 test_config rebase.autostash true &&
288 test_pull_autostash_fail --rebase --no-autostash
291 test_expect_success 'pull --rebase --no-autostash & rebase.autostash=false' '
292 test_config rebase.autostash false &&
293 test_pull_autostash_fail --rebase --no-autostash
296 test_expect_success 'pull --rebase --no-autostash & rebase.autostash unset' '
297 test_unconfig rebase.autostash &&
298 test_pull_autostash_fail --rebase --no-autostash
301 for i in --autostash --no-autostash
303 test_expect_success "pull $i (without --rebase) is illegal" '
304 test_must_fail git pull $i . copy 2>err &&
305 test_i18ngrep "only valid with --rebase" err
307 done
309 test_expect_success 'pull.rebase' '
310 git reset --hard before-rebase &&
311 test_config pull.rebase true &&
312 git pull . copy &&
313 test "$(git rev-parse HEAD^)" = "$(git rev-parse copy)" &&
314 test new = "$(git show HEAD:file2)"
317 test_expect_success 'pull --autostash & pull.rebase=true' '
318 test_config pull.rebase true &&
319 test_pull_autostash --autostash
322 test_expect_success 'pull --no-autostash & pull.rebase=true' '
323 test_config pull.rebase true &&
324 test_pull_autostash_fail --no-autostash
327 test_expect_success 'branch.to-rebase.rebase' '
328 git reset --hard before-rebase &&
329 test_config branch.to-rebase.rebase true &&
330 git pull . copy &&
331 test "$(git rev-parse HEAD^)" = "$(git rev-parse copy)" &&
332 test new = "$(git show HEAD:file2)"
335 test_expect_success 'branch.to-rebase.rebase should override pull.rebase' '
336 git reset --hard before-rebase &&
337 test_config pull.rebase true &&
338 test_config branch.to-rebase.rebase false &&
339 git pull . copy &&
340 test "$(git rev-parse HEAD^)" != "$(git rev-parse copy)" &&
341 test new = "$(git show HEAD:file2)"
344 test_expect_success "pull --rebase warns on --verify-signatures" '
345 git reset --hard before-rebase &&
346 git pull --rebase --verify-signatures . copy 2>err &&
347 test "$(git rev-parse HEAD^)" = "$(git rev-parse copy)" &&
348 test new = "$(git show HEAD:file2)" &&
349 test_i18ngrep "ignoring --verify-signatures for rebase" err
352 test_expect_success "pull --rebase does not warn on --no-verify-signatures" '
353 git reset --hard before-rebase &&
354 git pull --rebase --no-verify-signatures . copy 2>err &&
355 test "$(git rev-parse HEAD^)" = "$(git rev-parse copy)" &&
356 test new = "$(git show HEAD:file2)" &&
357 test_i18ngrep ! "verify-signatures" err
360 # add a feature branch, keep-merge, that is merged into master, so the
361 # test can try preserving the merge commit (or not) with various
362 # --rebase flags/pull.rebase settings.
363 test_expect_success 'preserve merge setup' '
364 git reset --hard before-rebase &&
365 git checkout -b keep-merge second^ &&
366 test_commit file3 &&
367 git checkout to-rebase &&
368 git merge keep-merge &&
369 git tag before-preserve-rebase
372 test_expect_success 'pull.rebase=false create a new merge commit' '
373 git reset --hard before-preserve-rebase &&
374 test_config pull.rebase false &&
375 git pull . copy &&
376 test "$(git rev-parse HEAD^1)" = "$(git rev-parse before-preserve-rebase)" &&
377 test "$(git rev-parse HEAD^2)" = "$(git rev-parse copy)" &&
378 test file3 = "$(git show HEAD:file3.t)"
381 test_expect_success 'pull.rebase=true flattens keep-merge' '
382 git reset --hard before-preserve-rebase &&
383 test_config pull.rebase true &&
384 git pull . copy &&
385 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
386 test file3 = "$(git show HEAD:file3.t)"
389 test_expect_success 'pull.rebase=1 is treated as true and flattens keep-merge' '
390 git reset --hard before-preserve-rebase &&
391 test_config pull.rebase 1 &&
392 git pull . copy &&
393 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
394 test file3 = "$(git show HEAD:file3.t)"
397 test_expect_success 'pull.rebase=preserve rebases and merges keep-merge' '
398 git reset --hard before-preserve-rebase &&
399 test_config pull.rebase preserve &&
400 git pull . copy &&
401 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
402 test "$(git rev-parse HEAD^2)" = "$(git rev-parse keep-merge)"
405 test_expect_success 'pull.rebase=interactive' '
406 write_script "$TRASH_DIRECTORY/fake-editor" <<-\EOF &&
407 echo I was here >fake.out &&
408 false
410 test_set_editor "$TRASH_DIRECTORY/fake-editor" &&
411 test_must_fail git pull --rebase=interactive . copy &&
412 test "I was here" = "$(cat fake.out)"
415 test_expect_success 'pull.rebase=invalid fails' '
416 git reset --hard before-preserve-rebase &&
417 test_config pull.rebase invalid &&
418 ! git pull . copy
421 test_expect_success '--rebase=false create a new merge commit' '
422 git reset --hard before-preserve-rebase &&
423 test_config pull.rebase true &&
424 git pull --rebase=false . copy &&
425 test "$(git rev-parse HEAD^1)" = "$(git rev-parse before-preserve-rebase)" &&
426 test "$(git rev-parse HEAD^2)" = "$(git rev-parse copy)" &&
427 test file3 = "$(git show HEAD:file3.t)"
430 test_expect_success '--rebase=true rebases and flattens keep-merge' '
431 git reset --hard before-preserve-rebase &&
432 test_config pull.rebase preserve &&
433 git pull --rebase=true . copy &&
434 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
435 test file3 = "$(git show HEAD:file3.t)"
438 test_expect_success '--rebase=preserve rebases and merges keep-merge' '
439 git reset --hard before-preserve-rebase &&
440 test_config pull.rebase true &&
441 git pull --rebase=preserve . copy &&
442 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
443 test "$(git rev-parse HEAD^2)" = "$(git rev-parse keep-merge)"
446 test_expect_success '--rebase=invalid fails' '
447 git reset --hard before-preserve-rebase &&
448 ! git pull --rebase=invalid . copy
451 test_expect_success '--rebase overrides pull.rebase=preserve and flattens keep-merge' '
452 git reset --hard before-preserve-rebase &&
453 test_config pull.rebase preserve &&
454 git pull --rebase . copy &&
455 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
456 test file3 = "$(git show HEAD:file3.t)"
459 test_expect_success '--rebase with rebased upstream' '
461 git remote add -f me . &&
462 git checkout copy &&
463 git tag copy-orig &&
464 git reset --hard HEAD^ &&
465 echo conflicting modification > file &&
466 git commit -m conflict file &&
467 git checkout to-rebase &&
468 echo file > file2 &&
469 git commit -m to-rebase file2 &&
470 git tag to-rebase-orig &&
471 git pull --rebase me copy &&
472 test "conflicting modification" = "$(cat file)" &&
473 test file = "$(cat file2)"
477 test_expect_success '--rebase -f with rebased upstream' '
478 test_when_finished "test_might_fail git rebase --abort" &&
479 git reset --hard to-rebase-orig &&
480 git pull --rebase -f me copy &&
481 test "conflicting modification" = "$(cat file)" &&
482 test file = "$(cat file2)"
485 test_expect_success '--rebase with rebased default upstream' '
487 git update-ref refs/remotes/me/copy copy-orig &&
488 git checkout --track -b to-rebase2 me/copy &&
489 git reset --hard to-rebase-orig &&
490 git pull --rebase &&
491 test "conflicting modification" = "$(cat file)" &&
492 test file = "$(cat file2)"
496 test_expect_success 'rebased upstream + fetch + pull --rebase' '
498 git update-ref refs/remotes/me/copy copy-orig &&
499 git reset --hard to-rebase-orig &&
500 git checkout --track -b to-rebase3 me/copy &&
501 git reset --hard to-rebase-orig &&
502 git fetch &&
503 git pull --rebase &&
504 test "conflicting modification" = "$(cat file)" &&
505 test file = "$(cat file2)"
509 test_expect_success 'pull --rebase dies early with dirty working directory' '
511 git checkout to-rebase &&
512 git update-ref refs/remotes/me/copy copy^ &&
513 COPY="$(git rev-parse --verify me/copy)" &&
514 git rebase --onto $COPY copy &&
515 test_config branch.to-rebase.remote me &&
516 test_config branch.to-rebase.merge refs/heads/copy &&
517 test_config branch.to-rebase.rebase true &&
518 echo dirty >> file &&
519 git add file &&
520 test_must_fail git pull &&
521 test "$COPY" = "$(git rev-parse --verify me/copy)" &&
522 git checkout HEAD -- file &&
523 git pull &&
524 test "$COPY" != "$(git rev-parse --verify me/copy)"
528 test_expect_success 'pull --rebase works on branch yet to be born' '
529 git rev-parse master >expect &&
530 mkdir empty_repo &&
531 (cd empty_repo &&
532 git init &&
533 git pull --rebase .. master &&
534 git rev-parse HEAD >../actual
535 ) &&
536 test_cmp expect actual
539 test_expect_success 'pull --rebase fails on unborn branch with staged changes' '
540 test_when_finished "rm -rf empty_repo2" &&
541 git init empty_repo2 &&
543 cd empty_repo2 &&
544 echo staged-file >staged-file &&
545 git add staged-file &&
546 test "$(git ls-files)" = staged-file &&
547 test_must_fail git pull --rebase .. master 2>err &&
548 test "$(git ls-files)" = staged-file &&
549 test "$(git show :staged-file)" = staged-file &&
550 test_i18ngrep "unborn branch with changes added to the index" err
554 test_expect_success 'setup for detecting upstreamed changes' '
555 mkdir src &&
556 (cd src &&
557 git init &&
558 printf "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" > stuff &&
559 git add stuff &&
560 git commit -m "Initial revision"
561 ) &&
562 git clone src dst &&
563 (cd src &&
564 modify s/5/43/ stuff &&
565 git commit -a -m "5->43" &&
566 modify s/6/42/ stuff &&
567 git commit -a -m "Make it bigger"
568 ) &&
569 (cd dst &&
570 modify s/5/43/ stuff &&
571 git commit -a -m "Independent discovery of 5->43"
575 test_expect_success 'git pull --rebase detects upstreamed changes' '
576 (cd dst &&
577 git pull --rebase &&
578 test -z "$(git ls-files -u)"
582 test_expect_success 'setup for avoiding reapplying old patches' '
583 (cd dst &&
584 test_might_fail git rebase --abort &&
585 git reset --hard origin/master
586 ) &&
587 git clone --bare src src-replace.git &&
588 rm -rf src &&
589 mv src-replace.git src &&
590 (cd dst &&
591 modify s/2/22/ stuff &&
592 git commit -a -m "Change 2" &&
593 modify s/3/33/ stuff &&
594 git commit -a -m "Change 3" &&
595 modify s/4/44/ stuff &&
596 git commit -a -m "Change 4" &&
597 git push &&
599 modify s/44/55/ stuff &&
600 git commit --amend -a -m "Modified Change 4"
604 test_expect_success 'git pull --rebase does not reapply old patches' '
605 (cd dst &&
606 test_must_fail git pull --rebase &&
607 test 1 = $(find .git/rebase-apply -name "000*" | wc -l)
611 test_expect_success 'git pull --rebase against local branch' '
612 git checkout -b copy2 to-rebase-orig &&
613 git pull --rebase . to-rebase &&
614 test "conflicting modification" = "$(cat file)" &&
615 test file = "$(cat file2)"
618 test_done