Ignore .DS_Store in all directories
dlee13 opened this issue · 5 comments
Your .gitignore
should be
**/.DS_Store
The **/
prefix is a pattern that means to match in all directories. https://git-scm.com/docs/gitignore#_pattern_format
Sorry for the late reply, but I'm sure that leaving out **/ does the exact same thing?