git安装后报git: ‘remote-https‘ is not a git command. See ‘git --help‘.

1. 问题说明

    使用的是linux系统,采用编译安装的方式进行安装,安装完成clone项目后提示“git: ‘remote-https’ is not a git command. See ‘git --help’.”

2. 问题解决

    需要安装1个额外的库:libcurl4-openssl-de

sudo apt-get install libcurl4-openssl-de

    安装完成后再将git重新编译安装,然后再Clone项目,搞定!

3. 补充

    若以上方式还是不行,尝试安装curl

sudo apt-get install curl

你可能感兴趣的:(常见问题处理,git)