summaryrefslogtreecommitdiff
path: root/t/t3903-stash.sh
diff options
context:
space:
mode:
authorThomas Gummerer <t.gummerer@gmail.com>2017-03-21 22:12:17 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-03-22 21:55:11 (GMT)
commit1790f4fea04c2401feda0c96e35a3b50b1ba4fe3 (patch)
treeb0444e7b4f67395d451894b7eea9a955111cdf42 /t/t3903-stash.sh
parent9e140909f611fff720efc914b7186b8e4ab722cd (diff)
downloadgit-1790f4fea04c2401feda0c96e35a3b50b1ba4fe3.zip
git-1790f4fea04c2401feda0c96e35a3b50b1ba4fe3.tar.gz
git-1790f4fea04c2401feda0c96e35a3b50b1ba4fe3.tar.bz2
stash: don't show internal implementation details
git stash push uses other git commands internally. Currently it only passes the -q flag to those if the -q flag is passed to git stash. when using 'git stash push -p -q --no-keep-index', it doesn't even pass the flag on to the internal reset at all. It really is enough for the user to know that the stash is created, without bothering them with the internal details of what's happening. Always pass the -q flag to the internal git clean and git reset commands, to avoid unnecessary and potentially confusing output. Reported-by: Jeff King <peff@peff.net> Signed-off-by: Thomas Gummerer <t.gummerer@gmail.com> Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3903-stash.sh')
-rwxr-xr-xt/t3903-stash.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh
index 89877e4..6e15f3d 100755
--- a/t/t3903-stash.sh
+++ b/t/t3903-stash.sh
@@ -663,7 +663,7 @@ test_expect_success 'stash apply shows status same as git status (relative to cu
sane_unset GIT_MERGE_VERBOSITY &&
git stash apply
) |
- sed -e 1,2d >actual && # drop "Saved..." and "HEAD is now..."
+ sed -e 1d >actual && # drop "Saved..."
test_i18ncmp expect actual
'