get rid of untracked files code example
Example 1: 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>
Example 2: git remove untracked files
git clean -n