summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-12-19 22:45:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-12-19 22:45:33 (GMT)
commitdb09f21bbd74d87ef26c059d39442518c44a422c (patch)
treea460e6c7edc86d9620ae0f7e7dd41824761079d5 /t
parentda72ee87fb5f27f44b1b48a18765ab1c6280f070 (diff)
parent9d4e28ead5bf133d014dfc9e9345f6bf083eefea (diff)
downloadgit-db09f21bbd74d87ef26c059d39442518c44a422c.zip
git-db09f21bbd74d87ef26c059d39442518c44a422c.tar.gz
git-db09f21bbd74d87ef26c059d39442518c44a422c.tar.bz2
Merge branch 'jk/stash-disable-renames-internally'
When diff.renames configuration is on (and with Git 2.9 and later, it is enabled by default, which made it worse), "git stash" misbehaved if a file is removed and another file with a very similar content is added. * jk/stash-disable-renames-internally: stash: prefer plumbing over git-diff
Diffstat (limited to 't')
-rwxr-xr-xt/t3903-stash.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh
index e1a6ccc..2de3e18 100755
--- a/t/t3903-stash.sh
+++ b/t/t3903-stash.sh
@@ -766,4 +766,13 @@ test_expect_success 'stash list --cc shows combined diff' '
test_cmp expect actual
'
+test_expect_success 'stash is not confused by partial renames' '
+ mv file renamed &&
+ git add renamed &&
+ git stash &&
+ git stash apply &&
+ test_path_is_file renamed &&
+ test_path_is_missing file
+'
+
test_done