Faithful 32x

Faithful 32x

2M Downloads

Ignore .DS_Store in all directories

dlee13 opened this issue · 5 comments

commented

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

commented

Sorry for the late reply, but I'm sure that leaving out **/ does the exact same thing?

commented

Leaving that out means it'll only match the .DS_Store found at the project root.

commented

Leaving that out means it'll only match the .DS_Store found at the project root.

Then what about this?
image

commented

Maybe the Github app handles the gitignore differently than cli git.

commented

Also just tried out git cli, same result