centos의 git을 설치하면 (yum install git), 버전이 낮은 git이 설치된다. 따라서 git 명령어를 잘 인식 못할 수 있다.
현재는 yum install git으로 설치하면 2.2를 설치한다.
최신 git 을 설치하는 방법을 소개한다.
https://www.kernel.org/pub/software/scm/git/ 에 접속한다.
최신 버전을 찾는다. 현재는 2.9.3이 최신이다.
$ wget https://www.kernel.org/pub/software/scm/git/git-2.9.3.tar.gz
$ cd git-2.9.3
$ make prefix=/usr/local/git all
$ sudo make prefix=/usr/local/git install
$ echo "export PATH=$PATH:/usr/local/git/bin" >> ~/.bash_profile
$ source ~/.bash_profile
만약 root 사용자라면, ~/etc/bashrc를 수정한다.
'unix and linux' 카테고리의 다른 글
slab memory가 증가하는 현상 처리 - vfs_cache_pressure (0) | 2016.08.24 |
---|---|
간단한 커보러스 명령어. - 티켓 생성, 확인, 삭제 (0) | 2016.08.22 |
[centos7] 공개키가 포함된 인증서와 개인 키 생성하기 (0) | 2016.08.16 |
ssh 인증 에러 - Host key verification failed. (0) | 2016.08.10 |
[centos7] yum 캐시 정리 (0) | 2016.08.08 |