Git-windows case sensitive file names not handled properly
- by dhanasekar79
We have the git bare repository in unix that has files with same name that differs only in cases.
Example:
GRANT.sql
grant.sql
When we clone the bare repository from unix in to a windows box, git status detecs the file as modified. The working tree is loaded only with grant.sql, but git status compares grant.sql and GRANT.sql and shows the file as modified in the working tree.
I tried using the core.ignorecase false but the result is the same.
Is there any way to rix this issue.