Warm tip: This article is reproduced from stackoverflow.com, please click
command-line git macos xcode terminal

Git is not working after macOS Update (xcrun: error: invalid active developer path (/Library/Develop

发布于 2020-03-27 10:29:50

I updated to macOS Mojave (this happens to Catalina update too).

This morning I navigated to my work's codebase in the Command Line on my MacBook pro, typed in "git status" in the repository and received the error:

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Questioner
dustbuster
Viewed
151
dustbuster 2019-11-20 23:35

The problem is that Xcode Command-line Tools needs to be updated.

Go back to your terminal and hit:

xcode-select --install

You'll then receive:

xcode-select: note: install requested for command line developer tools

You will be prompted at this point in a window to update Xcode Command Line tools. (which may take a while)

open a new terminal window and your development tools should be returned.

Addition: With any major or semi-major update you'll need to update the command line tools in order to get them functioning properly again. Check Xcode with any update. This goes beyond Mojave...

After that restart your terminal