git remove untrackable files code example
Example 1: how to remove untracked files in git
git clean -fd
Example 2: how to delete unstaged files that were recently added locally
To see what files will be removed:
git clean -n <optional file_name/dir>
To actually delete those files:
git clean -f <optional file_name/dir>