From: Thomas Gummerer Date: Tue, 21 Mar 2017 22:12:17 +0000 (+0000) Subject: stash: don't show internal implementation details X-Git-Tag: v2.13.0-rc0~58^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/1790f4fea04c2401feda0c96e35a3b50b1ba4fe3?hp=1790f4fea04c2401feda0c96e35a3b50b1ba4fe3 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 Signed-off-by: Thomas Gummerer Reviewed-by: Jeff King Signed-off-by: Junio C Hamano ---