본문 바로가기
OS/Linux

centos git 1.8설치

by 신군. 2018. 3. 7.
반응형

RHEL/CentOS 6 에는 git 1.7 이 포함되어 있고 https protocol을 처리 못하는 관련 버그가 있다.

gitlab 을 설치하려면 git 1.8 이 필요하므로 yum repository 를 제공하는 The PUIAS Computational repository 에서 최신 git 버전을 다운로드 할 수 있다.


git 1.8 설치

wget http://springdale.math.ias.edu/data/puias/computational/6/x86_64/git-1.8.3.1-1.sdl6.x86_64.rpm
wget http://springdale.math.ias.edu/data/puias/computational/6/x86_64/perl-Git-1.8.3.1-1.sdl6.noarch.rpm
yum remove git -y
yum localinstall git-*.rpm perl-Git-*.noarch.rpm -y


2.x 설치

2.x 이상을 사용할 경우 Wandisco 사의 repository 를 설치한 후에 yum 으로 설치하면 된다.

CentOS 7

CentOS 7
rpm -Uvh http://opensource.wandisco.com/centos/7/git/x86_64/wandisco-git-release-7-2.noarch.rpm


CentOS 6

rpm -Uvh http://opensource.wandisco.com/centos/6/git/x86_64/wandisco-git-release-6-1.noarch.rpm


repository 설치를 마쳤으면 아래 명령어로 git 을 설치(git-svn 은 subversion 저장소 이관하지 않을 경우 불필요)

yum --enablerepo=WANdisco-git --disablerepo=base,updates install git git-svn


반응형

'OS > Linux' 카테고리의 다른 글

CentOS 6.7 에서 MySQL 5.7 설치  (0) 2018.03.09
selinux  (0) 2018.03.09
How to Install Gradle on CentOS 7  (0) 2018.03.02
centos java 설치  (0) 2018.03.02
centos vmware install  (0) 2018.03.02