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
|
||||
.\#*
|
||||
\#*
|
||||
Debug/
|
||||
Release/
|
||||
All/
|
||||
bin/
|
||||
/Debug/
|
||||
/Release/
|
||||
/All/
|
||||
/bin/
|
||||
*.user
|
||||
*.suo
|
||||
*.ncb
|
||||
|
@ -26,32 +26,35 @@ bin/
|
|||
*.manifest
|
||||
*.dep
|
||||
*.dll
|
||||
BuildLog.htm
|
||||
Path
|
||||
w32/Library/lastversion
|
||||
w32/Library/tmpVersion.Bat
|
||||
.version
|
||||
AUTHORS
|
||||
COPYING
|
||||
ChangeLog
|
||||
Makefile
|
||||
Makefile.in
|
||||
NEWS
|
||||
README
|
||||
/BuildLog.htm
|
||||
/Path
|
||||
/w32/Library/lastversion
|
||||
/w32/Library/tmpVersion.Bat
|
||||
!/w32/Console/FreeSwitchConsole.vcproj.user
|
||||
!/w32/Setup/inno_setup/vcredist_x64.exe
|
||||
!/w32/Setup/inno_setup/vcredist_x86.exe
|
||||
/.version
|
||||
/AUTHORS
|
||||
/COPYING
|
||||
/ChangeLog
|
||||
/Makefile
|
||||
/Makefile.in
|
||||
/NEWS
|
||||
/README
|
||||
aclocal.m4
|
||||
autom4te.cache
|
||||
build/Makefile
|
||||
build/Makefile.in
|
||||
build/config/compile
|
||||
build/config/config.guess
|
||||
build/config/depcomp
|
||||
build/config/install-sh
|
||||
build/config/ltmain.sh
|
||||
build/config/missing
|
||||
build/freeswitch.pc
|
||||
build/getlib.sh
|
||||
build/getsounds.sh
|
||||
build/modmake.rules
|
||||
/build/Makefile
|
||||
/build/Makefile.in
|
||||
/build/config/compile
|
||||
/build/config/config.guess
|
||||
/build/config/depcomp
|
||||
/build/config/install-sh
|
||||
/build/config/ltmain.sh
|
||||
/build/config/missing
|
||||
/build/freeswitch.pc
|
||||
/build/getlib.sh
|
||||
/build/getsounds.sh
|
||||
/build/modmake.rules
|
||||
config.cache
|
||||
config.log
|
||||
config.status
|
||||
|
@ -61,7 +64,7 @@ freeswitch
|
|||
fs_cli
|
||||
fs_ivrd
|
||||
libtool
|
||||
modules.conf
|
||||
/modules.conf
|
||||
quiet_libtool
|
||||
scripts/fsxs
|
||||
scripts/gentls_cert
|
||||
|
|
|
@ -437,6 +437,8 @@ portaudio/libtool
|
|||
portaudio/ltmain.sh
|
||||
portaudio/missing
|
||||
portaudio/portaudio-2.0.pc
|
||||
!/portaudio/bindings/cpp/build/gnu/aclocal.m4
|
||||
!/portaudio/bindings/cpp/build/gnu/configure
|
||||
silk/Makefile
|
||||
silk/Makefile.in
|
||||
silk/aclocal.m4
|
||||
|
@ -1027,6 +1029,8 @@ unimrcp/platforms/asr-client/asrclient
|
|||
unimrcp/platforms/umc/umc
|
||||
unimrcp/platforms/unimrcp-client/unimrcpclient
|
||||
unimrcp/platforms/unimrcp-server/unimrcpserver
|
||||
!/unimrcp/configure.gnu
|
||||
!/unimrcp/build/tools/unimrcpservice.exe.manifest
|
||||
yaml/config.h
|
||||
yaml/stamp-h1
|
||||
yaml/tests/example-deconstructor
|
||||
|
@ -1038,6 +1042,8 @@ yaml/tests/run-emitter
|
|||
yaml/tests/run-loader
|
||||
yaml/tests/run-parser
|
||||
yaml/tests/run-scanner
|
||||
!/yaml/aclocal.m4
|
||||
!/yaml/configure
|
||||
Communicator_semi_40.cd_semi_6000/
|
||||
libogg-1.1.3/
|
||||
pthreads-w32-2-7-0-release/
|
||||
|
|
|
@ -1,4 +1 @@
|
|||
.svn
|
||||
.gitignore
|
||||
.update
|
||||
configure.gnu
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
Makefile
|
||||
Makefile.in
|
||||
include/stamp-h1
|
||||
include/switch_am_config.h
|
||||
include/switch_private.h
|
||||
include/switch_private.h.in
|
||||
include/switch_swigable_cpp.h
|
||||
include/switch_version.h
|
||||
include/switch_version.h.in
|
||||
/Makefile
|
||||
/Makefile.in
|
||||
/include/stamp-h1
|
||||
/include/switch_am_config.h
|
||||
/include/switch_private.h
|
||||
/include/switch_private.h.in
|
||||
/include/switch_swigable_cpp.h
|
||||
/include/switch_version.h
|
||||
/include/switch_version.h.in
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Makefile
|
||||
Makefile.in
|
||||
/Makefile
|
||||
/Makefile.in
|
||||
applications/mod_commands/Makefile
|
||||
applications/mod_conference/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