diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-06-15 18:43:24 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-17 09:22:12 -0700 |
commit | 0719f300870cb573dcb526c7ab0cdffc5ee54324 (patch) | |
tree | 961cabf2fa05e8b4c59056975a6123737509a370 /git-stash.sh | |
parent | stash doc: document short form -p in synopsis (diff) | |
download | tgif-0719f300870cb573dcb526c7ab0cdffc5ee54324.tar.xz |
stash: simplify option parser for create
The option parser for create unnecessarily checks "$1" inside a case
statement that matches "$1" in the first place.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-stash.sh')
-rwxr-xr-x | git-stash.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/git-stash.sh b/git-stash.sh index bbefdf6424..64800b8c94 100755 --- a/git-stash.sh +++ b/git-stash.sh @@ -546,10 +546,7 @@ clear) clear_stash "$@" ;; create) - if test $# -gt 0 && test "$1" = create - then - shift - fi + shift create_stash "$*" && echo "$w_commit" ;; drop) |