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
Post a Comment