1

tig通过安装Homebrew并且tig工作正常,但是有没有办法也通过而不是从源代码干净地安装其man页面(即避免如https://github.com/jonas/tig/blob/master/INSTALL.adoc所述)brewmake install-doc

4

1 回答 1

1

如果您使用标准安装目录安装 Homebrew,即 /opt/homebrew 的相对目录,则有 2 个命令可以注册要使用的二进制文件和 man 文件:

/usr/bin/sudo -s
echo /opt/homebrew/bin >/etc/paths.d/homebrew
echo /opt/homebrew/share/man >/etc/manpaths.d/homebrew
exit

如果您使用 bash 或 zsh 作为实际的 shell,则必须输入一个简单的命令来考虑这 2 个环境修改:

. /etc/profile

如果您想了解更多如何在 MacOS X 下使用这两个目录,请阅读:

man path_helper

——丹尼尔·阿祖洛斯

于 2016-06-23T15:43:31.597 回答