''目次''
#contents
~
----
*目的 [#m95b08bd]
*準備 [#v995df09]
# yum install perl-ExtUtils-MakeMaker
~
*インストール [#b0a647ae]
+''ソースの取得''
# wget -P /usr/local/src https://git-core.googlecode.com/files/git-1.8.2.1.tar.gz
~
+''ソースの解凍''
# cd /usr/local/src
# tar zxvf git-1.8.2.1.tar.gz
~
+''コンパイル設定''~
[[configureのヘルプ>git-1.8.2.1のconfigureヘルプ]]
# cd git-1.8.2.1
# ./configure \
> --prefix=/usr/local
~
+''インストール''
# make
# make install
~