centOS6.6でgit 2.2にアップグレードする.Xバージョン
1.まず以前の古いバージョンをアンインストールする
2.2.2.1のgitをダウンロード
3.ファイルを解凍する
4.環境への構成
5.インストール
6.インストールが完了したかどうかを確認する
注意:make all docを実行するときにエラーが発生する人もいます.エラーは以下の通りです.usr/bin/perl Makefile.PL PREFIX=’/usr/local/git’ INSTALL_BASE=” –localedir=’/usr/local/git/share/locale’ Can’t locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /usr/local/lib64/perl5/usr/local/share/perl5 /usr/lib64/perl5/vendor_perl/usr/share/perl5/vendor_perl /usr/lib64/perl5/usr/share/perl5 .) at Makefile.PL line 3. BEGIN failed–compilation aborted at Makefile.PL line 3. make[1]:*[perl.mak]Error 2 make:*[perl/perl.mak]Error 2この場合、インストールする必要があります
転載先http://www.zuimoban.com/jiaocheng/linux/11261.html
#yum remove -y git***
2.2.2.1のgitをダウンロード
#wget https://github.com/git/git/archive/v2.2.1.tar.gz
3.ファイルを解凍する
#tar -zxvf v2.2.1.tar.gz
4.環境への構成
# cd git-2.2.1
# make configure
# ./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv
5.インストール
# make all doc
# make install install-doc install-html
# echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc
# source /etc/bashrc
6.インストールが完了したかどうかを確認する
#git --version
git version 2.2.1
注意:make all docを実行するときにエラーが発生する人もいます.エラーは以下の通りです.usr/bin/perl Makefile.PL PREFIX=’/usr/local/git’ INSTALL_BASE=” –localedir=’/usr/local/git/share/locale’ Can’t locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /usr/local/lib64/perl5/usr/local/share/perl5 /usr/lib64/perl5/vendor_perl/usr/share/perl5/vendor_perl /usr/lib64/perl5/usr/share/perl5 .) at Makefile.PL line 3. BEGIN failed–compilation aborted at Makefile.PL line 3. make[1]:*[perl.mak]Error 2 make:*[perl/perl.mak]Error 2この場合、インストールする必要があります
#yum install perl-ExtUtils-MakeMaker -y
#yum install curlcurl-develzlib-developenssl-develperlcpioexpat-develgettext-devel -y
転載先http://www.zuimoban.com/jiaocheng/linux/11261.html