Skip to content

Commit

Permalink
completion: add missing config variables
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Stephen Boyd authored and Junio C Hamano committed Jun 30, 2009
1 parent b8e8db2 commit 6fac1b8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions contrib/completion/git-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,7 @@ _git_config ()
branch.*.*)
local pfx="${cur%.*}."
cur="${cur##*.}"
__gitcomp "remote merge mergeoptions" "$pfx" "$cur"
__gitcomp "remote merge mergeoptions rebase" "$pfx" "$cur"
return
;;
branch.*)
Expand Down Expand Up @@ -1504,7 +1504,7 @@ _git_config ()
cur="${cur##*.}"
__gitcomp "
url proxy fetch push mirror skipDefaultUpdate
receivepack uploadpack tagopt
receivepack uploadpack tagopt pushurl
" "$pfx" "$cur"
return
;;
Expand All @@ -1522,6 +1522,7 @@ _git_config ()
;;
esac
__gitcomp "
add.ignore-errors
alias.
apply.whitespace
branch.autosetupmerge
Expand Down

0 comments on commit 6fac1b8

Please sign in to comment.