Install git
yum install git
Check git version
git –version
Found that it is not a newer version or the version we want
Remove this version git
yum remove git
Download the compilation tool
yum -y groupinstall Development Tools
Download dependency package
##yum -y install zlib-devel perl-ExtUtils-MakeMaker asciidoc xmlto openssl- develDownload the source code of the latest version of Git
wget https://www.kernel.org/pub/software/scm/git/git-2.32.0 .tar.gzLog in to https://github.com/git/git/releases to view the latest version of git. Do not download with -rc as it represents a release candidate. https://github.com/git/git/archive/refs/tags/v2.32.0.tar.gzUnzip
tar -zxvf git-2.9.5.tar.gzEnter directory configuration
cd git-2.32.0Install./configure –prefix=/usr/local/ git
make && make installConfigure global path
export PATH="/ usr/local/git/bin:$PATH"source /etc/profile
The above is the detailed content of Install Git server on Centos7 using yum. For more information, please follow other related articles on the PHP Chinese website!