美文网首页沙大斌
ubuntu使用Git fatal: Unable to fin

ubuntu使用Git fatal: Unable to fin

作者: Godtoy | 来源:发表于2017-04-18 09:33 被阅读0次

    错误如下:


    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

    相关文章

      网友评论

        本文标题:ubuntu使用Git fatal: Unable to fin

        本文链接:https://www.haomeiwen.com/subject/xvqfzttx.html