Can I ignore the global .gitignore?

git, gitignore

Solution

Run this command in your repo:

git config --local core.excludesfile false

Problem

My global .gitignore is generally great but for this one off project I don't want the global rules applied. How can I remove the global .gitignore rules for this one freak repository?

Original source