本文主要是介绍Git报错git: ‘remote-http‘ is not a git command. See ‘git --help‘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
- 一、问题描述
- 二、解决方法
一、问题描述
CentOS 7 下执行 git clone http://xxxx 命令时报错,Git 版本为 2.35.1 :
git: 'remote-http' is not a git command. See 'git --help'
二、解决方法
安装 libcurl-devel、curl-devel ,然后重新编译 git :
yum install libcurl-devel
yum install curl-devel
注意:重要的事情说三遍,安装后重新编译 git !
这篇关于Git报错git: ‘remote-http‘ is not a git command. See ‘git --help‘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!