バージョン10.15.2から10.15.3にアップデートしたあと、git initしたら以下のエラー発生
xcrun: error: invalid active developer path (/Applications/Xcode.app/Contents/Developer), missing xcrun at: /Applications/Xcode.app/Contents/Developer/usr/bin/xcrun
対処
ググってみた結果、以下のコマンドで解決できるようなので実行
$ xcode-select --install
すると今度は以下のエラー発生
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
すでにインストールされているからアップデートしろ・・・???
最新のバージョンではないということ?
更新の確認
更新が来ているソフトウェアがあるか確認
$ softwareupdate --list
↓結果
Software Update Tool
Finding available software
No new software available.
アップデートできるソフトウェアが無い・・・
混乱してきた・・・
もう一度ググってみた結果、以下のコマンドで対処できるようなので実行
$ sudo xcode-select -switch /Library/Developer/CommandLineTools
参考にさせて頂いた記事
https://qiita.com/kuriya/items/69d1e510fcaec4afd8c9
パスワードを入力し、git --versionでgitの生存確認
$ git --version
git version 2.21.0 (Apple Git-122.2)
認識してくれた
解決!!!