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>
This commit is contained in:
SZEDER Gábor 2010-10-10 23:39:33 +02:00 committed by Junio C Hamano
parent c752e7f3e8
commit 8205ff8e99

View File

@ -912,7 +912,7 @@ _git_bisect ()
fi
case "$subcommand" in
bad|good|reset|skip)
bad|good|reset|skip|start)
__gitcomp "$(__git_refs)"
;;
*)