How do you delete untracked local files from your current working tree?
If needed to remove untracked files from particular subdirectory,
git clean -f {dir_path}
And combined way to delete untracked dir/files and ignored files.
git clean -fxd {dir_path}
after this you will have modified files only in git status.
git status