diff options
author | SZEDER Gábor <szeder@ira.uka.de> | 2010-10-10 23:39:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-10-13 15:08:59 -0700 |
commit | 8205ff8e9957039d508b5702e3b45fc9c4a55648 (patch) | |
tree | cc1c9c3597484d68919407d05022cf1488bfd2db | |
parent | c752e7f3e8d96a9673ad248addc9418164bd3ce6 (diff) | |
download | git-8205ff8e9957039d508b5702e3b45fc9c4a55648.tar.gz git-8205ff8e9957039d508b5702e3b45fc9c4a55648.tar.xz |
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>
-rwxr-xr-x | contrib/completion/git-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index f83f019ca..5e023d415 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)" ;; *) |