Xcode 5.0.1 からコマンドラインツールのインストールが変更になったのかな? これまでだったら「環境設定」からインストールできていたのに出来なくなっていました。と、云うことでコマンドラインからインストール。
$ xcode-select --install
このコマンドを実行すると「コマンドを実行するには、コマンドライン・デベロッパ・ツールが必要です。ツールを今すぐインストールしますか?」と聞いてくるので「インストール」ボタンを押してインストールを完了。
Xcode がアップデートされると毎回表示されるエラーメッセージ。
Warning: You have unlinked kegs in your Cellar Leaving kegs unlinked can lead to build-trouble and cause brews that depend on those kegs to fail to run properly once built. Run
brew link
on these:git
リンクが切れてるよ! ってことなので $ brew link git
を実行すると
Error: Could not symlink file: /usr/local/Cellar/git/1.8.4.3/bin/git-upload-pack Target /usr/local/bin/git-upload-pack already exists. You may need to delete it. To force the link and overwrite all other conflicting files, do:
brew link --overwrite formula_name
To list all files that would be deleted:
brew link --overwrite --dry-run formula_name
こんなエラーが出たので
$ brew link --overwrite git
とやって強制的に書き換えました。あとは $ brew doctor
とやって先生に診てもらって異常がなければ大丈夫。