I'm a lifelong Windows user who just jumped over to my first Macbook Pro and first time MacOS user and was surprised to find out that MacOS 15 APFS filesystem is by default case-insensitive!
I work with Linux operating systems and have local git repositories on my Windows 10 NTFS filesystems. So what's the best recommended practices for handling my local git repo code on MacOS APFS? I read I could on MacOS git use:
git config --global core.ignorecase false
However, this does not prevent all case-related issues when working on a case-insensitive filesystem like macOS’s default APFS. It only changes how Git tracks and interacts with file name case differences.
I work with Linux operating systems and have local git repositories on my Windows 10 NTFS filesystems. So what's the best recommended practices for handling my local git repo code on MacOS APFS? I read I could on MacOS git use:
git config --global core.ignorecase false
However, this does not prevent all case-related issues when working on a case-insensitive filesystem like macOS’s default APFS. It only changes how Git tracks and interacts with file name case differences.