apply changes to gitignore code example
Example 1: git untrack file
git rm --cached filename
Example 2: apply gitignore to current commit
#First commit all changes
git rm -r --cached .
git add .
git commit -m ".gitignore updated"
git rm --cached filename
#First commit all changes
git rm -r --cached .
git add .
git commit -m ".gitignore updated"