aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-04-30 14:49:43 -0700
committerJunio C Hamano <gitster@pobox.com>2024-04-30 14:49:43 -0700
commit90f6b5a597c083d898fcc5d3ae3dbb50779b72a6 (patch)
treeb77fb2106f5d20b3e2f150eeb9e206a5594c72c5 /t
parent708e9257f8045e00dca1241ab13c1e8033ead41c (diff)
parent5fb768640976a9f004925045e51d60ba5a903490 (diff)
downloadgit-90f6b5a597c083d898fcc5d3ae3dbb50779b72a6.tar.gz
Merge branch 'aj/stash-staged-fix'
"git stash -S" did not handle binary files correctly, which has been corrected. * aj/stash-staged-fix: stash: fix "--staged" with binary files
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 00db82fb24..a7f71f8126 100755
--- a/t/t3903-stash.sh
+++ b/t/t3903-stash.sh
@@ -393,6 +393,15 @@ test_expect_success 'stash --staged' '
test bar,bar4 = $(cat file),$(cat file2)
'
+test_expect_success 'stash --staged with binary file' '
+ printf "\0" >file &&
+ git add file &&
+ git stash --staged &&
+ git stash pop &&
+ printf "\0" >expect &&
+ test_cmp expect file
+'
+
test_expect_success 'dont assume push with non-option args' '
test_must_fail git stash -q drop 2>err &&
test_grep -e "subcommand wasn'\''t specified; '\''push'\'' can'\''t be assumed due to unexpected token '\''drop'\''" err