3 # Copyright (c) 2007 Johannes E Schindelin
6 test_description
='Test git stash'
10 test_expect_success
'stash some dirty working directory' '
13 echo unrelated >other-file &&
16 git commit -m initial &&
22 git diff-files --quiet &&
23 git diff-index --cached --quiet HEAD
27 diff --git a/file b/file
28 index 0cfbf08..00750ed 100644
36 test_expect_success
'parents of stash' '
37 test $(git rev-parse stash^) = $(git rev-parse HEAD) &&
38 git diff stash^2..stash > output &&
39 test_cmp output expect
42 test_expect_success
'applying bogus stash does nothing' '
43 test_must_fail git stash apply stash@{1} &&
48 test_expect_success
'apply does not need clean working directory' '
55 test_expect_success
'apply does not clobber working directory changes' '
58 test_must_fail git stash apply &&
63 test_expect_success
'apply stashed changes' '
68 git commit -m other-file &&
70 test 3 = $(cat file) &&
71 test 1 = $(git show :file) &&
72 test 1 = $(git show HEAD:file)
75 test_expect_success
'apply stashed changes (including index)' '
76 git reset --hard HEAD^ &&
77 echo 6 > other-file &&
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)
87 test_expect_success
'unstashing in a subdirectory' '
88 git reset --hard HEAD &&
96 test_expect_success
'stash drop complains of extra options' '
97 test_must_fail git stash drop --foo
100 test_expect_success
'drop top stash' '
102 git stash list > stashlist1 &&
106 git stash list > stashlist2 &&
107 test_cmp stashlist1 stashlist2 &&
109 test 3 = $(cat file) &&
110 test 1 = $(git show :file) &&
111 test 1 = $(git show HEAD:file)
114 test_expect_success
'drop middle stash' '
120 git stash drop stash@{1} &&
121 test 2 = $(git stash list | wc -l) &&
123 test 9 = $(cat file) &&
124 test 1 = $(git show :file) &&
125 test 1 = $(git show HEAD:file) &&
129 test 3 = $(cat file) &&
130 test 1 = $(git show :file) &&
131 test 1 = $(git show HEAD:file)
134 test_expect_success
'drop middle stash by index' '
141 test 2 = $(git stash list | wc -l) &&
143 test 9 = $(cat file) &&
144 test 1 = $(git show :file) &&
145 test 1 = $(git show HEAD:file) &&
149 test 3 = $(cat file) &&
150 test 1 = $(git show :file) &&
151 test 1 = $(git show HEAD:file)
154 test_expect_success
'stash pop' '
157 test 3 = $(cat file) &&
158 test 1 = $(git show :file) &&
159 test 1 = $(git show HEAD:file) &&
160 test 0 = $(git stash list | wc -l)
164 diff --git a/file2 b/file2
166 index 0000000..1fe912c
174 diff --git a/file b/file
175 index 257cc56..5716ca5 100644
184 diff --git a/file b/file
185 index 7601807..5716ca5 100644
191 diff --git a/file2 b/file2
193 index 0000000..1fe912c
200 test_expect_success
'stash branch' '
202 git commit file -m first &&
208 git commit file -m second &&
209 git stash branch stashbranch &&
210 test refs/heads/stashbranch = $(git symbolic-ref HEAD) &&
211 test $(git rev-parse HEAD) = $(git rev-parse master^) &&
212 git diff --cached > output &&
213 test_cmp output expect &&
215 test_cmp output expect1 &&
217 git commit -m alternate\ second &&
218 git diff master..stashbranch > output &&
219 test_cmp output expect2 &&
220 test 0 = $(git stash list | wc -l)
223 test_expect_success
'apply -q is quiet' '
226 git stash apply -q > output.out 2>&1 &&
227 test_must_be_empty output.out
230 test_expect_success
'save -q is quiet' '
231 git stash save --quiet > output.out 2>&1 &&
232 test_must_be_empty output.out
235 test_expect_success
'pop -q is quiet' '
236 git stash pop -q > output.out 2>&1 &&
237 test_must_be_empty output.out
240 test_expect_success
'pop -q --index works and is quiet' '
243 git stash save --quiet &&
244 git stash pop -q --index > output.out 2>&1 &&
245 test foo = "$(git show :file)" &&
246 test_must_be_empty output.out
249 test_expect_success
'drop -q is quiet' '
251 git stash drop -q > output.out 2>&1 &&
252 test_must_be_empty output.out
255 test_expect_success
'stash -k' '
260 test bar,bar4 = $(cat file),$(cat file2)
263 test_expect_success
'stash --no-keep-index' '
265 echo bar44 > file2 &&
267 git stash --no-keep-index &&
268 test bar,bar2 = $(cat file),$(cat file2)
271 test_expect_success
'stash --invalid-option' '
275 test_must_fail git stash --invalid-option &&
276 test_must_fail git stash save --invalid-option &&
277 test bar5,bar6 = $(cat file),$(cat file2)
280 test_expect_success
'stash an added file' '
284 git stash save "added file" &&
287 test new = "$(cat file3)"
290 test_expect_success
'stash rm then recreate' '
294 git stash save "rm then recreate" &&
295 test bar = "$(cat file)" &&
297 test bar7 = "$(cat file)"
300 test_expect_success
'stash rm and ignore' '
303 echo file >.gitignore &&
304 git stash save "rm and ignore" &&
305 test bar = "$(cat file)" &&
306 test file = "$(cat .gitignore)" &&
309 test file = "$(cat .gitignore)"
312 test_expect_success
'stash rm and ignore (stage .gitignore)' '
315 echo file >.gitignore &&
316 git add .gitignore &&
317 git stash save "rm and ignore (stage .gitignore)" &&
318 test bar = "$(cat file)" &&
319 ! test -r .gitignore &&
322 test file = "$(cat .gitignore)"
325 test_expect_success SYMLINKS
'stash file to symlink' '
329 git stash save "file to symlink" &&
331 test bar = "$(cat file)" &&
333 case "$(ls -l file)" in *" file -> file2") :;; *) false;; esac
336 test_expect_success SYMLINKS
'stash file to symlink (stage rm)' '
340 git stash save "file to symlink (stage rm)" &&
342 test bar = "$(cat file)" &&
344 case "$(ls -l file)" in *" file -> file2") :;; *) false;; esac
347 test_expect_success SYMLINKS
'stash file to symlink (full stage)' '
352 git stash save "file to symlink (full stage)" &&
354 test bar = "$(cat file)" &&
356 case "$(ls -l file)" in *" file -> file2") :;; *) false;; esac
359 # This test creates a commit with a symlink used for the following tests
361 test_expect_success
'stash symlink to file' '
363 test_ln_s_add file filelink &&
364 git commit -m "Add symlink" &&
367 git stash save "symlink to file"
370 test_expect_success SYMLINKS
'this must have re-created the symlink' '
372 case "$(ls -l filelink)" in *" filelink -> file") :;; *) false;; esac
375 test_expect_success
'unstash must re-create the file' '
377 ! test -h filelink &&
378 test bar = "$(cat file)"
381 test_expect_success
'stash symlink to file (stage rm)' '
385 git stash save "symlink to file (stage rm)"
388 test_expect_success SYMLINKS
'this must have re-created the symlink' '
390 case "$(ls -l filelink)" in *" filelink -> file") :;; *) false;; esac
393 test_expect_success
'unstash must re-create the file' '
395 ! test -h filelink &&
396 test bar = "$(cat file)"
399 test_expect_success
'stash symlink to file (full stage)' '
404 git stash save "symlink to file (full stage)"
407 test_expect_success SYMLINKS
'this must have re-created the symlink' '
409 case "$(ls -l filelink)" in *" filelink -> file") :;; *) false;; esac
412 test_expect_success
'unstash must re-create the file' '
414 ! test -h filelink &&
415 test bar = "$(cat file)"
418 test_expect_failure
'stash directory to file' '
421 echo foo >dir/file &&
423 git commit -m "Add file in dir" &&
426 git stash save "directory to file" &&
428 test foo = "$(cat dir/file)" &&
429 test_must_fail git stash apply &&
430 test bar = "$(cat dir)" &&
431 git reset --soft HEAD^
434 test_expect_failure
'stash file to directory' '
438 echo foo >file/file &&
439 git stash save "file to directory" &&
441 test bar = "$(cat file)" &&
444 test foo = "$(cat file/file)"
447 test_expect_success
'stash branch - no stashes on stack, stash-like argument' '
449 test_when_finished "git reset --hard HEAD" &&
452 STASH_ID=$(git stash create) &&
454 git stash branch stash-branch ${STASH_ID} &&
455 test_when_finished "git reset --hard HEAD && git checkout master && git branch -D stash-branch" &&
456 test $(git ls-files --modified | wc -l) -eq 1
459 test_expect_success
'stash branch - stashes on stack, stash-like argument' '
461 test_when_finished "git reset --hard HEAD" &&
465 test_when_finished "git stash drop" &&
467 STASH_ID=$(git stash create) &&
469 git stash branch stash-branch ${STASH_ID} &&
470 test_when_finished "git reset --hard HEAD && git checkout master && git branch -D stash-branch" &&
471 test $(git ls-files --modified | wc -l) -eq 1
474 test_expect_success
'stash show format defaults to --stat' '
476 test_when_finished "git reset --hard HEAD" &&
480 test_when_finished "git stash drop" &&
482 STASH_ID=$(git stash create) &&
484 cat >expected <<-EOF &&
486 1 file changed, 1 insertion(+)
488 git stash show ${STASH_ID} >actual &&
489 test_i18ncmp expected actual
492 test_expect_success
'stash show - stashes on stack, stash-like argument' '
494 test_when_finished "git reset --hard HEAD" &&
498 test_when_finished "git stash drop" &&
500 STASH_ID=$(git stash create) &&
502 echo "1 0 file" >expected &&
503 git stash show --numstat ${STASH_ID} >actual &&
504 test_cmp expected actual
507 test_expect_success
'stash show -p - stashes on stack, stash-like argument' '
509 test_when_finished "git reset --hard HEAD" &&
513 test_when_finished "git stash drop" &&
515 STASH_ID=$(git stash create) &&
517 cat >expected <<-EOF &&
518 diff --git a/file b/file
519 index 7601807..935fbd3 100644
526 git stash show -p ${STASH_ID} >actual &&
527 test_cmp expected actual
530 test_expect_success
'stash show - no stashes on stack, stash-like argument' '
532 test_when_finished "git reset --hard HEAD" &&
535 STASH_ID=$(git stash create) &&
537 echo "1 0 file" >expected &&
538 git stash show --numstat ${STASH_ID} >actual &&
539 test_cmp expected actual
542 test_expect_success
'stash show -p - no stashes on stack, stash-like argument' '
544 test_when_finished "git reset --hard HEAD" &&
547 STASH_ID=$(git stash create) &&
549 cat >expected <<-EOF &&
550 diff --git a/file b/file
551 index 7601807..71b52c4 100644
558 git stash show -p ${STASH_ID} >actual &&
559 test_cmp expected actual
562 test_expect_success
'stash drop - fail early if specified stash is not a stash reference' '
564 test_when_finished "git reset --hard HEAD && git stash clear" &&
570 test_must_fail git stash drop $(git rev-parse stash@{0}) &&
572 test bar = "$(cat file)" &&
573 git reset --hard HEAD
576 test_expect_success
'stash pop - fail early if specified stash is not a stash reference' '
578 test_when_finished "git reset --hard HEAD && git stash clear" &&
584 test_must_fail git stash pop $(git rev-parse stash@{0}) &&
586 test bar = "$(cat file)" &&
587 git reset --hard HEAD
590 test_expect_success
'ref with non-existent reflog' '
596 test_must_fail git rev-parse --quiet --verify does-not-exist &&
597 test_must_fail git stash drop does-not-exist &&
598 test_must_fail git stash drop does-not-exist@{0} &&
599 test_must_fail git stash pop does-not-exist &&
600 test_must_fail git stash pop does-not-exist@{0} &&
601 test_must_fail git stash apply does-not-exist &&
602 test_must_fail git stash apply does-not-exist@{0} &&
603 test_must_fail git stash show does-not-exist &&
604 test_must_fail git stash show does-not-exist@{0} &&
605 test_must_fail git stash branch tmp does-not-exist &&
606 test_must_fail git stash branch tmp does-not-exist@{0} &&
610 test_expect_success
'invalid ref of the form stash@{n}, n >= N' '
612 test_must_fail git stash drop stash@{0} &&
617 test_must_fail git stash drop stash@{1} &&
618 test_must_fail git stash pop stash@{1} &&
619 test_must_fail git stash apply stash@{1} &&
620 test_must_fail git stash show stash@{1} &&
621 test_must_fail git stash branch tmp stash@{1} &&
625 test_expect_success
'invalid ref of the form "n", n >= N' '
627 test_must_fail git stash drop 0 &&
632 test_must_fail git stash drop 1 &&
633 test_must_fail git stash pop 1 &&
634 test_must_fail git stash apply 1 &&
635 test_must_fail git stash show 1 &&
636 test_must_fail git stash branch tmp 1 &&
640 test_expect_success
'stash branch should not drop the stash if the branch exists' '
644 git commit -m initial &&
647 test_must_fail git stash branch master stash@{0} &&
648 git rev-parse stash@{0} --
651 test_expect_success
'stash apply shows status same as git status (relative to current directory)' '
653 echo 1 >subdir/subfile1 &&
654 echo 2 >subdir/subfile2 &&
655 git add subdir/subfile1 &&
656 git commit -m subdir &&
661 git status >../expect &&
663 sane_unset GIT_MERGE_VERBOSITY &&
666 sed -e 1,2d >actual && # drop "Saved..." and "HEAD is now..."
667 test_i18ncmp expect actual
671 diff --git a/HEAD b/HEAD
673 index 0000000..fe0cbee
680 test_expect_success
'stash where working directory contains "HEAD" file' '
683 echo file-not-a-ref > HEAD &&
687 git diff-files --quiet &&
688 git diff-index --cached --quiet HEAD &&
689 test "$(git rev-parse stash^)" = "$(git rev-parse HEAD)" &&
690 git diff stash^..stash > output &&
691 test_cmp output expect
694 test_expect_success
'store called with invalid commit' '
695 test_must_fail git stash store foo
698 test_expect_success
'store updates stash ref and reflog' '
703 STASH_ID=$(git stash create) &&
706 git stash store -m quuxery $STASH_ID &&
707 test $(cat .git/refs/stash) = $STASH_ID &&
708 git reflog --format=%H stash| grep $STASH_ID &&
713 test_expect_success
'handle stash specification with spaces' '
717 stamp=$(git log -g --format="%cd" -1 refs/stash) &&
721 git stash apply "stash@{$stamp}" &&
725 test_expect_success
'setup stash with index and worktree changes' '
730 echo working >file &&
734 test_expect_success
'stash list implies --first-parent -m' '
735 cat >expect <<-EOF &&
738 diff --git a/file b/file
739 index 257cc56..d26b33d 100644
746 git stash list --format=%gd -p >actual &&
747 test_cmp expect actual
750 test_expect_success
'stash list --cc shows combined diff' '
751 cat >expect <<-\EOF &&
755 index 257cc56,9015a7a..d26b33d
758 @@@ -1,1 -1,1 +1,1 @@@
763 git stash list --format=%gd -p --cc >actual &&
764 test_cmp expect actual
767 test_expect_success
'stash is not confused by partial renames' '
772 test_path_is_file renamed &&
773 test_path_is_missing file
776 test_expect_success
'push -m shows right message' '
779 git stash push -m "test message" &&
780 echo "stash@{0}: On master: test message" >expect &&
781 git stash list -1 >actual &&
782 test_cmp expect actual
785 test_expect_success
'create stores correct message' '
788 STASH_ID=$(git stash create "create test message") &&
789 echo "On master: create test message" >expect &&
790 git show --pretty=%s -s ${STASH_ID} >actual &&
791 test_cmp expect actual
794 test_expect_success
'create with multiple arguments for the message' '
797 STASH_ID=$(git stash create test untracked) &&
798 echo "On master: test untracked" >expect &&
799 git show --pretty=%s -s ${STASH_ID} >actual &&
800 test_cmp expect actual
803 test_expect_success
'stash -- <pathspec> stashes and restores the file' '
807 git stash push -- foo &&
808 test_path_is_file bar &&
809 test_path_is_missing foo &&
811 test_path_is_file foo &&
812 test_path_is_file bar
815 test_expect_success
'stash with multiple pathspec arguments' '
819 git add foo bar extra &&
820 git stash push -- foo bar &&
821 test_path_is_missing bar &&
822 test_path_is_missing foo &&
823 test_path_is_file extra &&
825 test_path_is_file foo &&
826 test_path_is_file bar &&
827 test_path_is_file extra
830 test_expect_success
'stash with file including $IFS character' '
835 git stash push -- "foo b*" &&
836 test_path_is_missing "foo bar" &&
837 test_path_is_file foo &&
838 test_path_is_file bar &&
840 test_path_is_file "foo bar" &&
841 test_path_is_file foo &&
842 test_path_is_file bar
845 test_expect_success
'stash with pathspec matching multiple paths' '
846 echo original >file &&
847 echo original >other-file &&
848 git commit -m "two" file other-file &&
849 echo modified >file &&
850 echo modified >other-file &&
851 git stash push -- "*file" &&
852 echo original >expect &&
853 test_cmp expect file &&
854 test_cmp expect other-file &&
856 echo modified >expect &&
857 test_cmp expect file &&
858 test_cmp expect other-file
861 test_expect_success
'stash push -p with pathspec shows no changes only once' '
864 git commit -m "tmp" &&
865 git stash push -p foo >actual &&
866 echo "No local changes to save" >expect &&
867 git reset --hard HEAD~ &&
868 test_cmp expect actual
871 test_expect_success
'stash push with pathspec shows no changes when there are none' '
874 git commit -m "tmp" &&
875 git stash push foo >actual &&
876 echo "No local changes to save" >expect &&
877 git reset --hard HEAD~ &&
878 test_cmp expect actual
881 test_expect_success
'stash push with pathspec not in the repository errors out' '
883 test_must_fail git stash push untracked &&
884 test_path_is_file untracked
887 test_expect_success
'untracked files are left in place when -u is not given' '
891 git stash push file &&
892 test_path_is_file untracked
895 test_expect_success
'stash without verb with pathspec' '
900 git stash -- "foo b*" &&
901 test_path_is_missing "foo bar" &&
902 test_path_is_file foo &&
903 test_path_is_file bar &&
905 test_path_is_file "foo bar" &&
906 test_path_is_file foo &&
907 test_path_is_file bar