I am trying to bring a already existing codebase in version control
system like git
.
I am facing a particular issue where codebase contains two folder with same name but different case like 'Form' and 'form'.
Here is the scenario : Suppose, we have three system Linux ( case sensitive file system ) , MAC ( Not case sensitive ) and WINDOWS ( not case sensitive )
Now if someone on LINUX create a folder name FORM
having files a.php
, b.php
, c.php
and another folder name form
having files a.php
, b.php
, d.php
and pushes it to remote repo
Now when a user on MAC or WINDOWS clone the repo then how will git behave when handling FORM
and form
coming from remote because MAC and WINDOWS are case insensitive