#!/bin/sh
#
## Show files being ignored by git in the repository.
## Source: git-extra-commands

# Show what files are being ignored in the repo

exec git ls-files --others --i --exclude-standard
