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.
我遵循了关于如何安装 Gitolite 的官方文档指南,以在全新的 CentOS 服务器上创建我自己的存储库。
当我到达必须输入以下命令的部分时:
gl-setup myPublicKey.pub
我在终端上收到command not found警告。
command not found
不知何故,我需要将别名或符号链接添加到$HOME/bin/gl-setup,但我不知道该怎么做。
$HOME/bin/gl-setup
有人知道如何帮助我吗?
谢谢!
您可能只需将“$HOME/bin”添加到您的 PATH 中。
编辑您的 $HOME/.bash_profile 并附加以下行:
PATH=$PATH:$HOME/bin ; export PATH
到最后(我猜你正在使用默认的 bash shell)。获取文件(或注销登录),您应该一切顺利。
从客户端使用 gl-easy-setup。