使用 zsh 之后,git checkout 按 tab 键自动完成时会在分支名称前加自动加上 origin/ ,请问如何解决?
origin/
当分支名称中包含斜杠 / 时就会出现这个问题。
/
在 stackexchange 上 zsh git command auto-complete add extra origin to the git branch name 的回答中找了解决方法,在 .zshrc 的 plugins 中添加 gitfast 。
plugins=(git gitfast)