There was a problem with push'e on the github of the local repository: some files are not transferred, which have been changed, but only in the name of the name, i.e. it used to be text - now Text, the files on the server remain the same, how to fix it?

Win7, tortoisegit.

    1 answer 1

    In Windows, there is no difference between text and Text

    Rename the file with git

    git mv text.txt Text.txt –f 
    • so I need to do this for the whole project. The site on Kohana 3.3 requires that all controller names begin with an upper case. Is it possible to set this up in the tortoise itself? - Danis92
    • 2
      This is not a tortoise task. This is your task. - KoVadim
    • 2
      > require that all controller names begin with upper case. Well, write a script in any language that recursively renames all files using git. - Nofate