Skip to content

Commit

Permalink
bash: offer refs for 'git bisect start'
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
SZEDER Gábor authored and Junio C Hamano committed Oct 13, 2010
1 parent c752e7f commit 8205ff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/completion/git-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ _git_bisect ()
fi

case "$subcommand" in
bad|good|reset|skip)
bad|good|reset|skip|start)
__gitcomp "$(__git_refs)"
;;
*)
Expand Down

0 comments on commit 8205ff8

Please sign in to comment.