CentOS 5.6 上安装 Gitolite 时出现问题
我按照官方文档指南了解如何安装 Gitolite 来创建我自己的存储库位于全新的 CentOS 服务器上。
当我到达必须输入以下命令的部分时:
gl-setup myPublicKey.pub
我在终端上收到 command not found
警告。
不知何故,我需要将别名或符号链接添加到 $HOME/bin/gl-setup
,但我不知道该怎么做。
有人知道如何帮助我吗?
谢谢!
I followed the official documentation guide on how to install Gitolite to create my own repository on a brand new CentOS server.
When I get to the part where I must put the following command:
gl-setup myPublicKey.pub
I get a command not found
warning on terminal.
Somehow I need to put an alias or symbolic link to the $HOME/bin/gl-setup
, but I don't know how to do that.
Does anybody know how to help me?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能只需将“$HOME/bin”添加到您的路径中即可。
编辑 $HOME/.bash_profile 并将行:
附加到其末尾(我猜测您正在使用默认的 bash shell)。获取文件(或注销登录),您应该就可以开始了。
You can probably just add "$HOME/bin" to your PATH.
Edit your $HOME/.bash_profile and append the line:
to the end of it (I'm guessing that you're using the default bash shell). Source the file (or logout-login) and you should be good to go.
从客户端使用 gl-easy-setup。
Use the gl-easy-setup from the client side.