stash save: fix parameter handling

A command line "git stash save --keep-index I was doing this" was
misparsed and keep-index codepath did not trigger.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2008-07-23 13:33:44 -07:00
parent c8fe1980b2
commit 47629dcff0

View file

@ -93,7 +93,7 @@ save_stash () {
shift
esac
stash_msg="$1"
stash_msg="$*"
if no_changes
then
@ -267,7 +267,7 @@ show)
;;
save)
shift
save_stash "$*"
save_stash "$@"
;;
apply)
shift