mirror of
https://github.com/git/git.git
synced 2024-11-30 21:44:02 +08:00
completion: complete refs for "git commit -c"
The "-c" and "-C" options take an existing commit, so let's complete refs, just as we would for --squash or --fixup. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
790c83cda9
commit
6853975857
@ -971,6 +971,13 @@ _git_commit ()
|
||||
{
|
||||
__git_has_doubledash && return
|
||||
|
||||
case "$prev" in
|
||||
-c|-C)
|
||||
__gitcomp_nl "$(__git_refs)" "" "${cur}"
|
||||
return
|
||||
;;
|
||||
esac
|
||||
|
||||
case "$cur" in
|
||||
--cleanup=*)
|
||||
__gitcomp "default strip verbatim whitespace
|
||||
|
Loading…
Reference in New Issue
Block a user