如何在Linux上安装没有管理员权限(本地)的Git?
由于缺少依赖项库,从source编译并安装make
和make install
不起作用。
答案 0 :(得分:1)
将source code下载到您的主目录并解压缩。
某些依赖库是可选的,可以禁用。以下将禁用所有这些。您可以尝试禁用缺少的那些,看看您的安装是否成功。
make prefix=~/local/git NO_PERL=YesPlease NO_OPENSSL=YesPlease NO_CURL=YesPlease NO_TCLTK=YesPlease NO_EXPAT=YesPlease NO_GETTEXT=YesPlease
make prefix=~/local/git NO_PERL=YesPlease NO_OPENSSL=YesPlease NO_CURL=YesPlease NO_TCLTK=YesPlease NO_EXPAT=YesPlease NO_GETTEXT=YesPlease install