解决Centos7集成IDEA报git版本太低问题
Centos 7 服务器上默认安装的 Git 是 1.8.3.1 版本的
与最新的IDEA已无法匹配,需要更新
- 首先,卸载老版本
sudo yum -y remove git
sudo yum -y remove git-*
- 添加 End Point 到 CentOS 7 仓库
sudo yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
- 安装Git
sudo yum -y install git
- 查看版本应该已经更新
git version