系统用的git版本,有点低。这里打算升级下。这里采用源代码的方式进行安装。GIT的升级分为,三个步骤。

  1. 卸载老的版本
  2. 安装依赖
  3. 安装新版本

卸载老版本前,先获得最新的代码

git clone https://github.com/git/git.git

具体的步骤

卸载老的版本

yum remove -y git

安装依赖

yum install curl -y
yum install curl-devel -y
yum install zlib-devel -y
yum install openssl-devel -y
yum install perl -y
yum install cpio -y 
yum install expat-devel -y
yum install gettext-devel -y

进入新版安装

cd git
autoconf
./configure --prefix=/usr/local/git
make 
make install
# 加入路径
echo "\$PAHT=\$PATH:/usr/local/git" >> /etc/profile
source /etc/profile

标签: none

仅有一条评论

  1. 亚马逊跨境电商运营从入门到精通

    必须顶的。。。。。。。。。

添加新评论