I have .gitignore
d .DS_Store
and .gitignore
files. But still see them in the \"git status\".
Can someone explain to me how I can m
I had an issue getting .DS_Store
ignored where the problem was that it had already been committed to the repo. Removing it resolved the issue.
$ git rm --cached .DS_Store
I experience the same issue. The solution is to add a .gitignore under your home directory first.
My end the repository .gitignore no longer appears in indexing tracking.
.gitignore
. I don't think the ignore feature works when you don't have it in your repository. I'm not sure though..gitignore
. If you want them to be ignored after they've been added to the repository already, you have to remove them with git rm filename
first.I faced the same problem. None of the .gitignore
lines were in effect.
I converted the file encoding into UTF-8
and it worked instantly.