freeswitch/scripts/check-gitignore.sh

9 lines
202 B
Bash
Executable File

#!/bin/bash
## files we might want to ignore
git ls-files -o --exclude-standard | sed -e "s:.:\/\\0:"
## files we are accidentally ignoring
git ls-files -i --exclude-standard | sed -e "s:.:\!\/\\0:"