summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2019-07-25 13:59:23 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2019-07-25 13:59:23 -0700
commitf8aee8576ac5e01fa993c80b5b888af214c03758 (patch)
treeefd02db445dc51f284d3afddcefd9dcd7e5ac6c1 /t
parentMerge branch 'sr/gpg-interface-stop-at-the-end' (diff)
parentstash: fix handling removed files with --keep-index (diff)
downloadtgif-f8aee8576ac5e01fa993c80b5b888af214c03758.tar.xz
Merge branch 'tg/stash-keep-index-with-removed-paths'
"git stash --keep-index" did not work correctly on paths that have been removed, which has been fixed. * tg/stash-keep-index-with-removed-paths: stash: fix handling removed files with --keep-index
Diffstat (limited to 't')
-rwxr-xr-xt/t3903-stash.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh
index b22e671608..b8e337893f 100755
--- a/t/t3903-stash.sh
+++ b/t/t3903-stash.sh
@@ -1234,4 +1234,11 @@ test_expect_success 'stash works when user.name and user.email are not set' '
)
'
+test_expect_success 'stash --keep-index with file deleted in index does not resurrect it on disk' '
+ test_commit to-remove to-remove &&
+ git rm to-remove &&
+ git stash --keep-index &&
+ test_path_is_missing to-remove
+'
+
test_done