apply gitignore before commit code example
Example 1: apply gitignore after commit
git rm --cached $file
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 $file
#First commit all changes
git rm -r --cached .
git add .
git commit -m ".gitignore updated"