See which files are being ignored by your .gitignore configuration

suggest change
[ alias ]

    ignored = ! git ls-files --others --ignored --exclude-standard --directory \
            && git ls-files --others -i --exclude-standard

Shows one line per file, so you can grep (only directories):

$ git ignored | grep '/$'
.yardoc/
doc/

Or count:

$ git ignored | wc -l
199811                 # oops, my home directory is getting crowded

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents