'Git's not detecting file name casing change
I've currently facing a rather odd issue, git is not looking for case changes on my files.
I had app.module.ts and outside.dto.ts and I've changed them to App.module.ts and Outside.dto.ts.
I'm not sure wether git is not picking those changes or if that's a very specific issue with my repository, but my repository is still with the lowercase filename even tough I've commited multiple times with the different filename casing.
Pretty sure it doesn't make a difference, but since I've never seen this happen on GitHub, I think it won't hurt to mention I'm using Azure Repo.
Solution 1:[1]
Try setting ignorecase to false in your git config. I just had the same issue and it worked for me
git config core.ignorecase false
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Andrea |
