74bd455dbf68ebf8a96dc6c74ab77ee8c0050e76
- Created readme.md in a repo and renamed it to README.md
- Git didn’t show changes because windows system is case-insensitive
- Fixed it using:
git mv -f readme.md README.md
git commit -m "Rename readme.md to README.md"
- Reason: Git is case-sensitive, but case-insensitive filesystems treat both names as the same
Description
Languages
Markdown
100%