Git Of Mac

Contains information related to the Mac

gitコマンドを実行したら「xcrun: error: invalid active developer path」というエラーが出た時の対処法

  • 下記エラーが発生した時の対象方法
% git init
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

xcode-selectコマンドでコマンドライン開発者ツールをインストール

xcode-select --install
  • 原因としてはアップグレードで、Xcode Command Line Tool が消えてしまうようです。

xcode-select とは

Xcode や BSD ツール用のアクティブなデベロッパ・ディレクトリを管理するコマンド

  • -switch オプションでアクティブなデベロッパ・ディレクトリを切り替えることができ
xcode-select -switch <path to developer tools>
  • 現在アクティブなパスの確認
xcode-select -print-path

参考URL

mac  git 

See also