From: Travis Cross Date: Tue, 6 Apr 2010 20:03:57 +0000 (+0000) Subject: Added a script to validate our .gitignore. X-Git-Tag: git2svn-syncpoint-master~250 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2ca27259aa6d635a263bf97fd3812a32e71f838;p=thirdparty%2Ffreeswitch.git Added a script to validate our .gitignore. --- diff --git a/scripts/check-gitignore.sh b/scripts/check-gitignore.sh new file mode 100755 index 0000000000..17e06f99ef --- /dev/null +++ b/scripts/check-gitignore.sh @@ -0,0 +1,8 @@ +#!/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:" +