安装git
yum install git
检查git版本
git –version
发现不是较新的版本或者是我们想要的版本
移除该版本git
yum remove git
下载编译工具
yum -y groupinstall Development Tools
下载依赖包
yum -y install zlib-devel perl-ExtUtils-MakeMaker asciidoc xmlto openssl-devel
下载 Git 最新版本的源代码
wget https://www.kernel.org/pub/software/scm/git/git-2.32.0.tar.gz
登录https://github.com/git/git/releases查看git的最新版。不要下载带有-rc的,因为它代表了一个候选发布版本。
https://github.com/git/git/archive/refs/tags/v2.32.0.tar.gz
解压
tar -zxvf git-2.9.5.tar.gz
进入目录配置
cd git-2.32.0
./configure –prefix=/usr/local/git
安装
make && make install
配置全局路径
export PATH="/usr/local/git/bin:$PATH"
source /etc/profile
以上是使用yum在Centos7上安装Git服务器的详细内容。更多信息请关注PHP中文网其他相关文章!