Git alias:
lsio = ls-files --ignored --others --exclude-standard
Example:
git lsio
- -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 …