I was stuck in this situation and found the following solution ..
In git terminal change the case of the file locally using the 'mv' command
mv MYfileNAME.abc MyFileName.abc
Commit the change but don't push
git commit -m "Changed case of file MyFileName.abc"
Pull again
git pull