macOSで「Failed to find the latest git commit date: VersionCheckError」
今回はmacOSで次のエラーが出た時の対処法についてご紹介していこうと思います。
1 2 3 4 5 |
Failed to find the latest git commit date: VersionCheckError: Command exited with code 69: git -c log.showSignature=false log -n 1 --pretty=format:%ad --date=iso Standard out: Standard error: You have not agreed to the Xcode license agreements. Please run 'sudo xcodebuild -license' from within a Terminal window to review and agree to the Xcode and Apple SDKs license. Returning 1970-01-01 09:00:00.000 instead. |
私は
flutter --version
というコマンドを叩いたら上記のエラーが出ました。
私の環境は、MacはM1チップ搭載のもので、macOSのバージョンはSonomaの14.3となります。
macOSで「Failed to find the latest git commit date: VersionCheckError」
結論から言うと、エラーメッセージの通り、Xcodeライセンスの承諾を行いましょう。
次のコマンドを叩くとXcodeライセンスが表示されます。
sudo xcodebuild -license
ライセンスの最後の方に「By typing 'agree’ you are agreeing to the terms of the software license agreements. Any other response will cancel. [agree, cancel]」
と聞かれるので、
agree
とタイプしてエンターを押せばOKです。
これで表題のエラーは表示されなくなります。
終わりに
今回はmacOSで表題のエラーが出た時の対処法についてご紹介いたしました。
ディスカッション
コメント一覧
まだ、コメントがありません