Case-sensitive path collisions on case-insensitive file system when I do git clone

Definitions case-sensitive filesystem: treats john.jpg and JOHN.jpg as two different files and this is allowed. case-insensitive filesystem: treats john.jpg and JOHN.jpg as one and the same file which is not allowed. Problem ‘components/User/index.js’ ‘components/user/index.js’ The problem here is that User and user are not allowed to co-exist at the same time inside the components directory … Read more