add gitignore after commit code example
Example 1: apply gitignore to current commit
#First commit all changes
git rm -r --cached .
git add .
git commit -m ".gitignore updated"
Example 2: git ignore after commit
git rm --cached /\*.exe
#First commit all changes
git rm -r --cached .
git add .
git commit -m ".gitignore updated"
git rm --cached /\*.exe