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:
authorSZEDER Gábor <szeder@ira.uka.de>2008-08-06 19:45:23 +0400
committerJunio C Hamano <gitster@pobox.com>2008-08-09 03:10:39 +0400
commit5a7ebd4faab1430a6d4daef0636345709139e3b4 (patch)
tree5c7295fe7b254e5ce9a8e759b8314e355ac37064 /contrib
parentb13d44093bac2eb75f37be01f0e369290211472c (diff)
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 <szeder@ira.uka.de> Acked-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/completion/git-completion.bash2
1 files changed, 1 insertions, 1 deletions
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,*)