remove ignored files git code example
Example 1: git remove untracked files
git clean -fdx
Example 2: git ignore still tracking
git rm --cached <file>
git rm -r --cached <folder>
Example 3: github untrack files
git rm -r --cached .
Example 4: git remove Untracked files
git clean -f
Example 5: git remove file from gitignore
git rm --cached <file>
Example 6: git remove all files in gitignore
git ls-files -i -z --exclude-from=.gitignore | xargs -0 git rm --cached