I’ll introduce how to change the case of file names and directory names in git using the git mv command.
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.