Skip to content

Latest commit

 

History

History

git-lsio

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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 …