Updating file names in Git from camel case to all lower case

git

Solution

Step one: Rename them to some temp names such as `"mycamelfile_temp.rb"` Step two: Rename them back to `"mycamelfile.rb"` now all in lower case.

Problem

I had some files in my git named like this: `"myCamelFile.rb"` I just right clicked on my IDE and renamed them to all lower case so like `"mycamelfile.rb"` But when I do a `git statu`s I don't get any message that these are changed. What should be done now?

Original source

Related problems