Skip to content

Commit 6fac1b8

Browse files
bebarinogitster
authored andcommitted
completion: add missing config variables
Update to include branch.*.rebase, remote.*.pushurl, and add.ignore-errors Signed-off-by: Stephen Boyd <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b8e8db2 commit 6fac1b8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

contrib/completion/git-completion.bash

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1457,7 +1457,7 @@ _git_config ()
14571457
branch.*.*)
14581458
local pfx="${cur%.*}."
14591459
cur="${cur##*.}"
1460-
__gitcomp "remote merge mergeoptions" "$pfx" "$cur"
1460+
__gitcomp "remote merge mergeoptions rebase" "$pfx" "$cur"
14611461
return
14621462
;;
14631463
branch.*)
@@ -1504,7 +1504,7 @@ _git_config ()
15041504
cur="${cur##*.}"
15051505
__gitcomp "
15061506
url proxy fetch push mirror skipDefaultUpdate
1507-
receivepack uploadpack tagopt
1507+
receivepack uploadpack tagopt pushurl
15081508
" "$pfx" "$cur"
15091509
return
15101510
;;
@@ -1522,6 +1522,7 @@ _git_config ()
15221522
;;
15231523
esac
15241524
__gitcomp "
1525+
add.ignore-errors
15251526
alias.
15261527
apply.whitespace
15271528
branch.autosetupmerge

0 commit comments

Comments
 (0)