How do I ask git to clean out and rebuild the entire working tree?

We have something of an ugly mess that needs cleaning up. In our codebase, certain developers created directories whose name differed only in case. Normally, such a thing would not be an issue; however we are developing on Windows. This proceeded to confuse git and cause us merge conflicts far down the line. We have… Read More How do I ask git to clean out and rebuild the entire working tree?

How to remove case sensitivity from email in js

I want to remove the case sensitivity from emails when searching emails. For further explanation, If I search an email(dmc@gmail.com) in a different ways like this ‘DMC@gmail.com’ or ‘dMc@gmail.com’ or ‘Dmc@gmail.com’. I want to retrieve the email. If anyone can help, really appreciated. Thank you >Solution : In order to achieve that you could get… Read More How to remove case sensitivity from email in js