I have a repo that need to be run both in windows and linux, so need to set git config core.ignorecase false
but instead of asking each developer to set this in their repo, I want to add this in .gitattributes
I tried two things and both didn't work
[core]
ignorecase = false
and
* text=auto ignorecase=false
I checked the .git/config
file and content is like this:
if I set it to false
, I can see that vscode is picking files names changes. but when I set that in .gitattributes
vscode doesn't pick the changes.
how should I set it only for this repository so all developers don't need to set it manually?