I want to sync the same repositories between Linux/Mac/Windows so I need the Git internals (basically what's inside .git) be case insensitive compatible (so I don't want duplicate files there where only the case differs).
My main work machine is on Linux from where I want to sync these Git repositories to Mac/Windows.
I noticed that the directory .git/logs/refs/remotes/origin/ on Linux sometimes contains the same branch name with the original name (like TICKET-123-fix-this-thing) but also lowercased (ticket-123-fix-this-thing).
Is there a way to avoid this behavior (and possibly others I haven't yet noticed) so I can use this same repository on Mac and Windows? So basically, what I need to do to make the .git directory fully compatible (with regards to case) between Linux/Mac/Windows.
Thanks!