refresh git ignore code example
Example 1: git update gitignore
git rm -r --cached .
git add .
git commit -m "update gitignore"
Example 2: github untrack files
git rm -r --cached .
Example 3: remove gitignore files
git ls-files --ignored --exclude-standard -z | xargs -0 git rm --cached
git commit -am "Remove ignored files"
// answer from: thSoft