git lsio

List files that git is ignoring

Git alias:

lsio = ls-files --ignored --others --exclude-standard

Example:

git lsio

Documentation for git ls-files

-i, –ignored
Show only ignored files in the output. …
-o, –others
Show other (i.e. untracked) files in the output.
–exclude-standard
Add the standard Git exclusions …