GIT 설치
GIT를 컴파일하는데 필요한 의존적인 라이브러리를 모두 설치
1 |
# yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel |
GIT 사이트 : http://git-scm.com/download
1 2 3 4 5 6 7 |
# wget http://kernel.org/pub/software/scm/git/git-1.7.3.5.tar.bz2 # tar -xvf git-1.7.3.5.tar.bz2 # cd git-1.7.3.5 # make prefix=/usr/local all # make prefix=/usr/local install $ git clone git://git.kernel.org/pub/scm/git/git.git |