So here's the issue :
I use git for a repo in windows. Renamed some assets folder and files to lowercase but git didn't track the changes. Resulting in an inconsistent repo in other devices.
How to make git track file/folder name case changes so that it syncs across locations (different OSs too) consistently?
EDIT: I notice before asking that it might a duplicate question but I was looking for a different solution rather than git mv
UPDATE: So git config core.ignorecase false
- this seems to be more convenient in that case because you don't have to run git mv
every time you've to rename something. Original answer to can be found here