]> git.ipfire.org Git - thirdparty/git.git/blame - t/t3903-stash.sh
Sync with maint
[thirdparty/git.git] / t / t3903-stash.sh
CommitLineData
150937c4
JS
1#!/bin/sh
2#
3# Copyright (c) 2007 Johannes E Schindelin
4#
5
0cb0e143 6test_description='Test git stash'
150937c4
JS
7
8. ./test-lib.sh
9
10test_expect_success 'stash some dirty working directory' '
11 echo 1 > file &&
12 git add file &&
88bab59c
JK
13 echo unrelated >other-file &&
14 git add other-file &&
150937c4
JS
15 test_tick &&
16 git commit -m initial &&
17 echo 2 > file &&
18 git add file &&
19 echo 3 > file &&
20 test_tick &&
21 git stash &&
22 git diff-files --quiet &&
23 git diff-index --cached --quiet HEAD
24'
25
26cat > expect << EOF
27diff --git a/file b/file
28index 0cfbf08..00750ed 100644
29--- a/file
30+++ b/file
31@@ -1 +1 @@
32-2
33+3
34EOF
35
36test_expect_success 'parents of stash' '
37 test $(git rev-parse stash^) = $(git rev-parse HEAD) &&
38 git diff stash^2..stash > output &&
82ebb0b6 39 test_cmp output expect
150937c4
JS
40'
41
59d418fe
JK
42test_expect_success 'applying bogus stash does nothing' '
43 test_must_fail git stash apply stash@{1} &&
44 echo 1 >expect &&
45 test_cmp expect file
46'
47
e0e2a9cb
JK
48test_expect_success 'apply does not need clean working directory' '
49 echo 4 >other-file &&
e0e2a9cb
JK
50 git stash apply &&
51 echo 3 >expect &&
52 test_cmp expect file
53'
54
55test_expect_success 'apply does not clobber working directory changes' '
56 git reset --hard &&
57 echo 4 >file &&
58 test_must_fail git stash apply &&
59 echo 4 >expect &&
60 test_cmp expect file
150937c4
JS
61'
62
63test_expect_success 'apply stashed changes' '
e0e2a9cb
JK
64 git reset --hard &&
65 echo 5 >other-file &&
150937c4
JS
66 git add other-file &&
67 test_tick &&
68 git commit -m other-file &&
69 git stash apply &&
70 test 3 = $(cat file) &&
71 test 1 = $(git show :file) &&
72 test 1 = $(git show HEAD:file)
73'
74
75test_expect_success 'apply stashed changes (including index)' '
76 git reset --hard HEAD^ &&
77 echo 6 > other-file &&
78 git add other-file &&
79 test_tick &&
80 git commit -m other-file &&
81 git stash apply --index &&
82 test 3 = $(cat file) &&
83 test 2 = $(git show :file) &&
84 test 1 = $(git show HEAD:file)
85'
86
ceff079b
JH
87test_expect_success 'unstashing in a subdirectory' '
88 git reset --hard HEAD &&
89 mkdir subdir &&
18a82692
JN
90 (
91 cd subdir &&
92 git stash apply
fd4ec4f2 93 )
b683c080
BC
94'
95
d6cc2df5
JK
96test_expect_success 'stash drop complains of extra options' '
97 test_must_fail git stash drop --foo
98'
99
b683c080
BC
100test_expect_success 'drop top stash' '
101 git reset --hard &&
102 git stash list > stashlist1 &&
103 echo 7 > file &&
104 git stash &&
105 git stash drop &&
106 git stash list > stashlist2 &&
4fdf71be 107 test_cmp stashlist1 stashlist2 &&
b683c080
BC
108 git stash apply &&
109 test 3 = $(cat file) &&
110 test 1 = $(git show :file) &&
111 test 1 = $(git show HEAD:file)
112'
113
114test_expect_success 'drop middle stash' '
115 git reset --hard &&
116 echo 8 > file &&
117 git stash &&
118 echo 9 > file &&
119 git stash &&
120 git stash drop stash@{1} &&
121 test 2 = $(git stash list | wc -l) &&
122 git stash apply &&
123 test 9 = $(cat file) &&
124 test 1 = $(git show :file) &&
125 test 1 = $(git show HEAD:file) &&
126 git reset --hard &&
127 git stash drop &&
128 git stash apply &&
129 test 3 = $(cat file) &&
130 test 1 = $(git show :file) &&
131 test 1 = $(git show HEAD:file)
132'
133
134test_expect_success 'stash pop' '
135 git reset --hard &&
136 git stash pop &&
137 test 3 = $(cat file) &&
138 test 1 = $(git show :file) &&
139 test 1 = $(git show HEAD:file) &&
140 test 0 = $(git stash list | wc -l)
ceff079b
JH
141'
142
4a588075
AMS
143cat > expect << EOF
144diff --git a/file2 b/file2
145new file mode 100644
146index 0000000..1fe912c
147--- /dev/null
148+++ b/file2
149@@ -0,0 +1 @@
150+bar2
151EOF
152
153cat > expect1 << EOF
154diff --git a/file b/file
155index 257cc56..5716ca5 100644
156--- a/file
157+++ b/file
158@@ -1 +1 @@
159-foo
160+bar
161EOF
162
163cat > expect2 << EOF
164diff --git a/file b/file
165index 7601807..5716ca5 100644
166--- a/file
167+++ b/file
168@@ -1 +1 @@
169-baz
170+bar
171diff --git a/file2 b/file2
172new file mode 100644
173index 0000000..1fe912c
174--- /dev/null
175+++ b/file2
176@@ -0,0 +1 @@
177+bar2
178EOF
179
180test_expect_success 'stash branch' '
181 echo foo > file &&
a48fcd83 182 git commit file -m first &&
4a588075
AMS
183 echo bar > file &&
184 echo bar2 > file2 &&
185 git add file2 &&
186 git stash &&
187 echo baz > file &&
188 git commit file -m second &&
189 git stash branch stashbranch &&
190 test refs/heads/stashbranch = $(git symbolic-ref HEAD) &&
191 test $(git rev-parse HEAD) = $(git rev-parse master^) &&
192 git diff --cached > output &&
193 test_cmp output expect &&
194 git diff > output &&
195 test_cmp output expect1 &&
196 git add file &&
197 git commit -m alternate\ second &&
198 git diff master..stashbranch > output &&
199 test_cmp output expect2 &&
200 test 0 = $(git stash list | wc -l)
201'
202
fcdd0e92
SB
203test_expect_success 'apply -q is quiet' '
204 echo foo > file &&
205 git stash &&
206 git stash apply -q > output.out 2>&1 &&
ca8d148d 207 test_must_be_empty output.out
fcdd0e92
SB
208'
209
210test_expect_success 'save -q is quiet' '
211 git stash save --quiet > output.out 2>&1 &&
ca8d148d 212 test_must_be_empty output.out
fcdd0e92
SB
213'
214
215test_expect_success 'pop -q is quiet' '
216 git stash pop -q > output.out 2>&1 &&
ca8d148d 217 test_must_be_empty output.out
fcdd0e92
SB
218'
219
460ccd0e
TR
220test_expect_success 'pop -q --index works and is quiet' '
221 echo foo > file &&
222 git add file &&
223 git stash save --quiet &&
224 git stash pop -q --index > output.out 2>&1 &&
225 test foo = "$(git show :file)" &&
ca8d148d 226 test_must_be_empty output.out
460ccd0e
TR
227'
228
fcdd0e92
SB
229test_expect_success 'drop -q is quiet' '
230 git stash &&
231 git stash drop -q > output.out 2>&1 &&
ca8d148d 232 test_must_be_empty output.out
fcdd0e92
SB
233'
234
ea41cfc4
JS
235test_expect_success 'stash -k' '
236 echo bar3 > file &&
237 echo bar4 > file2 &&
238 git add file2 &&
239 git stash -k &&
240 test bar,bar4 = $(cat file),$(cat file2)
241'
242
21ec98a7
DM
243test_expect_success 'stash --no-keep-index' '
244 echo bar33 > file &&
245 echo bar44 > file2 &&
246 git add file2 &&
247 git stash --no-keep-index &&
248 test bar,bar2 = $(cat file),$(cat file2)
249'
250
3c2eb80f
MM
251test_expect_success 'stash --invalid-option' '
252 echo bar5 > file &&
253 echo bar6 > file2 &&
254 git add file2 &&
255 test_must_fail git stash --invalid-option &&
256 test_must_fail git stash save --invalid-option &&
257 test bar5,bar6 = $(cat file),$(cat file2) &&
258 git stash -- -message-starting-with-dash &&
259 test bar,bar2 = $(cat file),$(cat file2)
260'
261
2ba2fe29
CB
262test_expect_success 'stash an added file' '
263 git reset --hard &&
264 echo new >file3 &&
265 git add file3 &&
266 git stash save "added file" &&
267 ! test -r file3 &&
268 git stash apply &&
269 test new = "$(cat file3)"
270'
271
272test_expect_success 'stash rm then recreate' '
273 git reset --hard &&
274 git rm file &&
275 echo bar7 >file &&
276 git stash save "rm then recreate" &&
277 test bar = "$(cat file)" &&
278 git stash apply &&
279 test bar7 = "$(cat file)"
280'
281
282test_expect_success 'stash rm and ignore' '
283 git reset --hard &&
284 git rm file &&
285 echo file >.gitignore &&
286 git stash save "rm and ignore" &&
287 test bar = "$(cat file)" &&
a48fcd83 288 test file = "$(cat .gitignore)" &&
2ba2fe29
CB
289 git stash apply &&
290 ! test -r file &&
291 test file = "$(cat .gitignore)"
292'
293
294test_expect_success 'stash rm and ignore (stage .gitignore)' '
295 git reset --hard &&
296 git rm file &&
297 echo file >.gitignore &&
298 git add .gitignore &&
299 git stash save "rm and ignore (stage .gitignore)" &&
300 test bar = "$(cat file)" &&
a48fcd83 301 ! test -r .gitignore &&
2ba2fe29
CB
302 git stash apply &&
303 ! test -r file &&
304 test file = "$(cat .gitignore)"
305'
306
307test_expect_success SYMLINKS 'stash file to symlink' '
308 git reset --hard &&
309 rm file &&
310 ln -s file2 file &&
311 git stash save "file to symlink" &&
312 test -f file &&
313 test bar = "$(cat file)" &&
314 git stash apply &&
315 case "$(ls -l file)" in *" file -> file2") :;; *) false;; esac
316'
317
318test_expect_success SYMLINKS 'stash file to symlink (stage rm)' '
319 git reset --hard &&
320 git rm file &&
321 ln -s file2 file &&
322 git stash save "file to symlink (stage rm)" &&
323 test -f file &&
324 test bar = "$(cat file)" &&
325 git stash apply &&
326 case "$(ls -l file)" in *" file -> file2") :;; *) false;; esac
327'
328
329test_expect_success SYMLINKS 'stash file to symlink (full stage)' '
330 git reset --hard &&
331 rm file &&
332 ln -s file2 file &&
333 git add file &&
334 git stash save "file to symlink (full stage)" &&
335 test -f file &&
336 test bar = "$(cat file)" &&
337 git stash apply &&
338 case "$(ls -l file)" in *" file -> file2") :;; *) false;; esac
339'
340
341# This test creates a commit with a symlink used for the following tests
342
889c6f0e 343test_expect_success 'stash symlink to file' '
2ba2fe29 344 git reset --hard &&
889c6f0e 345 test_ln_s_add file filelink &&
2ba2fe29
CB
346 git commit -m "Add symlink" &&
347 rm filelink &&
348 cp file filelink &&
889c6f0e
JS
349 git stash save "symlink to file"
350'
351
352test_expect_success SYMLINKS 'this must have re-created the symlink' '
2ba2fe29 353 test -h filelink &&
889c6f0e
JS
354 case "$(ls -l filelink)" in *" filelink -> file") :;; *) false;; esac
355'
356
357test_expect_success 'unstash must re-create the file' '
2ba2fe29
CB
358 git stash apply &&
359 ! test -h filelink &&
360 test bar = "$(cat file)"
361'
362
889c6f0e 363test_expect_success 'stash symlink to file (stage rm)' '
2ba2fe29
CB
364 git reset --hard &&
365 git rm filelink &&
366 cp file filelink &&
889c6f0e
JS
367 git stash save "symlink to file (stage rm)"
368'
369
370test_expect_success SYMLINKS 'this must have re-created the symlink' '
2ba2fe29 371 test -h filelink &&
889c6f0e
JS
372 case "$(ls -l filelink)" in *" filelink -> file") :;; *) false;; esac
373'
374
375test_expect_success 'unstash must re-create the file' '
2ba2fe29
CB
376 git stash apply &&
377 ! test -h filelink &&
378 test bar = "$(cat file)"
379'
380
889c6f0e 381test_expect_success 'stash symlink to file (full stage)' '
2ba2fe29
CB
382 git reset --hard &&
383 rm filelink &&
384 cp file filelink &&
385 git add filelink &&
889c6f0e
JS
386 git stash save "symlink to file (full stage)"
387'
388
389test_expect_success SYMLINKS 'this must have re-created the symlink' '
2ba2fe29 390 test -h filelink &&
889c6f0e
JS
391 case "$(ls -l filelink)" in *" filelink -> file") :;; *) false;; esac
392'
393
394test_expect_success 'unstash must re-create the file' '
2ba2fe29
CB
395 git stash apply &&
396 ! test -h filelink &&
397 test bar = "$(cat file)"
398'
399
400test_expect_failure 'stash directory to file' '
401 git reset --hard &&
402 mkdir dir &&
403 echo foo >dir/file &&
404 git add dir/file &&
405 git commit -m "Add file in dir" &&
406 rm -fr dir &&
407 echo bar >dir &&
408 git stash save "directory to file" &&
409 test -d dir &&
410 test foo = "$(cat dir/file)" &&
411 test_must_fail git stash apply &&
412 test bar = "$(cat dir)" &&
413 git reset --soft HEAD^
414'
415
416test_expect_failure 'stash file to directory' '
417 git reset --hard &&
418 rm file &&
419 mkdir file &&
420 echo foo >file/file &&
421 git stash save "file to directory" &&
422 test -f file &&
423 test bar = "$(cat file)" &&
424 git stash apply &&
425 test -f file/file &&
426 test foo = "$(cat file/file)"
427'
428
daf7a0c0
JS
429test_expect_success 'stash branch - no stashes on stack, stash-like argument' '
430 git stash clear &&
431 test_when_finished "git reset --hard HEAD" &&
432 git reset --hard &&
433 echo foo >> file &&
434 STASH_ID=$(git stash create) &&
435 git reset --hard &&
436 git stash branch stash-branch ${STASH_ID} &&
437 test_when_finished "git reset --hard HEAD && git checkout master && git branch -D stash-branch" &&
438 test $(git ls-files --modified | wc -l) -eq 1
439'
440
441test_expect_success 'stash branch - stashes on stack, stash-like argument' '
442 git stash clear &&
443 test_when_finished "git reset --hard HEAD" &&
444 git reset --hard &&
445 echo foo >> file &&
446 git stash &&
447 test_when_finished "git stash drop" &&
448 echo bar >> file &&
449 STASH_ID=$(git stash create) &&
450 git reset --hard &&
451 git stash branch stash-branch ${STASH_ID} &&
452 test_when_finished "git reset --hard HEAD && git checkout master && git branch -D stash-branch" &&
453 test $(git ls-files --modified | wc -l) -eq 1
454'
455
11452114 456test_expect_success 'stash show format defaults to --stat' '
daf7a0c0
JS
457 git stash clear &&
458 test_when_finished "git reset --hard HEAD" &&
459 git reset --hard &&
460 echo foo >> file &&
461 git stash &&
462 test_when_finished "git stash drop" &&
463 echo bar >> file &&
464 STASH_ID=$(git stash create) &&
465 git reset --hard &&
3fcb8878 466 cat >expected <<-EOF &&
dc801e71 467 file | 1 +
7f814632 468 1 file changed, 1 insertion(+)
3fcb8878
BC
469 EOF
470 git stash show ${STASH_ID} >actual &&
fc5877a6 471 test_i18ncmp expected actual
daf7a0c0 472'
3fcb8878 473
11452114
JN
474test_expect_success 'stash show - stashes on stack, stash-like argument' '
475 git stash clear &&
476 test_when_finished "git reset --hard HEAD" &&
477 git reset --hard &&
478 echo foo >> file &&
479 git stash &&
480 test_when_finished "git stash drop" &&
481 echo bar >> file &&
482 STASH_ID=$(git stash create) &&
483 git reset --hard &&
484 echo "1 0 file" >expected &&
485 git stash show --numstat ${STASH_ID} >actual &&
486 test_cmp expected actual
487'
488
9027fa9e 489test_expect_success 'stash show -p - stashes on stack, stash-like argument' '
3fcb8878
BC
490 git stash clear &&
491 test_when_finished "git reset --hard HEAD" &&
492 git reset --hard &&
493 echo foo >> file &&
494 git stash &&
495 test_when_finished "git stash drop" &&
496 echo bar >> file &&
497 STASH_ID=$(git stash create) &&
498 git reset --hard &&
499 cat >expected <<-EOF &&
500 diff --git a/file b/file
501 index 7601807..935fbd3 100644
502 --- a/file
503 +++ b/file
504 @@ -1 +1,2 @@
505 baz
506 +bar
507 EOF
508 git stash show -p ${STASH_ID} >actual &&
509 test_cmp expected actual
510'
511
9027fa9e 512test_expect_success 'stash show - no stashes on stack, stash-like argument' '
3fcb8878
BC
513 git stash clear &&
514 test_when_finished "git reset --hard HEAD" &&
515 git reset --hard &&
516 echo foo >> file &&
517 STASH_ID=$(git stash create) &&
518 git reset --hard &&
11452114
JN
519 echo "1 0 file" >expected &&
520 git stash show --numstat ${STASH_ID} >actual &&
521 test_cmp expected actual
3fcb8878
BC
522'
523
9027fa9e 524test_expect_success 'stash show -p - no stashes on stack, stash-like argument' '
daf7a0c0
JS
525 git stash clear &&
526 test_when_finished "git reset --hard HEAD" &&
527 git reset --hard &&
528 echo foo >> file &&
529 STASH_ID=$(git stash create) &&
530 git reset --hard &&
3fcb8878
BC
531 cat >expected <<-EOF &&
532 diff --git a/file b/file
533 index 7601807..71b52c4 100644
534 --- a/file
535 +++ b/file
536 @@ -1 +1,2 @@
537 baz
538 +foo
539 EOF
540 git stash show -p ${STASH_ID} >actual &&
541 test_cmp expected actual
daf7a0c0
JS
542'
543
544test_expect_success 'stash drop - fail early if specified stash is not a stash reference' '
545 git stash clear &&
546 test_when_finished "git reset --hard HEAD && git stash clear" &&
547 git reset --hard &&
548 echo foo > file &&
549 git stash &&
550 echo bar > file &&
551 git stash &&
8d66bb05 552 test_must_fail git stash drop $(git rev-parse stash@{0}) &&
daf7a0c0
JS
553 git stash pop &&
554 test bar = "$(cat file)" &&
555 git reset --hard HEAD
556'
557
558test_expect_success 'stash pop - fail early if specified stash is not a stash reference' '
559 git stash clear &&
560 test_when_finished "git reset --hard HEAD && git stash clear" &&
561 git reset --hard &&
562 echo foo > file &&
563 git stash &&
564 echo bar > file &&
565 git stash &&
8d66bb05 566 test_must_fail git stash pop $(git rev-parse stash@{0}) &&
daf7a0c0
JS
567 git stash pop &&
568 test bar = "$(cat file)" &&
569 git reset --hard HEAD
570'
571
7be8b3ba 572test_expect_success 'ref with non-existent reflog' '
daf7a0c0
JS
573 git stash clear &&
574 echo bar5 > file &&
575 echo bar6 > file2 &&
576 git add file2 &&
577 git stash &&
1ae96444 578 test_must_fail git rev-parse --quiet --verify does-not-exist &&
8d66bb05
JS
579 test_must_fail git stash drop does-not-exist &&
580 test_must_fail git stash drop does-not-exist@{0} &&
581 test_must_fail git stash pop does-not-exist &&
582 test_must_fail git stash pop does-not-exist@{0} &&
583 test_must_fail git stash apply does-not-exist &&
584 test_must_fail git stash apply does-not-exist@{0} &&
585 test_must_fail git stash show does-not-exist &&
586 test_must_fail git stash show does-not-exist@{0} &&
587 test_must_fail git stash branch tmp does-not-exist &&
588 test_must_fail git stash branch tmp does-not-exist@{0} &&
daf7a0c0
JS
589 git stash drop
590'
591
592test_expect_success 'invalid ref of the form stash@{n}, n >= N' '
593 git stash clear &&
8d66bb05 594 test_must_fail git stash drop stash@{0} &&
daf7a0c0
JS
595 echo bar5 > file &&
596 echo bar6 > file2 &&
597 git add file2 &&
598 git stash &&
9355fc9c
JS
599 test_must_fail git stash drop stash@{1} &&
600 test_must_fail git stash pop stash@{1} &&
601 test_must_fail git stash apply stash@{1} &&
602 test_must_fail git stash show stash@{1} &&
603 test_must_fail git stash branch tmp stash@{1} &&
daf7a0c0
JS
604 git stash drop
605'
606
57693d03 607test_expect_success 'stash branch should not drop the stash if the branch exists' '
835d6a1f
TC
608 git stash clear &&
609 echo foo >file &&
610 git add file &&
611 git commit -m initial &&
612 echo bar >file &&
613 git stash &&
614 test_must_fail git stash branch master stash@{0} &&
615 git rev-parse stash@{0} --
616'
617
6eaf92f3
PK
618test_expect_success 'stash apply shows status same as git status (relative to current directory)' '
619 git stash clear &&
620 echo 1 >subdir/subfile1 &&
621 echo 2 >subdir/subfile2 &&
622 git add subdir/subfile1 &&
623 git commit -m subdir &&
624 (
625 cd subdir &&
626 echo x >subfile1 &&
627 echo x >../file &&
628 git status >../expect &&
629 git stash &&
630 sane_unset GIT_MERGE_VERBOSITY &&
631 git stash apply
632 ) |
633 sed -e 1,2d >actual && # drop "Saved..." and "HEAD is now..."
28785688 634 test_i18ncmp expect actual
6eaf92f3
PK
635'
636
44df2e29
JM
637cat > expect << EOF
638diff --git a/HEAD b/HEAD
639new file mode 100644
640index 0000000..fe0cbee
641--- /dev/null
642+++ b/HEAD
643@@ -0,0 +1 @@
644+file-not-a-ref
645EOF
646
647test_expect_success 'stash where working directory contains "HEAD" file' '
648 git stash clear &&
649 git reset --hard &&
650 echo file-not-a-ref > HEAD &&
651 git add HEAD &&
652 test_tick &&
653 git stash &&
654 git diff-files --quiet &&
655 git diff-index --cached --quiet HEAD &&
656 test "$(git rev-parse stash^)" = "$(git rev-parse HEAD)" &&
657 git diff stash^..stash > output &&
658 test_cmp output expect
659'
660
bd514cad
RR
661test_expect_success 'store called with invalid commit' '
662 test_must_fail git stash store foo
663'
664
665test_expect_success 'store updates stash ref and reflog' '
666 git stash clear &&
667 git reset --hard &&
668 echo quux >bazzy &&
669 git add bazzy &&
670 STASH_ID=$(git stash create) &&
671 git reset --hard &&
672 ! grep quux bazzy &&
673 git stash store -m quuxery $STASH_ID &&
674 test $(cat .git/refs/stash) = $STASH_ID &&
d0ab0584 675 git reflog --format=%H stash| grep $STASH_ID &&
bd514cad
RR
676 git stash pop &&
677 grep quux bazzy
678'
679
2a07e437
ØW
680test_expect_success 'handle stash specification with spaces' '
681 git stash clear &&
682 echo pig >file &&
683 git stash &&
684 stamp=$(git log -g --format="%cd" -1 refs/stash) &&
685 test_tick &&
686 echo cow >file &&
687 git stash &&
688 git stash apply "stash@{$stamp}" &&
689 grep pig file
690'
691
288c67ca
JK
692test_expect_success 'setup stash with index and worktree changes' '
693 git stash clear &&
694 git reset --hard &&
695 echo index >file &&
696 git add file &&
697 echo working >file &&
698 git stash
699'
700
701test_expect_success 'stash list implies --first-parent -m' '
f2f3fc95
JK
702 cat >expect <<-EOF &&
703 stash@{0}
288c67ca
JK
704
705 diff --git a/file b/file
706 index 257cc56..d26b33d 100644
707 --- a/file
708 +++ b/file
709 @@ -1 +1 @@
710 -foo
711 +working
712 EOF
f2f3fc95 713 git stash list --format=%gd -p >actual &&
288c67ca
JK
714 test_cmp expect actual
715'
716
717test_expect_success 'stash list --cc shows combined diff' '
718 cat >expect <<-\EOF &&
f2f3fc95 719 stash@{0}
288c67ca
JK
720
721 diff --cc file
722 index 257cc56,9015a7a..d26b33d
723 --- a/file
724 +++ b/file
725 @@@ -1,1 -1,1 +1,1 @@@
726 - foo
727 -index
728 ++working
729 EOF
f2f3fc95 730 git stash list --format=%gd -p --cc >actual &&
288c67ca
JK
731 test_cmp expect actual
732'
733
150937c4 734test_done