jubilee

Programing, Books and more...

Homebrewでgitをインストールする

Homebrewで最新のgitをインストールする。

環境

  • OS X 10.9.2
  • Homebrewインストール済み
  • Macのデフォルトgit version 1.8.5.2(Apple Git-48)

gitをインストール

Terminal.app
1
2
3
4
5
6
7
8
9
10
11
12
13
// Terminalを起動し、現在のgit versionを確認
$ git --version
git version 1.8.5.2(Apple Git-48)

// Homebrewで最新をインストールする
$ brew install git
...
==> Summary
/usr/local/Cellar/git/1.9.2: 1324 files, 31M

// インストールしたバージョンを確認
$ /usr/local/bin/git --version
git version 1.9.2

Homebrewでインストールしたgitを使用する

Homebrewでインストールしたgitを使用するように設定する。
/etc/pathsの順番で、/usr/local/binが一番上にくるようにする。

Terminal.app
1
2
3
4
5
6
7
$ vi /etc/paths
/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin

バージョンを確認する

切り替わったかを確認する。

Terminal.app
1
2
$ git --version
git version 1.9.2

参考

http://blog.glidenote.com/blog/2014/04/20/change-command-path-priority/