Updated the readme file

This commit is contained in:
2025-09-04 11:50:53 +05:30
parent d0c1a1730e
commit e2914f3b70
2 changed files with 14 additions and 1 deletions

14
README.md Normal file
View File

@ -0,0 +1,14 @@
## why Git is not tracking this case-only rename?
Windows/macOS filesystems are case-insensitive they treat both names as the same file.So when you rename only by case, the OS reports no change.
## Provide the correct steps to make Git recognize and commit the rename:
force Rename command : git mv -f readme.md Readme.md
## Explain the underlying reason why this happens (hint: think about how Git interacts with different operating systems and filesystems).
1. Git was designed for Linux, where filesystems are case-sensitive.
2. Windows/macOS filesystems are case-insensitive they treat both names as the same file.So when you rename only by case, the OS reports no change.

View File

@ -1 +0,0 @@
Reproduce this situation in your local Git repository