mirror of
https://github.com/signalwire/freeswitch
synced 2026-08-07 14:32:14 -04:00
8 lines
202 B
Bash
Executable file
8 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:"
|
|
|