forked from Mirrors/freeswitch
Added a script to validate our .gitignore.
This commit is contained in:
parent
52c5cd074b
commit
d2ca27259a
|
@ -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:"
|
||||
|
Loading…
Reference in New Issue