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

angularjs - Redirect to a new template in angular js -

Oracle SQL. How to select specific IDs where value of columns specify criteria? -

Desktop Launcher for Python Script Starts Program in Wrong Path (Linux) -