I am working with git on my local machine and pushing to a remote apache server. I had a file which I originally added and it was named controllers
. I wanted to change this to Controllers
with the uppercase file name. When I did this and pushed, my remote server keep showing the file as controllers
with the lower case name. I removed the files from both local/remote and pushed again but the file keeps showing with the lower case name.
I tried git config core.ignorecase false
but it did not work. My apache server allows for uppercase filenames so that's not the issue. Can't figure out what this is. Is there git cache I can clear to solve this. Driving me bananas.