我的.zshrc中有一些别名函数,例如gb
git branch
和gco
git checkout
。当我记住我正在创建,删除,检出等的完整分支名称时,这很有效。但是,我注意到完成不再起作用。以前,我可以做到
$ git checkout m<TAB>
如果那是分支的名称,它会自动完成master。但是,现在,当我使用时,我收到以下错误:
$ gco m<TAB>
_git:15: parse error: condition expected: 1
我不确定为什么会这样。看起来可能缺少一个论点,但我不确定原因。
编辑:
我在我的.zshrc文件中设置了git branch
和git checkout
的别名,如下所示:
alias gco='git checkout'
alias gb='git branch'
答案 0 :(得分:3)
经过一番挖掘之后,我找到了针对bash的同一问题的解决方案,它看起来与zsh一样好用。在定义了两个函数__define_git_completion
和__git_shortcut
之后,您可以调用__git_shortcut
来设置别名并在一次调用中完成。
__define_git_completion () {
eval "
_git_$2_shortcut () {
COMP_LINE=\"git $2\${COMP_LINE#$1}\"
let COMP_POINT+=$((4+${#2}-${#1}))
COMP_WORDS=(git $2 \"\${COMP_WORDS[@]:1}\")
let COMP_CWORD+=1
local cur words cword prev
_get_comp_words_by_ref -n =: cur words cword prev
_git_$2
}
"
}
__git_shortcut () {
type _git_$2_shortcut &>/dev/null || __define_git_completion $1 $2
alias $1="git $2 $3"
complete -o default -o nospace -F _git_$2_shortcut $1
}
__git_shortcut ga add
__git_shortcut gb branch # I use this one.
__git_shortcut gba branch -a
__git_shortcut gco checkout # and I use this one, too.
__git_shortcut gci commit -v
__git_shortcut gcia commit '-a -v'
__git_shortcut gd diff
__git_shortcut gdc diff --cached
__git_shortcut gds diff --stat
__git_shortcut gf fetch
__git_shortcut gl log
__git_shortcut glp log -p
__git_shortcut gls log --stat
答案 1 :(得分:0)
如果您希望自动完成功能正常工作,我相信您应该在.gitconfig中创建别名。但是你必须拼出git命令。
[alias]
gb = branch
gco = checkout
等...
您还可以添加如下别名:
git config –-global alias.gb branch
它们将附加到.gitconfig
欢呼声