The XCode Command Line Tools include git, swift, make, clang, and other developer tools
https://webinstall.dev/commandlinetools| Installer Source| Releases (json) (tab)
The XCode Command Line Tools include git, swift, make, clang, and other developer tools
https://webinstall.dev/commandlinetools| Installer Source| Releases (json) (tab)
The developer tools provided by Apple for macOS.
This is also part of webi-essentials.
These are the files / directories that are created and/or modified with this install:
/Library/Developer/CommandLineTools/
It's very easy to start the installer:
xcode-select --install
The trick is to also have a mechanism to know when it has finished:
while ! test -x /Library/Developer/CommandLineTools/usr/bin/git ||
! test -x /Library/Developer/CommandLineTools/usr/bin/make; do
sleep 0.25
done
echo "Command Line Tools Installed"