I have a repository over at GitHub :
https://github.com/ludovicriffault/feed-tastic
And I can’t remove the .DS_Store files in every folder and subfolder. I’ve tried many things like the file .gitignore and some answers here in Stackoverflow but nothing works…
Any idea to fix that? Thanks in advance!
You need to clone your repo, and then
The idea is to keep locally your “
.DS_Store“, while removing them from the git repo.The
.gitignorewill work only if those “.DS_Store” are first removed from the index, hence the “git rm --cached -f” (seegit rm).