继续Compiler error - msgfmt command not found when compiling git on a shared hosting
在管理制作和安装最新的git之后,如何强制cpanel共享主机使用我的版本?
我的版本位于/home/<ME>/git/git-2.9.0
我用
编译了make脚本make -i prefix=/home/<ME>/bin all
echo $PATH;
列出变量中的路径。此外,路径附加到当前路径。
现在,我希望服务器以
响应/home/<ME>/bin/git
当我运行which git
答案 0 :(得分:0)
所以,安装后,二进制文件存储在
中
/home/<ME>/bin/bin/
因为我用
编译了 make -i prefix=/home/<ME>/bin all
PATH查找不是递归的。
(可选)将所有git二进制文件移动到/home/<me>/bin/
下的子目录
只需添加/home/<ME>/bin/
到当前的PATH。在.~/.bash_profile
并做
source ~/.bash_profile