From: SZEDER Gábor Date: Wed, 6 Aug 2008 15:45:23 +0000 (+0200) Subject: bash: remove redundant check for 'git stash apply' options X-Git-Tag: v1.6.0-rc3~24 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=5a7ebd4faab1430a6d4daef0636345709139e3b4;p=git-core%2Fgit.git bash: remove redundant check for 'git stash apply' options It will never trigger anyway because of the first check, and even if it would, it would not offer the command line option. Signed-off-by: SZEDER Gábor Acked-by: Shawn O. Pearce Signed-off-by: Junio C Hamano --- diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 3396e35d7..78189c1b7 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1439,7 +1439,7 @@ _git_stash () apply,--*) __gitcomp "--index" ;; - show,--*|apply,--*|drop,--*|pop,--*|branch,--*) + show,--*|drop,--*|pop,--*|branch,--*) COMPREPLY=() ;; show,*|apply,*|drop,*|pop,*|branch,*)