Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我说“git checkout”时,我希望 zsh 自动完成我的 git 分支的名称。那可能吗?
最简单的方法(可能也是唯一不需要大量黑客攻击的方法)是更新 zsh。在我的zsh 4.3.9自动完成功能适用于 git 分支。
zsh 4.3.9
通过将其添加到我的 git autocomplete 以在 zsh 中工作.zshrc:
.zshrc
autoload -Uz compinit && compinit
信用:https ://stackoverflow.com/a/67627099/480608