how to untrack files in git code example
Example 1: git remove untracked files
git clean -n
git clean -i
git clean -f
git clean -fd
git clean -fX
git clean -fx
Example 2: git untrack file
git rm --cached filename
Example 3: how to remove untracked files in git
git clean -f
Example 4: github untrack files
git rm -r --cached .
Example 5: git untrack
git rm -r --cached <file>
Example 6: remove gitignore files
git ls-files --ignored --exclude-standard -z | xargs -0 git rm --cached
git commit -am "Remove ignored files"
// answer from: thSoft