mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
completion: add missing config variables
Update to include branch.*.rebase, remote.*.pushurl, and add.ignore-errors Signed-off-by: Stephen Boyd <bebarino@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
b8e8db281c
commit
6fac1b83bd
1 changed files with 3 additions and 2 deletions
|
@ -1457,7 +1457,7 @@ _git_config ()
|
||||||
branch.*.*)
|
branch.*.*)
|
||||||
local pfx="${cur%.*}."
|
local pfx="${cur%.*}."
|
||||||
cur="${cur##*.}"
|
cur="${cur##*.}"
|
||||||
__gitcomp "remote merge mergeoptions" "$pfx" "$cur"
|
__gitcomp "remote merge mergeoptions rebase" "$pfx" "$cur"
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
branch.*)
|
branch.*)
|
||||||
|
@ -1504,7 +1504,7 @@ _git_config ()
|
||||||
cur="${cur##*.}"
|
cur="${cur##*.}"
|
||||||
__gitcomp "
|
__gitcomp "
|
||||||
url proxy fetch push mirror skipDefaultUpdate
|
url proxy fetch push mirror skipDefaultUpdate
|
||||||
receivepack uploadpack tagopt
|
receivepack uploadpack tagopt pushurl
|
||||||
" "$pfx" "$cur"
|
" "$pfx" "$cur"
|
||||||
return
|
return
|
||||||
;;
|
;;
|
||||||
|
@ -1522,6 +1522,7 @@ _git_config ()
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
__gitcomp "
|
__gitcomp "
|
||||||
|
add.ignore-errors
|
||||||
alias.
|
alias.
|
||||||
apply.whitespace
|
apply.whitespace
|
||||||
branch.autosetupmerge
|
branch.autosetupmerge
|
||||||
|
|
Loading…
Reference in a new issue