Something About git
Something About git.
.gitignore not working
First commit any outstanding code changes, and then, run this command:
git rm -r --cached
This removes any changed files from the index(staging area), then just run:
git add .
Commit it:
git commit -m ".gitignore is now working"
https://stackoverflow.com/questions/25436312/gitignore-not-working