• rpm 파일을 사용해 yum update로 git 2.22 to 2.8 업데이트. (Update: Mar 24, 2021)

환경 구성

  • OS: CentOS 7
  • Git: v2.22 to v2.8

1. git binary 삭제 후 설치

[USER1@SVR1 ~]$ git --version
git version 2.22.0

[USER1@SVR1 ~]$ sudo yum remove git

[USER1@SVR1 ~]$ sudo yum install http://opensource.wandisco.com/centos/7/git/x86_64/git-2.8.0-1.WANdisco.308.x86_64.rpm

(...생략...)

Installed:
  git.x86_64 0:2.8.0-1.WANdisco.   308                                                                                        

Dependency Installed:
  perl-Git.noarch 0:2.8.0-1.WANdisco.308

[USER1@SVR1 ~]$ git --version
git version 2.8.0

참고