Change filename case in git
Published on 20 January 2014 at 13:55 by
Git is case-insensitive. So to change filename case in git, you have to jump through a (small) hoop.
git -f <source> <destination>
Example:
git -f src/helloworld.js src/HelloWorld.js
And that's it!