Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamkumar Ramachandra <artagnon@gmail.com>2013-06-15 17:13:24 +0400
committerJunio C Hamano <gitster@pobox.com>2013-06-17 20:22:12 +0400
commit0719f300870cb573dcb526c7ab0cdffc5ee54324 (patch)
tree961cabf2fa05e8b4c59056975a6123737509a370 /git-stash.sh
parentaa7e722dfee957e89476d0467427a5a32d0040f7 (diff)
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-xgit-stash.sh5
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)