这与Disable auto-completion of remote branches in Git Bash?有关。
任何人都知道如何使用zsh做同样的事情?
答案 0 :(得分:9)
zstyle :completion::complete:git-checkout:argument-rest:headrefs command "git for-each-ref --format='%(refname)' refs/heads 2>/dev/null"
说明:
键入git checkout <Control-x><h>
会调用_complete_help
,如果您在当前上下文中按下TAB(而不是按<Control-x><h>
),则会显示zsh的完成系统将如何操作的内部结构。从中可以看出zsh会调用__git_heads
函数来完成git branch头的名称。如果您再键入which __git_heads
,则可以看到这些分支头名称是通过以下方式获得的:
_call_program headrefs git for-each-ref --format='"%(refname)"' refs/heads refs/remotes 2>/dev/null
幸运的是,_call_program
专门设计用于允许用户更改默认行为。因此,上面的zstyle
命令指示zsh使用替代git for-each-ref ...
调用而不是内置调用,您可以看到在上面的调用中,我删除了refs/remotes
参数。 zstyle
的第一个参数是完成上下文,这里的意思是“当用户完成headrefs
的参数时,只要完成系统请求完成git checkout
标记。所以这zstyle
只会影响git checkout
,而不会影响任何其他git
子命令。
答案 1 :(得分:2)
通过输入git checkout <Ctrl-X><H>
,您会看到一堆标签,其中一些似乎相关:
$ git checkout
tags in context :completion::complete:git-checkout:argument-rest:
remote-branch-names-noprefix (__git_describe_branch __git_describe_commit __git_remote_branch_names_noprefix _git-checkout _git)
heads-remote (__git_describe_branch __git_describe_commit __git_heads_remote __git_heads __git_commits __git_tree_ishs _git-checkout _git)
[...]
乍一看,我们需要更改remote-branch-names-noprefix
的行为,以停止提供没有前缀的远程分支名称。
要仔细检查,让我们看看这些标签与哪些条目相关联,请使用:
$ zstyle ':completion:*' group-name ''
$ zstyle ':completion:*' format 'Completing "%d":'
$ git checkout T<Tab>
Completing "remote branch name":
T3522-plugins_and_stuff T7482
Completing "local head":
T7626-async
在上面标记名称后面的括号中,有一系列命令导致为该标记生成自动完成条目。在remote-branch-names-noprefix
链中,您可以看到__git_remote_branch_names_noprefix
似乎相关。查看/usr/share/zsh/functions/Completion/Unix/_git
:
(( $+functions[__git_remote_branch_names_noprefix] )) ||
__git_remote_branch_names_noprefix () {
declare -a heads
branch_names=(${${${${(f)"$(_call_program remote-branch-refs-noprefix git for-each-ref --format='"%(refname)"' refs/remotes 2>/dev/null)"}#refs/remotes/}#*/}:#HEAD})
__git_command_successful $pipestatus || return 1
__git_describe_commit branch_names remote-branch-names-noprefix 'remote branch name' "$@"
}
您可以看到_call_program
如何用来定义remote-branch-refs-noprefix
。我们想在git-checkout
的情况下更改此定义。通过将其替换为“echo”,它将停止提供自动完成条目:
zstyle ':completion::complete:git-checkout:argument-rest:remote-branch-refs-noprefix' command "echo"
答案 2 :(得分:1)
__git_heads
现在似乎只检查本地分支,但完成文件会调用__git_refs
。
我将此修补程序应用于git-completion.bash
,并通过zsh _git
命令代理来解决此问题:
--- git-completion.bash.old 2015-04-02 16:09:38.000000000 -0700
+++ git-completion.bash 2015-04-02 16:10:24.000000000 -0700
@@ -1032,13 +1032,7 @@
"
;;
*)
- # check if --track, --no-track, or --no-guess was specified
- # if so, disable DWIM mode
- local flags="--track --no-track --no-guess" track=1
- if [ -n "$(__git_find_on_cmdline "$flags")" ]; then
- track=''
- fi
- __gitcomp_nl "$(__git_refs '' $track)"
+ __gitcomp_nl "$(__git_heads)"
;;
esac
}
这不是一个完美的解决方案,但它适用于我的用例并且可以立即完成,而不是10秒。
答案 3 :(得分:0)
没有人回答不帮助我。试试这个:
$ git checkout <Ctrl+X><H>
tags in context :completion::complete:git::
argument-rest (_arguments _git)
tags in context :completion::complete:git-checkout::
argument-rest options (_arguments _git-checkout _call_function _git)
tags in context :completion::complete:git-checkout:argument-rest:
remote branches tree-ishs modified-files (_alternative _git-checkout _call_function _git)
remote-branch-names-noprefix (__git_remote_branch_names_noprefix _alternative _git-checkout _call_function _git)
heads commit-tags commit-objects (_alternative __git_commits __git_tree_ishs _alternative _git-checkout _call_function _git)
heads-local (__git_heads_local __git_heads _alternative __git_commits __git_tree_ishs _alternative _git-checkout _call_function _git)
commit-tags (__git_tags_of_type __git_commit_tags _alternative __git_commits __git_tree_ishs _alternative _git-checkout _call_function _git)
modified-files (__git_files __git_modified_files _alternative _git-checkout _call_function _git)
您可以在此输出函数中找到,它会生成命令的完成。您可以覆盖.zshrc
上的任何此功能。将此放在配置文件的最顶层:
__git_heads_remote() {}
之后,您将无法在完成时看到远程头部。您可以为任何功能执行此操作。
答案 4 :(得分:-1)
您可以通过将此行添加到git checkout
文件来禁用.zshrc
上的自动完成功能:
compdef -d git checkout