how to delete the untracked files in git code example
Example 1: how to remove untracked files in git
git clean -f
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>