git update track file from gitignore code example
Example 1: git update gitignore
git rm -r --cached .
git add .
git commit -m "update gitignore"
Example 2: Force add despite the .gitignore file
git add --force my/ignore/file.foo
git rm -r --cached .
git add .
git commit -m "update gitignore"
git add --force my/ignore/file.foo