git: xcrun missing
By using git the following error is shown:
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Open a terminal and install xcode: a pop up have to acknowledged.
xcode-select --install
Umlaute
- MacOS X uses a different UTF8 encoding for filenames than MS-Windows and Linux.
This leads to confusion. E.g.: after a fresh clone of a GIT repo (created on MS-Windows or linux) a git status will show untracked files if they contain umlaut in their filenames, even without any change has been done!
https://www.git-tower.com/help/guides/faq-and-tips/faq/unicode-filenames/mac
- To fix this, one option is to change the handling of filenames in the local git configuration:
$ git config --global core.precomposeunicode false
- After that, clone the repository again.