I have .gitignored .DS_Store and .gitignore files. But still see them in the \"git status\".
.gitignore
.DS_Store
Can someone explain to me how I can m
This is what your .gitignore should look like:
Also, the .gitignore is meant to be tracked, ignoring it doesn't make sense. So after you've updated the file to contain just .DS_Store do:
$ git add .gitignore $ git commit -m "Track .gitignore"