mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
9 lines
202 B
Bash
9 lines
202 B
Bash
|
#!/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:"
|
||
|
|