26
28

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Macのhomebrewで最新gitをインストールして使う方法 (bashの場合)

Last updated at Posted at 2017-09-09

macbook proで最新versionのgitを使おうとしたときに
アップデートしてもバージョンが変わらなかったため
色々調べて解決したことをまとめます

#手順

  1. homebrewインストール
  2. homebrewで最新verのgitをインストール(この時点ではまだ古いversionのgitが呼び出される)
  3. 最新verのgitが呼び出されるように設定(.bash_profileの編集)

#homebrewインストール
homebrewはバージョン管理ツールで、
linuxでいうところのyumとかapt-getです。
launchpadのその他フォルダ内のターミナルを開いて下記のコマンドを打ちます。

ターミナル
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

homebrewインストールコマンドは更新されている可能性があるので上記コマンドでインストールできなかった場合はこちらから最新のコマンドを取得してください。
このコマンドでhomebrewがインストールされました。

#homebrewで最新verのgitをインストール

gitの最新版をhomebrewでインストールします。

ターミナル
brew install git

これでgitの最新版がインストールされました。(まだ使えません)

#最新verのgitが呼び出されるように設定(.bash_profileの編集)
このままだとmacbookに最初から入っているgitのほうが呼び出されてしまいます。
homebrewでインストールしたgitを呼び出すように.bash_profileにパスを記載します。
Finderから.bash_profileを選択して編集します。

表示されない場合は下記参照
【Mac】隠しファイル・隠しフォルダを表示する方法

.bash_profile
export PATH=/usr/local/Cellar/git/{最新バージョン}/bin:$PATH

例 export PATH=/usr/local/Cellar/git/2.14.1/bin:$PATH

#確認

ターミナル
git --version

最新のversionが表示されれば成功です

26
28
7

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
26
28

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?