I'm not sure if this file is necessary, so it should be reviewed before merging in. Basically on macOS APFS filenames are treated as case insensitive for legacy purposes. Doing something like touch abc; touch ABC would yield the first file, and not write the second.
This PR just deletes the older of the two which resolves the issue and leaves you with a clean working tree on repository clone.
Edit: The ideal solution to fix this would be to not have instances of this happen at all for better compatibility across operating systems
Fixes #62
I'm not sure if this file is necessary, so it should be reviewed before merging in. Basically on macOS APFS filenames are treated as case insensitive for legacy purposes. Doing something like
touch abc; touch ABC
would yield the first file, and not write the second.This PR just deletes the older of the two which resolves the issue and leaves you with a clean working tree on repository clone.
Edit: The ideal solution to fix this would be to not have instances of this happen at all for better compatibility across operating systems