ubuntu使用Git fatal: Unable to fin
2017-04-18 本文已影响0人
Godtoy
错误如下:
image.png
root@ubuntu-docker:/server# git clone https://github.com/zhaojunlike/nodejs-spider-shangbiao2.git
正克隆到 'nodejs-spider-shangbiao2'...
fatal: Unable to find remote helper for 'https'
我本地的ubuntu虚拟机,尝试克隆的时候报错,我翻阅了一下google的答案,下面是其中一个可行的方案总结。
#apt remove git
#apt install git-core
我们在/usr/lib/git-core可以发现一堆git可执行文件,我们需要让 git-remote-https可用,我需要把这个路径加入到我们的PATH
image.png#vim /etc/profile
或者
#echo "export PATH=/usr/lib/git-core:\$PATH">>/etc/profile
让环境变量生效
#source /etc/profile
image.png
在修改好path以后,git已经可以克隆
image.png