1
0

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.

macOSバージョンアップしたらgitが使えなくなった時にしたこと

Last updated at Posted at 2020-01-30

バージョン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)

認識してくれた
解決!!!

1
0
0

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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?