突然、こんなメッセージが…
昨日まで使えてたけど?
環境
- MacBook Pro 13-inch
- macOS Ventura 13.5.2
状況確認
とりあえず、ターミナルでGitのバージョン調べてみる。
% git --version
You have not agreed to the Xcode and Apple SDKs license. You must agree to the license below in order to use Xcode.
Press enter to display the license:
あーライセンスの同意が必要なのか。。。
Enterしたら、ライセンス条項が出てくるが省略。
一番最後の方に、
Agreeing to the Xcode and Apple SDKs license requires admin privileges, please accept the Xcode license as the root user (e.g. 'sudo xcodebuild -license').
なるほどね。
解決方法
状況確認で出てきた、コマンドを実行する。
% sudo xcodebuild -license
Password:
You have not agreed to the Xcode and Apple SDKs license. You must agree to the license below in order to use Xcode.
Press enter to display the license:
<<省略>>
EA1863
08/18/2023
By typing 'agree' you are agreeing to the terms of the software license agreements. Any other response will cancel. [agree, cancel]
agree ← 手入力!!
You can review the license in Xcode’s About window, or at: /Applications/Xcode.app/Contents/Resources/en.lproj/License.rtf
これで、gitコマンドが打てる。
% git --version
git version 2.39.3 (Apple Git-145)
よかったよかった。
コメント