デフォルトで git1.7.1 が入ってたけど、何か微妙なバージョンな気がするので現時点で最新安定版をインンストールしてみた。
- Git(Gitの公式サイトってシャレおつなのね。)
- Downloads - git-core - Git - the stupid content tracker - Google Project Hosting
Install: git-core
cd /usr/local/src/ wget http://git-core.googlecode.com/files/git-1.8.1.3.tar.gz tar xzvf git-1.8.1.3.tar.gz cd git-1.8.1.3 ./configure sudo make sudo make install
Check
インストールされたか確かめてみる
$ git --version git version 1.7.1 #げ、元のまま? $ which git /usr/local/bin/git #あれ? $ /usr/local/bin/git --version git version 1.8.1.3 #インストールされてるが? $ /usr/bin/git --version git version 1.7.1 #原因これか $ mv /usr/bin/git /usr/bin/git_171 #一応リネームして置いといて $ ln -s /usr/local/bin/git /usr/bin/git #シンボリックリンクはってみた $ git --version git version 1.8.1.3 #おっけー