Git-windows case sensitive file names not handled properly

Posted by dhanasekar79 on Stack Overflow See other posts from Stack Overflow or by dhanasekar79
Published on 2010-03-27T08:01:38Z Indexed on 2010/03/27 8:03 UTC
Read the original article Hit count: 1000

Filed under:

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.

© Stack Overflow or respective owner

Related posts about msys