List all untracked files that are ignored (git)
git ls-files . --ignored --exclude-standard --others
Shows a list of all files in the current directory that are untracked and match a pattern in a standard gitignore file.
git ls-files . --ignored --exclude-standard --others
Shows a list of all files in the current directory that are untracked and match a pattern in a standard gitignore file.