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: https://git.lorimer.id.au/gitweb.git/diff_plain/5a7ebd4faab1430a6d4daef0636345709139e3b4?hp=--cc 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 --- 5a7ebd4faab1430a6d4daef0636345709139e3b4 diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 3396e35d76..78189c1b7b 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,*)