I created my global gitignore:
vim ~/.gitignore_global
I add the line:
.DS_Store
(I've also tried all different varations like **/.DS_Store)
Then I try to add the global config file:
git config --global core.excludesfile ~/.gitignore_global
But it's still not working. I'm certain the files are new and untracked:
Untracked files:
(use "git add <file>..." to include in what will be committed)
app/code/.DS_Store
Why is this not working? I'm baffled.