The solution mentioned in ".gitignore file not ignoring" is a bit extreme,but should work:
# rm all files
git rm -r --cached .
# add all files as per new .gitignore
git add .
# now,commit for new .gitignore to apply
git commit -m ".gitignore is now working"