Faithful-Resource-Pack / Faithful-Java-32x

The official repository for the Java version of Faithful 32x
https://faithfulpack.net
Other
220 stars 11 forks source link

Ignore .DS_Store in all directories #7

Closed dlee13 closed 2 years ago

dlee13 commented 2 years ago

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

RobertRR11 commented 2 years ago

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

dlee13 commented 2 years ago

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

RobertRR11 commented 2 years ago

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

Then what about this? image

dlee13 commented 2 years ago

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

RobertRR11 commented 2 years ago

Also just tried out git cli, same result