|
|
|
|
|
by globular-toast
1105 days ago
|
|
It's a pet peeve of mine when people put stuff like this in a project's `.gitignore`. The proper place is either your global gitignore (probably appropriate for stupid stuff like this) or in your clone in `.git/info/exclude`. `.gitignore` is for stuff that all developers need to ignore, like compiler output, and should be kept to the bare minimum. |
|
But that is the case, all developers need to ignore the ".DS_Store" files. So by your own rule it is appropriate in there then?