DEV Community

Discussion on: Repository-Specific Ignored Files in Git

Collapse
 
smichaelsen profile image
Sebastian Michaelsen • Edited

Your personal .gitignore should contain files/directories that are produced by your OS, IDE and personal tools.
In my opinion things like .idea, .DS_Store, Thumbs.db do not belong in a project's .gitignore but in personal ignore files.

Collapse
 
moopet profile image
Ben Sinclair

I agree, but the number of other developers on any random project who use badly-behaved OS or IDEs is often quite high. You could tell them to use a particular .gitignore configuration and double-check all their commits, or you could just include it all in the repo and forget about it.

Collapse
 
hoelzro profile image
Rob Hoelz

Definitely agree on this!