1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-22 16:20:23 +02:00

31289: _git: branch.*.pushremote, remote.pushdefault

The configuration variables branch.*.pushremote and remote.pushdefault
are relatively new, and are currently not completed by ZSH.  Fix this.

Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
This commit is contained in:
Ramkumar Ramachandra 2013-04-20 18:26:13 +05:30 committed by Frank Terbeck
parent d1a3075293
commit cbdedcfbfe
2 changed files with 5 additions and 0 deletions

View file

@ -3,6 +3,9 @@
* 31286: Completion/Unix/Command/_git: _git: add a couple of
browsers
* 31289: Completion/Unix/Command/_git: _git: branch.*.pushremote,
remote.pushdefault
2013-04-20 Torstein Hegge <hegge@resisty.net>
* 31159: Completion/Unix/Command/_git: git: Pass prefix filter to

View file

@ -1719,6 +1719,7 @@ _git-config () {
'branch.*.remote:what remote git fetch and git push should fetch form/push to::__git_remotes'
'branch.*.merge:default refspec to be marked for merging::__git_ref_specs'
'branch.*.mergeoptions:default options for merging::->branch.mergeoptions'
'branch.*.pushremote:what remote git push should push to::__git_remotes'
'branch.*.rebase:rebase on top of fetched branch::->bool:false'
'browser.*.cmd:browser command to use:browser:_path_commands'
'browser.*.path:path to use for the browser:absolute browser path:_files -g "*(*)"'
@ -1933,6 +1934,7 @@ _git-config () {
receive.denyCurrentBranch:'deny a ref update of currently checked out branch::->receive.denyCurrentBranch'
receive.denyNonFastForwards:'deny a ref update that is not a fast-forward::->bool:false'
receive.updateserverinfo:'run git update-server-info after receiving data::->bool:false'
'remote.pushdefault:URL of a remote repository to pushto::__git_any_repositories'
'remote.*.url:URL of a remote repository::__git_any_repositories'
'remote.*.pushurl:push URL of a remote repository::__git_any_repositories'
'remote.*.proxy:URL of proxy to use for a remote repository::_urls'