stop tracking a file git code example
Example 1: stop tracking files git
git rm -r --cached . && git add . && git commit -m "Remove ignored files"
Example 2: stop tracking a file git
git rm --cached <file>
git rm -r --cached . && git add . && git commit -m "Remove ignored files"
git rm --cached <file>