github - Take local file to remote git forcefully -


every changes pushed except have file name completecontroller.cs c in upper case in in git repo showing completecontroller.cs c in lower case.

you're on windows, hence filesystem case insensitive. hence can't trust case see on filesystem.

to fix can try

git mv -f <name-on-your-filesystem> <name_with_the_correct_case> 

so if understood clearly, should be

git mv -f completecontroller.cs completecontroller.cs 

Comments

Popular posts from this blog

Java 3D LWJGL collision -

spring - SubProtocolWebSocketHandler - No handlers -

methods - python can't use function in submodule -