7392ee1433dd4321d7adee0788de209ef58b767e
1#!/bin/sh
2
3test_description='pulling into void'
4
5. ./test-lib.sh
6
7modify () {
8 sed -e "$1" <"$2" >"$2.x" &&
9 mv "$2.x" "$2"
10}
11
12test_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"
20}
21
22test_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
28}
29
30test_expect_success setup '
31 echo file >file &&
32 git add file &&
33 git commit -a -m original
34'
35
36test_expect_success 'pulling into void' '
37 git init cloned &&
38 (
39 cd cloned &&
40 git pull ..
41 ) &&
42 test -f file &&
43 test -f cloned/file &&
44 test_cmp file cloned/file
45'
46
47test_expect_success 'pulling into void using master:master' '
48 git init cloned-uho &&
49 (
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
56'
57
58test_expect_success 'pulling into void does not overwrite untracked files' '
59 git init cloned-untracked &&
60 (
61 cd cloned-untracked &&
62 echo untracked >file &&
63 test_must_fail git pull .. master &&
64 echo untracked >expect &&
65 test_cmp expect file
66 )
67'
68
69test_expect_success 'pulling into void does not overwrite staged files' '
70 git init cloned-staged-colliding &&
71 (
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
80 )
81'
82
83test_expect_success 'pulling into void does not remove new staged files' '
84 git init cloned-staged-new &&
85 (
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
94 )
95'
96
97test_expect_success 'pulling into void must not create an octopus' '
98 git init cloned-octopus &&
99 (
100 cd cloned-octopus &&
101 test_must_fail git pull .. master master &&
102 ! test -f file
103 )
104'
105
106test_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
120'
121
122test_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
135'
136
137test_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
144'
145
146test_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
156'
157
158test_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
167'
168
169test_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
179'
180
181test_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
191'
192
193test_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
202'
203
204test_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 "Pull 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
221'
222
223test_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)"
231'
232
233test_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)"
242'
243
244test_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)"
256'
257
258test_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)"
264'
265
266test_expect_success 'pull --rebase succeeds with dirty working directory and rebase.autostash set' '
267 test_config rebase.autostash true &&
268 test_pull_autostash --rebase
269'
270
271test_expect_success 'pull --rebase --autostash & rebase.autostash=true' '
272 test_config rebase.autostash true &&
273 test_pull_autostash --rebase --autostash
274'
275
276test_expect_success 'pull --rebase --autostash & rebase.autostash=false' '
277 test_config rebase.autostash false &&
278 test_pull_autostash --rebase --autostash
279'
280
281test_expect_success 'pull --rebase --autostash & rebase.autostash unset' '
282 test_unconfig rebase.autostash &&
283 test_pull_autostash --rebase --autostash
284'
285
286test_expect_success 'pull --rebase --no-autostash & rebase.autostash=true' '
287 test_config rebase.autostash true &&
288 test_pull_autostash_fail --rebase --no-autostash
289'
290
291test_expect_success 'pull --rebase --no-autostash & rebase.autostash=false' '
292 test_config rebase.autostash false &&
293 test_pull_autostash_fail --rebase --no-autostash
294'
295
296test_expect_success 'pull --rebase --no-autostash & rebase.autostash unset' '
297 test_unconfig rebase.autostash &&
298 test_pull_autostash_fail --rebase --no-autostash
299'
300
301test_expect_success 'pull --autostash (without --rebase) should error out' '
302 test_must_fail git pull --autostash . copy 2>err &&
303 test_i18ngrep "only valid with --rebase" err
304'
305
306test_expect_success 'pull --no-autostash (without --rebase) should error out' '
307 test_must_fail git pull --no-autostash . copy 2>err &&
308 test_i18ngrep "only valid with --rebase" err
309'
310
311test_expect_success 'pull.rebase' '
312 git reset --hard before-rebase &&
313 test_config pull.rebase true &&
314 git pull . copy &&
315 test "$(git rev-parse HEAD^)" = "$(git rev-parse copy)" &&
316 test new = "$(git show HEAD:file2)"
317'
318
319test_expect_success 'branch.to-rebase.rebase' '
320 git reset --hard before-rebase &&
321 test_config branch.to-rebase.rebase true &&
322 git pull . copy &&
323 test "$(git rev-parse HEAD^)" = "$(git rev-parse copy)" &&
324 test new = "$(git show HEAD:file2)"
325'
326
327test_expect_success 'branch.to-rebase.rebase should override pull.rebase' '
328 git reset --hard before-rebase &&
329 test_config pull.rebase true &&
330 test_config branch.to-rebase.rebase false &&
331 git pull . copy &&
332 test "$(git rev-parse HEAD^)" != "$(git rev-parse copy)" &&
333 test new = "$(git show HEAD:file2)"
334'
335
336# add a feature branch, keep-merge, that is merged into master, so the
337# test can try preserving the merge commit (or not) with various
338# --rebase flags/pull.rebase settings.
339test_expect_success 'preserve merge setup' '
340 git reset --hard before-rebase &&
341 git checkout -b keep-merge second^ &&
342 test_commit file3 &&
343 git checkout to-rebase &&
344 git merge keep-merge &&
345 git tag before-preserve-rebase
346'
347
348test_expect_success 'pull.rebase=false create a new merge commit' '
349 git reset --hard before-preserve-rebase &&
350 test_config pull.rebase false &&
351 git pull . copy &&
352 test "$(git rev-parse HEAD^1)" = "$(git rev-parse before-preserve-rebase)" &&
353 test "$(git rev-parse HEAD^2)" = "$(git rev-parse copy)" &&
354 test file3 = "$(git show HEAD:file3.t)"
355'
356
357test_expect_success 'pull.rebase=true flattens keep-merge' '
358 git reset --hard before-preserve-rebase &&
359 test_config pull.rebase true &&
360 git pull . copy &&
361 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
362 test file3 = "$(git show HEAD:file3.t)"
363'
364
365test_expect_success 'pull.rebase=1 is treated as true and flattens keep-merge' '
366 git reset --hard before-preserve-rebase &&
367 test_config pull.rebase 1 &&
368 git pull . copy &&
369 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
370 test file3 = "$(git show HEAD:file3.t)"
371'
372
373test_expect_success 'pull.rebase=preserve rebases and merges keep-merge' '
374 git reset --hard before-preserve-rebase &&
375 test_config pull.rebase preserve &&
376 git pull . copy &&
377 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
378 test "$(git rev-parse HEAD^2)" = "$(git rev-parse keep-merge)"
379'
380
381test_expect_success 'pull.rebase=interactive' '
382 write_script "$TRASH_DIRECTORY/fake-editor" <<-\EOF &&
383 echo I was here >fake.out &&
384 false
385 EOF
386 test_set_editor "$TRASH_DIRECTORY/fake-editor" &&
387 test_must_fail git pull --rebase=interactive . copy &&
388 test "I was here" = "$(cat fake.out)"
389'
390
391test_expect_success 'pull.rebase=invalid fails' '
392 git reset --hard before-preserve-rebase &&
393 test_config pull.rebase invalid &&
394 ! git pull . copy
395'
396
397test_expect_success '--rebase=false create a new merge commit' '
398 git reset --hard before-preserve-rebase &&
399 test_config pull.rebase true &&
400 git pull --rebase=false . copy &&
401 test "$(git rev-parse HEAD^1)" = "$(git rev-parse before-preserve-rebase)" &&
402 test "$(git rev-parse HEAD^2)" = "$(git rev-parse copy)" &&
403 test file3 = "$(git show HEAD:file3.t)"
404'
405
406test_expect_success '--rebase=true rebases and flattens keep-merge' '
407 git reset --hard before-preserve-rebase &&
408 test_config pull.rebase preserve &&
409 git pull --rebase=true . copy &&
410 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
411 test file3 = "$(git show HEAD:file3.t)"
412'
413
414test_expect_success '--rebase=preserve rebases and merges keep-merge' '
415 git reset --hard before-preserve-rebase &&
416 test_config pull.rebase true &&
417 git pull --rebase=preserve . copy &&
418 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
419 test "$(git rev-parse HEAD^2)" = "$(git rev-parse keep-merge)"
420'
421
422test_expect_success '--rebase=invalid fails' '
423 git reset --hard before-preserve-rebase &&
424 ! git pull --rebase=invalid . copy
425'
426
427test_expect_success '--rebase overrides pull.rebase=preserve and flattens keep-merge' '
428 git reset --hard before-preserve-rebase &&
429 test_config pull.rebase preserve &&
430 git pull --rebase . copy &&
431 test "$(git rev-parse HEAD^^)" = "$(git rev-parse copy)" &&
432 test file3 = "$(git show HEAD:file3.t)"
433'
434
435test_expect_success '--rebase with rebased upstream' '
436
437 git remote add -f me . &&
438 git checkout copy &&
439 git tag copy-orig &&
440 git reset --hard HEAD^ &&
441 echo conflicting modification > file &&
442 git commit -m conflict file &&
443 git checkout to-rebase &&
444 echo file > file2 &&
445 git commit -m to-rebase file2 &&
446 git tag to-rebase-orig &&
447 git pull --rebase me copy &&
448 test "conflicting modification" = "$(cat file)" &&
449 test file = "$(cat file2)"
450
451'
452
453test_expect_success '--rebase -f with rebased upstream' '
454 test_when_finished "test_might_fail git rebase --abort" &&
455 git reset --hard to-rebase-orig &&
456 git pull --rebase -f me copy &&
457 test "conflicting modification" = "$(cat file)" &&
458 test file = "$(cat file2)"
459'
460
461test_expect_success '--rebase with rebased default upstream' '
462
463 git update-ref refs/remotes/me/copy copy-orig &&
464 git checkout --track -b to-rebase2 me/copy &&
465 git reset --hard to-rebase-orig &&
466 git pull --rebase &&
467 test "conflicting modification" = "$(cat file)" &&
468 test file = "$(cat file2)"
469
470'
471
472test_expect_success 'rebased upstream + fetch + pull --rebase' '
473
474 git update-ref refs/remotes/me/copy copy-orig &&
475 git reset --hard to-rebase-orig &&
476 git checkout --track -b to-rebase3 me/copy &&
477 git reset --hard to-rebase-orig &&
478 git fetch &&
479 git pull --rebase &&
480 test "conflicting modification" = "$(cat file)" &&
481 test file = "$(cat file2)"
482
483'
484
485test_expect_success 'pull --rebase dies early with dirty working directory' '
486
487 git checkout to-rebase &&
488 git update-ref refs/remotes/me/copy copy^ &&
489 COPY="$(git rev-parse --verify me/copy)" &&
490 git rebase --onto $COPY copy &&
491 test_config branch.to-rebase.remote me &&
492 test_config branch.to-rebase.merge refs/heads/copy &&
493 test_config branch.to-rebase.rebase true &&
494 echo dirty >> file &&
495 git add file &&
496 test_must_fail git pull &&
497 test "$COPY" = "$(git rev-parse --verify me/copy)" &&
498 git checkout HEAD -- file &&
499 git pull &&
500 test "$COPY" != "$(git rev-parse --verify me/copy)"
501
502'
503
504test_expect_success 'pull --rebase works on branch yet to be born' '
505 git rev-parse master >expect &&
506 mkdir empty_repo &&
507 (cd empty_repo &&
508 git init &&
509 git pull --rebase .. master &&
510 git rev-parse HEAD >../actual
511 ) &&
512 test_cmp expect actual
513'
514
515test_expect_success 'pull --rebase fails on unborn branch with staged changes' '
516 test_when_finished "rm -rf empty_repo2" &&
517 git init empty_repo2 &&
518 (
519 cd empty_repo2 &&
520 echo staged-file >staged-file &&
521 git add staged-file &&
522 test "$(git ls-files)" = staged-file &&
523 test_must_fail git pull --rebase .. master 2>err &&
524 test "$(git ls-files)" = staged-file &&
525 test "$(git show :staged-file)" = staged-file &&
526 test_i18ngrep "unborn branch with changes added to the index" err
527 )
528'
529
530test_expect_success 'setup for detecting upstreamed changes' '
531 mkdir src &&
532 (cd src &&
533 git init &&
534 printf "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" > stuff &&
535 git add stuff &&
536 git commit -m "Initial revision"
537 ) &&
538 git clone src dst &&
539 (cd src &&
540 modify s/5/43/ stuff &&
541 git commit -a -m "5->43" &&
542 modify s/6/42/ stuff &&
543 git commit -a -m "Make it bigger"
544 ) &&
545 (cd dst &&
546 modify s/5/43/ stuff &&
547 git commit -a -m "Independent discovery of 5->43"
548 )
549'
550
551test_expect_success 'git pull --rebase detects upstreamed changes' '
552 (cd dst &&
553 git pull --rebase &&
554 test -z "$(git ls-files -u)"
555 )
556'
557
558test_expect_success 'setup for avoiding reapplying old patches' '
559 (cd dst &&
560 test_might_fail git rebase --abort &&
561 git reset --hard origin/master
562 ) &&
563 git clone --bare src src-replace.git &&
564 rm -rf src &&
565 mv src-replace.git src &&
566 (cd dst &&
567 modify s/2/22/ stuff &&
568 git commit -a -m "Change 2" &&
569 modify s/3/33/ stuff &&
570 git commit -a -m "Change 3" &&
571 modify s/4/44/ stuff &&
572 git commit -a -m "Change 4" &&
573 git push &&
574
575 modify s/44/55/ stuff &&
576 git commit --amend -a -m "Modified Change 4"
577 )
578'
579
580test_expect_success 'git pull --rebase does not reapply old patches' '
581 (cd dst &&
582 test_must_fail git pull --rebase &&
583 test 1 = $(find .git/rebase-apply -name "000*" | wc -l)
584 )
585'
586
587test_expect_success 'git pull --rebase against local branch' '
588 git checkout -b copy2 to-rebase-orig &&
589 git pull --rebase . to-rebase &&
590 test "conflicting modification" = "$(cat file)" &&
591 test file = "$(cat file2)"
592'
593
594test_done