Hi,
File case rename is not detected correctly on case-insensitive
filesystems. git mv does support it though.
Example:
git init
echo hello > foo
git add foo
git commit -m initial
mv foo Foo
git status # No changes
git add . -A # Doesn't add anything
- Orgad