【发布时间】:2020-09-18 08:20:27
【问题描述】:
当启动 [oh-my-zsh] 时,会显示几周后的消息
[oh-my-zsh] plugin 'git-remote-branch' not found
如何消除此错误消息?我不关心插件。
【问题讨论】:
当启动 [oh-my-zsh] 时,会显示几周后的消息
[oh-my-zsh] plugin 'git-remote-branch' not found
如何消除此错误消息?我不关心插件。
【问题讨论】:
https://github.com/webmat/git_remote_branch 的存储库 说这个插件不再维护了。
您可以在 zsh 配置文件中删除 shell 上的错误消息,如下所示:
在终端上执行:
nano ~/.zshrc
查找包含插件的行:
plugins=(... git-remote-branch ...)
删除
git-remote-branch
从那条线开始。
然后重启终端。
现在错误应该消失了。
【讨论】: