zsh 中 git checkout 自动完成问题

2020-02-07 19:54发布

问题:

使用 zsh 之后,git checkout 按 tab 键自动完成时会在分支名称前加自动加上 origin/ ,请问如何解决?

回答1:

在 stackexchange 上 zsh git command auto-complete add extra origin to the git branch name 的回答中找了解决方法,在 .zshrc 的 plugins 中添加 gitfast 。

plugins=(git gitfast)


标签: shell zsh