]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5520-pull.sh
rebase tests: mark tests specific to the am-backend with --am
[thirdparty/git.git] / t / t5520-pull.sh
CommitLineData
d09e79cb
LT
1#!/bin/sh
2
3test_description='pulling into void'
4
5. ./test-lib.sh
6
3cee9236 7modify () {
4c8b046f 8 sed -e "$1" "$2" >"$2.x" &&
3cee9236
EN
9 mv "$2.x" "$2"
10}
11
5c82bcdd
MJ
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 &&
a1a64fdd
DL
18 echo dirty >expect &&
19 test_cmp expect new_file &&
20 echo "modified again" >expect &&
21 test_cmp expect file
5c82bcdd
MJ
22}
23
44a59fff
MJ
24test_pull_autostash_fail () {
25 git reset --hard before-rebase &&
26 echo dirty >new_file &&
27 git add new_file &&
28 test_must_fail git pull "$@" . copy 2>err &&
29 test_i18ngrep "uncommitted changes." err
30}
31
d09e79cb 32test_expect_success setup '
d09e79cb
LT
33 echo file >file &&
34 git add file &&
35 git commit -a -m original
d09e79cb
LT
36'
37
38test_expect_success 'pulling into void' '
55691133
JH
39 git init cloned &&
40 (
41 cd cloned &&
42 git pull ..
43 ) &&
ceeef863
DL
44 test_path_is_file file &&
45 test_path_is_file cloned/file &&
4fdf71be 46 test_cmp file cloned/file
d09e79cb
LT
47'
48
b0ad11ea 49test_expect_success 'pulling into void using master:master' '
55691133 50 git init cloned-uho &&
b0ad11ea
JH
51 (
52 cd cloned-uho &&
b0ad11ea
JH
53 git pull .. master:master
54 ) &&
ceeef863
DL
55 test_path_is_file file &&
56 test_path_is_file cloned-uho/file &&
b0ad11ea
JH
57 test_cmp file cloned-uho/file
58'
59
4b3ffe51
JK
60test_expect_success 'pulling into void does not overwrite untracked files' '
61 git init cloned-untracked &&
62 (
63 cd cloned-untracked &&
64 echo untracked >file &&
65 test_must_fail git pull .. master &&
66 echo untracked >expect &&
67 test_cmp expect file
68 )
69'
70
b4dc085a
TR
71test_expect_success 'pulling into void does not overwrite staged files' '
72 git init cloned-staged-colliding &&
73 (
74 cd cloned-staged-colliding &&
75 echo "alternate content" >file &&
76 git add file &&
77 test_must_fail git pull .. master &&
78 echo "alternate content" >expect &&
79 test_cmp expect file &&
80 git cat-file blob :file >file.index &&
81 test_cmp expect file.index
82 )
83'
84
b4dc085a
TR
85test_expect_success 'pulling into void does not remove new staged files' '
86 git init cloned-staged-new &&
87 (
88 cd cloned-staged-new &&
89 echo "new tracked file" >newfile &&
90 git add newfile &&
91 git pull .. master &&
92 echo "new tracked file" >expect &&
93 test_cmp expect newfile &&
94 git cat-file blob :newfile >newfile.index &&
95 test_cmp expect newfile.index
96 )
97'
98
7ad39a27
JH
99test_expect_success 'pulling into void must not create an octopus' '
100 git init cloned-octopus &&
101 (
102 cd cloned-octopus &&
103 test_must_fail git pull .. master master &&
ceeef863 104 test_path_is_missing file
7ad39a27
JH
105 )
106'
107
9debc324 108test_expect_success 'test . as a remote' '
9debc324
PB
109 git branch copy master &&
110 git config branch.copy.remote . &&
111 git config branch.copy.merge refs/heads/master &&
112 echo updated >file &&
113 git commit -a -m updated &&
114 git checkout copy &&
a1a64fdd
DL
115 echo file >expect &&
116 test_cmp expect file &&
9debc324 117 git pull &&
a1a64fdd
DL
118 echo updated >expect &&
119 test_cmp expect file &&
80ea984d
PT
120 git reflog -1 >reflog.actual &&
121 sed "s/^[0-9a-f][0-9a-f]*/OBJID/" reflog.actual >reflog.fuzzy &&
122 echo "OBJID HEAD@{0}: pull: Fast-forward" >reflog.expected &&
123 test_cmp reflog.expected reflog.fuzzy
9debc324
PB
124'
125
126test_expect_success 'the default remote . should not break explicit pull' '
127 git checkout -b second master^ &&
128 echo modified >file &&
129 git commit -a -m modified &&
130 git checkout copy &&
131 git reset --hard HEAD^ &&
a1a64fdd
DL
132 echo file >expect &&
133 test_cmp expect file &&
9debc324 134 git pull . second &&
a1a64fdd
DL
135 echo modified >expect &&
136 test_cmp expect file &&
80ea984d
PT
137 git reflog -1 >reflog.actual &&
138 sed "s/^[0-9a-f][0-9a-f]*/OBJID/" reflog.actual >reflog.fuzzy &&
139 echo "OBJID HEAD@{0}: pull . second: Fast-forward" >reflog.expected &&
140 test_cmp reflog.expected reflog.fuzzy
9debc324
PB
141'
142
d12f455e
PT
143test_expect_success 'fail if wildcard spec does not match any refs' '
144 git checkout -b test copy^ &&
145 test_when_finished "git checkout -f copy && git branch -D test" &&
a1a64fdd
DL
146 echo file >expect &&
147 test_cmp expect file &&
d12f455e
PT
148 test_must_fail git pull . "refs/nonexisting1/*:refs/nonexisting2/*" 2>err &&
149 test_i18ngrep "no candidates for merging" err &&
a1a64fdd 150 test_cmp expect file
d12f455e
PT
151'
152
153test_expect_success 'fail if no branches specified with non-default remote' '
154 git remote add test_remote . &&
155 test_when_finished "git remote remove test_remote" &&
156 git checkout -b test copy^ &&
157 test_when_finished "git checkout -f copy && git branch -D test" &&
a1a64fdd
DL
158 echo file >expect &&
159 test_cmp expect file &&
d12f455e
PT
160 test_config branch.test.remote origin &&
161 test_must_fail git pull test_remote 2>err &&
162 test_i18ngrep "specify a branch on the command line" err &&
a1a64fdd 163 test_cmp expect file
d12f455e
PT
164'
165
166test_expect_success 'fail if not on a branch' '
167 git remote add origin . &&
168 test_when_finished "git remote remove origin" &&
169 git checkout HEAD^ &&
170 test_when_finished "git checkout -f copy" &&
a1a64fdd
DL
171 echo file >expect &&
172 test_cmp expect file &&
d12f455e
PT
173 test_must_fail git pull 2>err &&
174 test_i18ngrep "not currently on a branch" err &&
a1a64fdd 175 test_cmp expect file
d12f455e
PT
176'
177
178test_expect_success 'fail if no configuration for current branch' '
179 git remote add test_remote . &&
180 test_when_finished "git remote remove test_remote" &&
181 git checkout -b test copy^ &&
182 test_when_finished "git checkout -f copy && git branch -D test" &&
183 test_config branch.test.remote test_remote &&
a1a64fdd
DL
184 echo file >expect &&
185 test_cmp expect file &&
d12f455e
PT
186 test_must_fail git pull 2>err &&
187 test_i18ngrep "no tracking information" err &&
a1a64fdd 188 test_cmp expect file
d12f455e
PT
189'
190
eb2a8d9e
PT
191test_expect_success 'pull --all: fail if no configuration for current branch' '
192 git remote add test_remote . &&
193 test_when_finished "git remote remove test_remote" &&
194 git checkout -b test copy^ &&
195 test_when_finished "git checkout -f copy && git branch -D test" &&
196 test_config branch.test.remote test_remote &&
a1a64fdd
DL
197 echo file >expect &&
198 test_cmp expect file &&
eb2a8d9e
PT
199 test_must_fail git pull --all 2>err &&
200 test_i18ngrep "There is no tracking information" err &&
a1a64fdd 201 test_cmp expect file
eb2a8d9e
PT
202'
203
d12f455e
PT
204test_expect_success 'fail if upstream branch does not exist' '
205 git checkout -b test copy^ &&
206 test_when_finished "git checkout -f copy && git branch -D test" &&
207 test_config branch.test.remote . &&
208 test_config branch.test.merge refs/heads/nonexisting &&
a1a64fdd
DL
209 echo file >expect &&
210 test_cmp expect file &&
d12f455e
PT
211 test_must_fail git pull 2>err &&
212 test_i18ngrep "no such ref was fetched" err &&
a1a64fdd 213 test_cmp expect file
d12f455e
PT
214'
215
05438afc
PT
216test_expect_success 'fail if the index has unresolved entries' '
217 git checkout -b third second^ &&
218 test_when_finished "git checkout -f copy && git branch -D third" &&
a1a64fdd
DL
219 echo file >expect &&
220 test_cmp expect file &&
05438afc 221 test_commit modified2 file &&
979f8891
DL
222 git ls-files -u >unmerged &&
223 test_must_be_empty unmerged &&
05438afc 224 test_must_fail git pull . second &&
979f8891
DL
225 git ls-files -u >unmerged &&
226 test_file_not_empty unmerged &&
05438afc
PT
227 cp file expected &&
228 test_must_fail git pull . second 2>err &&
8785c425 229 test_i18ngrep "Pulling is not possible because you have unmerged files." err &&
05438afc
PT
230 test_cmp expected file &&
231 git add file &&
979f8891
DL
232 git ls-files -u >unmerged &&
233 test_must_be_empty unmerged &&
05438afc
PT
234 test_must_fail git pull . second 2>err &&
235 test_i18ngrep "You have not concluded your merge" err &&
236 test_cmp expected file
237'
238
9f992262
PT
239test_expect_success 'fast-forwards working tree if branch head is updated' '
240 git checkout -b third second^ &&
241 test_when_finished "git checkout -f copy && git branch -D third" &&
a1a64fdd
DL
242 echo file >expect &&
243 test_cmp expect file &&
9f992262
PT
244 git pull . second:third 2>err &&
245 test_i18ngrep "fetch updated the current branch head" err &&
a1a64fdd
DL
246 echo modified >expect &&
247 test_cmp expect file &&
dd0f1e76 248 test_cmp_rev third second
9f992262
PT
249'
250
251test_expect_success 'fast-forward fails with conflicting work tree' '
252 git checkout -b third second^ &&
253 test_when_finished "git checkout -f copy && git branch -D third" &&
a1a64fdd
DL
254 echo file >expect &&
255 test_cmp expect file &&
9f992262
PT
256 echo conflict >file &&
257 test_must_fail git pull . second:third 2>err &&
258 test_i18ngrep "Cannot fast-forward your working tree" err &&
a1a64fdd
DL
259 echo conflict >expect &&
260 test_cmp expect file &&
dd0f1e76 261 test_cmp_rev third second
9f992262
PT
262'
263
cd67e4d4
JS
264test_expect_success '--rebase' '
265 git branch to-rebase &&
93a9bf87 266 echo modified again >file &&
cd67e4d4
JS
267 git commit -m file file &&
268 git checkout to-rebase &&
93a9bf87 269 echo new >file2 &&
cd67e4d4
JS
270 git add file2 &&
271 git commit -m "new file" &&
272 git tag before-rebase &&
273 git pull --rebase . copy &&
dd0f1e76 274 test_cmp_rev HEAD^ copy &&
5540ed27
DL
275 echo new >expect &&
276 git show HEAD:file2 >actual &&
277 test_cmp expect actual
cd67e4d4 278'
9570d67c 279
33b842a1
JH
280test_expect_success '--rebase fast forward' '
281 git reset --hard before-rebase &&
282 git checkout -b ff &&
283 echo another modification >file &&
284 git commit -m third file &&
285
286 git checkout to-rebase &&
287 git pull --rebase . ff &&
dd0f1e76 288 test_cmp_rev HEAD ff &&
33b842a1
JH
289
290 # The above only validates the result. Did we actually bypass rebase?
291 git reflog -1 >reflog.actual &&
292 sed "s/^[0-9a-f][0-9a-f]*/OBJID/" reflog.actual >reflog.fuzzy &&
293 echo "OBJID HEAD@{0}: pull --rebase . ff: Fast-forward" >reflog.expected &&
294 test_cmp reflog.expected reflog.fuzzy
295'
296
f15e7cf5
TB
297test_expect_success '--rebase --autostash fast forward' '
298 test_when_finished "
299 git reset --hard
300 git checkout to-rebase
301 git branch -D to-rebase-ff
302 git branch -D behind" &&
303 git branch behind &&
304 git checkout -b to-rebase-ff &&
305 echo another modification >>file &&
306 git add file &&
307 git commit -m mod &&
308
309 git checkout behind &&
310 echo dirty >file &&
311 git pull --rebase --autostash . to-rebase-ff &&
dd0f1e76 312 test_cmp_rev HEAD to-rebase-ff
f15e7cf5
TB
313'
314
3be18b47
JS
315test_expect_success '--rebase with conflicts shows advice' '
316 test_when_finished "git rebase --abort; git checkout -f to-rebase" &&
317 git checkout -b seq &&
318 test_seq 5 >seq.txt &&
319 git add seq.txt &&
320 test_tick &&
321 git commit -m "Add seq.txt" &&
322 echo 6 >>seq.txt &&
323 test_tick &&
324 git commit -m "Append to seq.txt" seq.txt &&
325 git checkout -b with-conflicts HEAD^ &&
326 echo conflicting >>seq.txt &&
327 test_tick &&
328 git commit -m "Create conflict" seq.txt &&
329 test_must_fail git pull --rebase . seq 2>err >out &&
5fdacc17 330 test_i18ngrep "Resolve all conflicts manually" out
3be18b47
JS
331'
332
333test_expect_success 'failed --rebase shows advice' '
334 test_when_finished "git rebase --abort; git checkout -f to-rebase" &&
335 git checkout -b diverging &&
336 test_commit attributes .gitattributes "* text=auto" attrs &&
337 sha1="$(printf "1\\r\\n" | git hash-object -w --stdin)" &&
338 git update-index --cacheinfo 0644 $sha1 file &&
339 git commit -m v1-with-cr &&
340 # force checkout because `git reset --hard` will not leave clean `file`
341 git checkout -f -b fails-to-rebase HEAD^ &&
342 test_commit v2-without-cr file "2" file2-lf &&
343 test_must_fail git pull --rebase . diverging 2>err >out &&
5fdacc17 344 test_i18ngrep "Resolve all conflicts manually" out
3be18b47
JS
345'
346
9570d67c
PT
347test_expect_success '--rebase fails with multiple branches' '
348 git reset --hard before-rebase &&
349 test_must_fail git pull --rebase . copy master 2>err &&
dd0f1e76 350 test_cmp_rev HEAD before-rebase &&
9570d67c 351 test_i18ngrep "Cannot rebase onto multiple branches" err &&
5540ed27
DL
352 echo modified >expect &&
353 git show HEAD:file >actual &&
354 test_cmp expect actual
9570d67c
PT
355'
356
53c76dc0
KD
357test_expect_success 'pull --rebase succeeds with dirty working directory and rebase.autostash set' '
358 test_config rebase.autostash true &&
5c82bcdd 359 test_pull_autostash --rebase
53c76dc0
KD
360'
361
f66398eb
MJ
362test_expect_success 'pull --rebase --autostash & rebase.autostash=true' '
363 test_config rebase.autostash true &&
5c82bcdd 364 test_pull_autostash --rebase --autostash
f66398eb
MJ
365'
366
efa195d5 367test_expect_success 'pull --rebase --autostash & rebase.autostash=false' '
f66398eb 368 test_config rebase.autostash false &&
5c82bcdd 369 test_pull_autostash --rebase --autostash
f66398eb
MJ
370'
371
5c82bcdd 372test_expect_success 'pull --rebase --autostash & rebase.autostash unset' '
eff960b3 373 test_unconfig rebase.autostash &&
5c82bcdd 374 test_pull_autostash --rebase --autostash
f66398eb
MJ
375'
376
377test_expect_success 'pull --rebase --no-autostash & rebase.autostash=true' '
378 test_config rebase.autostash true &&
44a59fff 379 test_pull_autostash_fail --rebase --no-autostash
f66398eb
MJ
380'
381
382test_expect_success 'pull --rebase --no-autostash & rebase.autostash=false' '
383 test_config rebase.autostash false &&
44a59fff 384 test_pull_autostash_fail --rebase --no-autostash
f66398eb
MJ
385'
386
387test_expect_success 'pull --rebase --no-autostash & rebase.autostash unset' '
eff960b3 388 test_unconfig rebase.autostash &&
44a59fff 389 test_pull_autostash_fail --rebase --no-autostash
f66398eb
MJ
390'
391
16622979
MJ
392for i in --autostash --no-autostash
393do
394 test_expect_success "pull $i (without --rebase) is illegal" '
395 test_must_fail git pull $i . copy 2>err &&
396 test_i18ngrep "only valid with --rebase" err
397 '
398done
f66398eb 399
6b37dff1
ÆAB
400test_expect_success 'pull.rebase' '
401 git reset --hard before-rebase &&
9d6aa64d 402 test_config pull.rebase true &&
6b37dff1 403 git pull . copy &&
dd0f1e76 404 test_cmp_rev HEAD^ copy &&
5540ed27
DL
405 echo new >expect &&
406 git show HEAD:file2 >actual &&
407 test_cmp expect actual
6b37dff1 408'
cd67e4d4 409
450dd1dc
MJ
410test_expect_success 'pull --autostash & pull.rebase=true' '
411 test_config pull.rebase true &&
412 test_pull_autostash --autostash
413'
414
415test_expect_success 'pull --no-autostash & pull.rebase=true' '
416 test_config pull.rebase true &&
417 test_pull_autostash_fail --no-autostash
418'
419
cd67e4d4
JS
420test_expect_success 'branch.to-rebase.rebase' '
421 git reset --hard before-rebase &&
9d6aa64d 422 test_config branch.to-rebase.rebase true &&
cd67e4d4 423 git pull . copy &&
dd0f1e76 424 test_cmp_rev HEAD^ copy &&
5540ed27
DL
425 echo new >expect &&
426 git show HEAD:file2 >actual &&
427 test_cmp expect actual
cd67e4d4
JS
428'
429
6b37dff1
ÆAB
430test_expect_success 'branch.to-rebase.rebase should override pull.rebase' '
431 git reset --hard before-rebase &&
9d6aa64d
YD
432 test_config pull.rebase true &&
433 test_config branch.to-rebase.rebase false &&
6b37dff1 434 git pull . copy &&
dd0f1e76 435 test_cmp_rev ! HEAD^ copy &&
5540ed27
DL
436 echo new >expect &&
437 git show HEAD:file2 >actual &&
438 test_cmp expect actual
6b37dff1
ÆAB
439'
440
53c62b98 441test_expect_success 'pull --rebase warns on --verify-signatures' '
c57e501c
AH
442 git reset --hard before-rebase &&
443 git pull --rebase --verify-signatures . copy 2>err &&
dd0f1e76 444 test_cmp_rev HEAD^ copy &&
5540ed27
DL
445 echo new >expect &&
446 git show HEAD:file2 >actual &&
447 test_cmp expect actual &&
c57e501c
AH
448 test_i18ngrep "ignoring --verify-signatures for rebase" err
449'
450
53c62b98 451test_expect_success 'pull --rebase does not warn on --no-verify-signatures' '
c57e501c
AH
452 git reset --hard before-rebase &&
453 git pull --rebase --no-verify-signatures . copy 2>err &&
dd0f1e76 454 test_cmp_rev HEAD^ copy &&
5540ed27
DL
455 echo new >expect &&
456 git show HEAD:file2 >actual &&
457 test_cmp expect actual &&
c57e501c
AH
458 test_i18ngrep ! "verify-signatures" err
459'
460
66713ef3
SH
461# add a feature branch, keep-merge, that is merged into master, so the
462# test can try preserving the merge commit (or not) with various
463# --rebase flags/pull.rebase settings.
464test_expect_success 'preserve merge setup' '
465 git reset --hard before-rebase &&
466 git checkout -b keep-merge second^ &&
467 test_commit file3 &&
468 git checkout to-rebase &&
469 git merge keep-merge &&
470 git tag before-preserve-rebase
471'
472
473test_expect_success 'pull.rebase=false create a new merge commit' '
474 git reset --hard before-preserve-rebase &&
475 test_config pull.rebase false &&
476 git pull . copy &&
dd0f1e76
DL
477 test_cmp_rev HEAD^1 before-preserve-rebase &&
478 test_cmp_rev HEAD^2 copy &&
5540ed27
DL
479 echo file3 >expect &&
480 git show HEAD:file3.t >actual &&
481 test_cmp expect actual
66713ef3
SH
482'
483
484test_expect_success 'pull.rebase=true flattens keep-merge' '
485 git reset --hard before-preserve-rebase &&
486 test_config pull.rebase true &&
487 git pull . copy &&
dd0f1e76 488 test_cmp_rev HEAD^^ copy &&
5540ed27
DL
489 echo file3 >expect &&
490 git show HEAD:file3.t >actual &&
491 test_cmp expect actual
66713ef3
SH
492'
493
494test_expect_success 'pull.rebase=1 is treated as true and flattens keep-merge' '
495 git reset --hard before-preserve-rebase &&
496 test_config pull.rebase 1 &&
497 git pull . copy &&
dd0f1e76 498 test_cmp_rev HEAD^^ copy &&
5540ed27
DL
499 echo file3 >expect &&
500 git show HEAD:file3.t >actual &&
501 test_cmp expect actual
66713ef3
SH
502'
503
11aad464
JS
504test_expect_success REBASE_P \
505 'pull.rebase=preserve rebases and merges keep-merge' '
66713ef3
SH
506 git reset --hard before-preserve-rebase &&
507 test_config pull.rebase preserve &&
508 git pull . copy &&
dd0f1e76
DL
509 test_cmp_rev HEAD^^ copy &&
510 test_cmp_rev HEAD^2 keep-merge
66713ef3
SH
511'
512
f5eb87b9
JS
513test_expect_success 'pull.rebase=interactive' '
514 write_script "$TRASH_DIRECTORY/fake-editor" <<-\EOF &&
515 echo I was here >fake.out &&
516 false
517 EOF
518 test_set_editor "$TRASH_DIRECTORY/fake-editor" &&
46af44b0 519 test_when_finished "test_might_fail git rebase --abort" &&
f5eb87b9 520 test_must_fail git pull --rebase=interactive . copy &&
a1a64fdd
DL
521 echo "I was here" >expect &&
522 test_cmp expect fake.out
f5eb87b9
JS
523'
524
46af44b0
JS
525test_expect_success 'pull --rebase=i' '
526 write_script "$TRASH_DIRECTORY/fake-editor" <<-\EOF &&
527 echo I was here, too >fake.out &&
528 false
529 EOF
530 test_set_editor "$TRASH_DIRECTORY/fake-editor" &&
531 test_when_finished "test_might_fail git rebase --abort" &&
532 test_must_fail git pull --rebase=i . copy &&
a1a64fdd
DL
533 echo "I was here, too" >expect &&
534 test_cmp expect fake.out
46af44b0
JS
535'
536
66713ef3
SH
537test_expect_success 'pull.rebase=invalid fails' '
538 git reset --hard before-preserve-rebase &&
539 test_config pull.rebase invalid &&
2a022620 540 test_must_fail git pull . copy
66713ef3
SH
541'
542
543test_expect_success '--rebase=false create a new merge commit' '
544 git reset --hard before-preserve-rebase &&
545 test_config pull.rebase true &&
546 git pull --rebase=false . copy &&
dd0f1e76
DL
547 test_cmp_rev HEAD^1 before-preserve-rebase &&
548 test_cmp_rev HEAD^2 copy &&
5540ed27
DL
549 echo file3 >expect &&
550 git show HEAD:file3.t >actual &&
551 test_cmp expect actual
66713ef3
SH
552'
553
554test_expect_success '--rebase=true rebases and flattens keep-merge' '
555 git reset --hard before-preserve-rebase &&
556 test_config pull.rebase preserve &&
557 git pull --rebase=true . copy &&
dd0f1e76 558 test_cmp_rev HEAD^^ copy &&
5540ed27
DL
559 echo file3 >expect &&
560 git show HEAD:file3.t >actual &&
561 test_cmp expect actual
66713ef3
SH
562'
563
11aad464
JS
564test_expect_success REBASE_P \
565 '--rebase=preserve rebases and merges keep-merge' '
66713ef3
SH
566 git reset --hard before-preserve-rebase &&
567 test_config pull.rebase true &&
568 git pull --rebase=preserve . copy &&
dd0f1e76
DL
569 test_cmp_rev HEAD^^ copy &&
570 test_cmp_rev HEAD^2 keep-merge
66713ef3
SH
571'
572
573test_expect_success '--rebase=invalid fails' '
574 git reset --hard before-preserve-rebase &&
2a022620 575 test_must_fail git pull --rebase=invalid . copy
66713ef3
SH
576'
577
578test_expect_success '--rebase overrides pull.rebase=preserve and flattens keep-merge' '
579 git reset --hard before-preserve-rebase &&
580 test_config pull.rebase preserve &&
581 git pull --rebase . copy &&
dd0f1e76 582 test_cmp_rev HEAD^^ copy &&
5540ed27
DL
583 echo file3 >expect &&
584 git show HEAD:file3.t >actual &&
585 test_cmp expect actual
66713ef3
SH
586'
587
c85c7927 588test_expect_success '--rebase with rebased upstream' '
c85c7927
JS
589 git remote add -f me . &&
590 git checkout copy &&
e9460a66 591 git tag copy-orig &&
c85c7927 592 git reset --hard HEAD^ &&
93a9bf87 593 echo conflicting modification >file &&
c85c7927
JS
594 git commit -m conflict file &&
595 git checkout to-rebase &&
93a9bf87 596 echo file >file2 &&
c85c7927 597 git commit -m to-rebase file2 &&
e9460a66 598 git tag to-rebase-orig &&
c85c7927 599 git pull --rebase me copy &&
a1a64fdd
DL
600 echo "conflicting modification" >expect &&
601 test_cmp expect file &&
602 echo file >expect &&
603 test_cmp expect file2
c85c7927
JS
604'
605
eb2a8d9e
PT
606test_expect_success '--rebase -f with rebased upstream' '
607 test_when_finished "test_might_fail git rebase --abort" &&
608 git reset --hard to-rebase-orig &&
609 git pull --rebase -f me copy &&
a1a64fdd
DL
610 echo "conflicting modification" >expect &&
611 test_cmp expect file &&
612 echo file >expect &&
613 test_cmp expect file2
eb2a8d9e
PT
614'
615
e9460a66 616test_expect_success '--rebase with rebased default upstream' '
e9460a66
SB
617 git update-ref refs/remotes/me/copy copy-orig &&
618 git checkout --track -b to-rebase2 me/copy &&
619 git reset --hard to-rebase-orig &&
620 git pull --rebase &&
a1a64fdd
DL
621 echo "conflicting modification" >expect &&
622 test_cmp expect file &&
623 echo file >expect &&
624 test_cmp expect file2
e9460a66
SB
625'
626
d44e7126 627test_expect_success 'rebased upstream + fetch + pull --rebase' '
a418441b
SB
628
629 git update-ref refs/remotes/me/copy copy-orig &&
630 git reset --hard to-rebase-orig &&
631 git checkout --track -b to-rebase3 me/copy &&
632 git reset --hard to-rebase-orig &&
633 git fetch &&
d44e7126 634 git pull --rebase &&
a1a64fdd
DL
635 echo "conflicting modification" >expect &&
636 test_cmp expect file &&
637 echo file >expect &&
638 test_cmp expect file2
a418441b
SB
639
640'
641
f9189cf8 642test_expect_success 'pull --rebase dies early with dirty working directory' '
e9460a66 643 git checkout to-rebase &&
f9189cf8 644 git update-ref refs/remotes/me/copy copy^ &&
c998b381 645 COPY="$(git rev-parse --verify me/copy)" &&
f9189cf8 646 git rebase --onto $COPY copy &&
790f2827
RR
647 test_config branch.to-rebase.remote me &&
648 test_config branch.to-rebase.merge refs/heads/copy &&
649 test_config branch.to-rebase.rebase true &&
93a9bf87 650 echo dirty >>file &&
f9189cf8
JS
651 git add file &&
652 test_must_fail git pull &&
dd0f1e76 653 test_cmp_rev "$COPY" me/copy &&
f9189cf8
JS
654 git checkout HEAD -- file &&
655 git pull &&
dd0f1e76 656 test_cmp_rev ! "$COPY" me/copy
f9189cf8
JS
657'
658
19a7fcbf
JK
659test_expect_success 'pull --rebase works on branch yet to be born' '
660 git rev-parse master >expect &&
661 mkdir empty_repo &&
e8d1eaf9
DL
662 (
663 cd empty_repo &&
664 git init &&
665 git pull --rebase .. master &&
666 git rev-parse HEAD >../actual
19a7fcbf
JK
667 ) &&
668 test_cmp expect actual
669'
670
fa14ee77
PT
671test_expect_success 'pull --rebase fails on unborn branch with staged changes' '
672 test_when_finished "rm -rf empty_repo2" &&
673 git init empty_repo2 &&
674 (
675 cd empty_repo2 &&
676 echo staged-file >staged-file &&
677 git add staged-file &&
5540ed27
DL
678 echo staged-file >expect &&
679 git ls-files >actual &&
680 test_cmp expect actual &&
fa14ee77 681 test_must_fail git pull --rebase .. master 2>err &&
5540ed27
DL
682 git ls-files >actual &&
683 test_cmp expect actual &&
5540ed27
DL
684 git show :staged-file >actual &&
685 test_cmp expect actual &&
fa14ee77
PT
686 test_i18ngrep "unborn branch with changes added to the index" err
687 )
688'
689
3506dc94
JK
690test_expect_success 'pull --rebase fails on corrupt HEAD' '
691 test_when_finished "rm -rf corrupt" &&
692 git init corrupt &&
693 (
694 cd corrupt &&
695 test_commit one &&
e959a18e
DL
696 git rev-parse --verify HEAD >head &&
697 obj=$(sed "s#^..#&/#" head) &&
3506dc94
JK
698 rm -f .git/objects/$obj &&
699 test_must_fail git pull --rebase
700 )
701'
702
3cee9236
EN
703test_expect_success 'setup for detecting upstreamed changes' '
704 mkdir src &&
e8d1eaf9
DL
705 (
706 cd src &&
707 git init &&
708 printf "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" > stuff &&
709 git add stuff &&
710 git commit -m "Initial revision"
3cee9236
EN
711 ) &&
712 git clone src dst &&
e8d1eaf9
DL
713 (
714 cd src &&
715 modify s/5/43/ stuff &&
716 git commit -a -m "5->43" &&
717 modify s/6/42/ stuff &&
718 git commit -a -m "Make it bigger"
3cee9236 719 ) &&
e8d1eaf9
DL
720 (
721 cd dst &&
722 modify s/5/43/ stuff &&
723 git commit -a -m "Independent discovery of 5->43"
3cee9236
EN
724 )
725'
726
cf65426d 727test_expect_success 'git pull --rebase detects upstreamed changes' '
e8d1eaf9
DL
728 (
729 cd dst &&
730 git pull --rebase &&
979f8891
DL
731 git ls-files -u >untracked &&
732 test_must_be_empty untracked
3cee9236
EN
733 )
734'
735
736test_expect_success 'setup for avoiding reapplying old patches' '
e8d1eaf9
DL
737 (
738 cd dst &&
739 test_might_fail git rebase --abort &&
740 git reset --hard origin/master
3cee9236
EN
741 ) &&
742 git clone --bare src src-replace.git &&
743 rm -rf src &&
744 mv src-replace.git src &&
e8d1eaf9
DL
745 (
746 cd dst &&
747 modify s/2/22/ stuff &&
748 git commit -a -m "Change 2" &&
749 modify s/3/33/ stuff &&
750 git commit -a -m "Change 3" &&
751 modify s/4/44/ stuff &&
752 git commit -a -m "Change 4" &&
753 git push &&
754
755 modify s/44/55/ stuff &&
756 git commit --amend -a -m "Modified Change 4"
3cee9236
EN
757 )
758'
759
cf65426d 760test_expect_success 'git pull --rebase does not reapply old patches' '
e8d1eaf9
DL
761 (
762 cd dst &&
763 test_must_fail git pull --rebase &&
3037d3db
DL
764 find .git/rebase-apply -name "000*" >patches &&
765 test_line_count = 1 patches
3cee9236
EN
766 )
767'
768
fe249b42
MZ
769test_expect_success 'git pull --rebase against local branch' '
770 git checkout -b copy2 to-rebase-orig &&
771 git pull --rebase . to-rebase &&
a1a64fdd
DL
772 echo "conflicting modification" >expect &&
773 test_cmp expect file &&
774 echo file >expect &&
775 test_cmp expect file2
fe249b42
MZ
776'
777
d09e79cb 778test_done