jisaacks / GitGutter

A Sublime Text 2/3 plugin to see git diff in gutter
MIT License
3.88k stars 224 forks source link

Respect the case-sensitivity setting in git's config #239

Open alextegelid opened 9 years ago

alextegelid commented 9 years ago

When I rename a file from filename.php to Filename.php GitGutter will show every row in that file as added (thinking it's a new file). git status, on the other hand, reports a clean working tree since my global settings file says core.ignorecase=true

deathaxe commented 7 years ago

This is actually a bug of git so far. as calling git show Filename.php works case insensitive but git show HEAD:Filename.php does not.