Tightened up .gitignore such that we are no longer ignoring files that are actually in the tree.
Check for files that we are accidentally ignoring: git ls-files -i --exclude-standard | sed -e "s:.:\!\/\\0:" Check for files that we might want to ignore: git ls-files -o --exclude-standard | sed -e "s:.:\/\\0:"
This commit is contained in:
parent
5a8a9bfb62
commit
db26c65ea7
|
@ -8,10 +8,10 @@
|
||||||
.deps
|
.deps
|
||||||
.\#*
|
.\#*
|
||||||
\#*
|
\#*
|
||||||
Debug/
|
/Debug/
|
||||||
Release/
|
/Release/
|
||||||
All/
|
/All/
|
||||||
bin/
|
/bin/
|
||||||
*.user
|
*.user
|
||||||
*.suo
|
*.suo
|
||||||
*.ncb
|
*.ncb
|
||||||
|
@ -26,32 +26,35 @@ bin/
|
||||||
*.manifest
|
*.manifest
|
||||||
*.dep
|
*.dep
|
||||||
*.dll
|
*.dll
|
||||||
BuildLog.htm
|
/BuildLog.htm
|
||||||
Path
|
/Path
|
||||||
w32/Library/lastversion
|
/w32/Library/lastversion
|
||||||
w32/Library/tmpVersion.Bat
|
/w32/Library/tmpVersion.Bat
|
||||||
.version
|
!/w32/Console/FreeSwitchConsole.vcproj.user
|
||||||
AUTHORS
|
!/w32/Setup/inno_setup/vcredist_x64.exe
|
||||||
COPYING
|
!/w32/Setup/inno_setup/vcredist_x86.exe
|
||||||
ChangeLog
|
/.version
|
||||||
Makefile
|
/AUTHORS
|
||||||
Makefile.in
|
/COPYING
|
||||||
NEWS
|
/ChangeLog
|
||||||
README
|
/Makefile
|
||||||
|
/Makefile.in
|
||||||
|
/NEWS
|
||||||
|
/README
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
autom4te.cache
|
autom4te.cache
|
||||||
build/Makefile
|
/build/Makefile
|
||||||
build/Makefile.in
|
/build/Makefile.in
|
||||||
build/config/compile
|
/build/config/compile
|
||||||
build/config/config.guess
|
/build/config/config.guess
|
||||||
build/config/depcomp
|
/build/config/depcomp
|
||||||
build/config/install-sh
|
/build/config/install-sh
|
||||||
build/config/ltmain.sh
|
/build/config/ltmain.sh
|
||||||
build/config/missing
|
/build/config/missing
|
||||||
build/freeswitch.pc
|
/build/freeswitch.pc
|
||||||
build/getlib.sh
|
/build/getlib.sh
|
||||||
build/getsounds.sh
|
/build/getsounds.sh
|
||||||
build/modmake.rules
|
/build/modmake.rules
|
||||||
config.cache
|
config.cache
|
||||||
config.log
|
config.log
|
||||||
config.status
|
config.status
|
||||||
|
@ -61,7 +64,7 @@ freeswitch
|
||||||
fs_cli
|
fs_cli
|
||||||
fs_ivrd
|
fs_ivrd
|
||||||
libtool
|
libtool
|
||||||
modules.conf
|
/modules.conf
|
||||||
quiet_libtool
|
quiet_libtool
|
||||||
scripts/fsxs
|
scripts/fsxs
|
||||||
scripts/gentls_cert
|
scripts/gentls_cert
|
||||||
|
|
|
@ -437,6 +437,8 @@ portaudio/libtool
|
||||||
portaudio/ltmain.sh
|
portaudio/ltmain.sh
|
||||||
portaudio/missing
|
portaudio/missing
|
||||||
portaudio/portaudio-2.0.pc
|
portaudio/portaudio-2.0.pc
|
||||||
|
!/portaudio/bindings/cpp/build/gnu/aclocal.m4
|
||||||
|
!/portaudio/bindings/cpp/build/gnu/configure
|
||||||
silk/Makefile
|
silk/Makefile
|
||||||
silk/Makefile.in
|
silk/Makefile.in
|
||||||
silk/aclocal.m4
|
silk/aclocal.m4
|
||||||
|
@ -1027,6 +1029,8 @@ unimrcp/platforms/asr-client/asrclient
|
||||||
unimrcp/platforms/umc/umc
|
unimrcp/platforms/umc/umc
|
||||||
unimrcp/platforms/unimrcp-client/unimrcpclient
|
unimrcp/platforms/unimrcp-client/unimrcpclient
|
||||||
unimrcp/platforms/unimrcp-server/unimrcpserver
|
unimrcp/platforms/unimrcp-server/unimrcpserver
|
||||||
|
!/unimrcp/configure.gnu
|
||||||
|
!/unimrcp/build/tools/unimrcpservice.exe.manifest
|
||||||
yaml/config.h
|
yaml/config.h
|
||||||
yaml/stamp-h1
|
yaml/stamp-h1
|
||||||
yaml/tests/example-deconstructor
|
yaml/tests/example-deconstructor
|
||||||
|
@ -1038,6 +1042,8 @@ yaml/tests/run-emitter
|
||||||
yaml/tests/run-loader
|
yaml/tests/run-loader
|
||||||
yaml/tests/run-parser
|
yaml/tests/run-parser
|
||||||
yaml/tests/run-scanner
|
yaml/tests/run-scanner
|
||||||
|
!/yaml/aclocal.m4
|
||||||
|
!/yaml/configure
|
||||||
Communicator_semi_40.cd_semi_6000/
|
Communicator_semi_40.cd_semi_6000/
|
||||||
libogg-1.1.3/
|
libogg-1.1.3/
|
||||||
pthreads-w32-2-7-0-release/
|
pthreads-w32-2-7-0-release/
|
||||||
|
|
|
@ -1,4 +1 @@
|
||||||
.svn
|
.svn
|
||||||
.gitignore
|
|
||||||
.update
|
|
||||||
configure.gnu
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
Makefile
|
/Makefile
|
||||||
Makefile.in
|
/Makefile.in
|
||||||
include/stamp-h1
|
/include/stamp-h1
|
||||||
include/switch_am_config.h
|
/include/switch_am_config.h
|
||||||
include/switch_private.h
|
/include/switch_private.h
|
||||||
include/switch_private.h.in
|
/include/switch_private.h.in
|
||||||
include/switch_swigable_cpp.h
|
/include/switch_swigable_cpp.h
|
||||||
include/switch_version.h
|
/include/switch_version.h
|
||||||
include/switch_version.h.in
|
/include/switch_version.h.in
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Makefile
|
/Makefile
|
||||||
Makefile.in
|
/Makefile.in
|
||||||
applications/mod_commands/Makefile
|
applications/mod_commands/Makefile
|
||||||
applications/mod_conference/Makefile
|
applications/mod_conference/Makefile
|
||||||
applications/mod_dptools/Makefile
|
applications/mod_dptools/Makefile
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Makefile
|
|
@ -0,0 +1 @@
|
||||||
|
Makefile
|
|
@ -0,0 +1 @@
|
||||||
|
Makefile
|
|
@ -0,0 +1 @@
|
||||||
|
Makefile
|
|
@ -0,0 +1,2 @@
|
||||||
|
!/gsmlib/gsmlib-*/aclocal.m4
|
||||||
|
!/gsmlib/gsmlib-*/configure
|
|
@ -0,0 +1 @@
|
||||||
|
Makefile
|
Loading…
Reference in New Issue