[Git] How to change case of file names and directory names

Tadashi Shigeoka ·  Thu, August 21, 2014

I’ll introduce how to change the case of file names and directory names in git using the git mv command.

Git
git mv -f test/document/products.coffee test/document/Products.coffee

Using just the mv command alone didn’t show up in git status.

mv test/document/products.coffee test/document/Products.coffee
git status

That’s all from the Gemba on changing the case of file names and directory names in git.