I’ll introduce how to change the case of file names and directory names in Git.
I occasionally encounter a pattern where I use uppercase letters in file names or directory names on macOS, which causes errors on Linux, so this is how to handle it.
git mv -f Example.txt example.txt
git mv Example/ _Example/
git mv _Example/ example/
That’s all from the Gemba about wanting to change the case of file names and directory names in Git, which happens about once every few years.