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
Why you’re ignoring .gitignore? This doesn’t make a sense. If you want to ignore some files just locally (i.e. don’t track and publish this setting to the remote repository), then use .git/info/exclude instead. Just add .DS_Store to it, that’s all.
.git/info/exclude