summaryrefslogtreecommitdiff
path: root/contrib/completion
diff options
context:
space:
mode:
authorSZEDER Gábor <szeder@ira.uka.de>2010-10-10 21:39:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-10-13 22:08:59 (GMT)
commit8205ff8e9957039d508b5702e3b45fc9c4a55648 (patch)
treecc1c9c3597484d68919407d05022cf1488bfd2db /contrib/completion
parentc752e7f3e8d96a9673ad248addc9418164bd3ce6 (diff)
downloadgit-8205ff8e9957039d508b5702e3b45fc9c4a55648.zip
git-8205ff8e9957039d508b5702e3b45fc9c4a55648.tar.gz
git-8205ff8e9957039d508b5702e3b45fc9c4a55648.tar.bz2
bash: offer refs for 'git bisect start'
The completion script only offered path completion after 'git bisect start', although bad and good refs could also be specified before the doubledash. Signed-off-by: SZEDER Gábor <szeder@ira.uka.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion')
-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 f83f019..5e023d4 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -912,7 +912,7 @@ _git_bisect ()
fi
case "$subcommand" in
- bad|good|reset|skip)
+ bad|good|reset|skip|start)
__gitcomp "$(__git_refs)"
;;
*)