On my local system, I had a file named FarmApi
, whereas in my remote repository it was named farmApi
. Having noticed that and then read this, in my .gitconfig
and in my .git\config
I went ahead and set:
[core]
ignorecase = false
That allows me to add, commit, and push the case sensitive change. The problem now is that the remote repository has both farmApi
and FarmApi
whereas our local has only FarmApi
.
Remote
Local
Why are the case sensitive changes out of sync? How do we remedy this?