From db26c65ea7221130bf8610e1b2914833a722b2de Mon Sep 17 00:00:00 2001 From: Travis Cross Date: Mon, 5 Apr 2010 23:13:57 +0000 Subject: [PATCH] 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:" --- .gitignore | 61 ++++++++++--------- libs/.gitignore | 6 ++ libs/unimrcp/.gitignore | 3 - src/.gitignore | 18 +++--- src/mod/.gitignore | 4 +- .../applications/mod_distributor/.gitignore | 1 + src/mod/applications/mod_snapshot/.gitignore | 1 + src/mod/applications/mod_vmd/.gitignore | 1 + .../asr_tts/mod_tts_commandline/.gitignore | 1 + src/mod/endpoints/mod_gsmopen/.gitignore | 2 + .../event_handlers/mod_event_test/.gitignore | 1 + 11 files changed, 56 insertions(+), 43 deletions(-) create mode 100644 src/mod/applications/mod_distributor/.gitignore create mode 100644 src/mod/applications/mod_snapshot/.gitignore create mode 100644 src/mod/applications/mod_vmd/.gitignore create mode 100644 src/mod/asr_tts/mod_tts_commandline/.gitignore create mode 100644 src/mod/endpoints/mod_gsmopen/.gitignore create mode 100644 src/mod/event_handlers/mod_event_test/.gitignore diff --git a/.gitignore b/.gitignore index ae70711dd8..a365fbfebb 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/libs/.gitignore b/libs/.gitignore index 838f103194..c1bc468c77 100644 --- a/libs/.gitignore +++ b/libs/.gitignore @@ -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/ diff --git a/libs/unimrcp/.gitignore b/libs/unimrcp/.gitignore index b4bc3851b3..90ec22bee1 100644 --- a/libs/unimrcp/.gitignore +++ b/libs/unimrcp/.gitignore @@ -1,4 +1 @@ .svn -.gitignore -.update -configure.gnu diff --git a/src/.gitignore b/src/.gitignore index 888b8d6a75..ed77c405bc 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -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 diff --git a/src/mod/.gitignore b/src/mod/.gitignore index 0edc647bec..aeb3524dad 100644 --- a/src/mod/.gitignore +++ b/src/mod/.gitignore @@ -1,5 +1,5 @@ -Makefile -Makefile.in +/Makefile +/Makefile.in applications/mod_commands/Makefile applications/mod_conference/Makefile applications/mod_dptools/Makefile diff --git a/src/mod/applications/mod_distributor/.gitignore b/src/mod/applications/mod_distributor/.gitignore new file mode 100644 index 0000000000..f3c7a7c5da --- /dev/null +++ b/src/mod/applications/mod_distributor/.gitignore @@ -0,0 +1 @@ +Makefile diff --git a/src/mod/applications/mod_snapshot/.gitignore b/src/mod/applications/mod_snapshot/.gitignore new file mode 100644 index 0000000000..f3c7a7c5da --- /dev/null +++ b/src/mod/applications/mod_snapshot/.gitignore @@ -0,0 +1 @@ +Makefile diff --git a/src/mod/applications/mod_vmd/.gitignore b/src/mod/applications/mod_vmd/.gitignore new file mode 100644 index 0000000000..f3c7a7c5da --- /dev/null +++ b/src/mod/applications/mod_vmd/.gitignore @@ -0,0 +1 @@ +Makefile diff --git a/src/mod/asr_tts/mod_tts_commandline/.gitignore b/src/mod/asr_tts/mod_tts_commandline/.gitignore new file mode 100644 index 0000000000..f3c7a7c5da --- /dev/null +++ b/src/mod/asr_tts/mod_tts_commandline/.gitignore @@ -0,0 +1 @@ +Makefile diff --git a/src/mod/endpoints/mod_gsmopen/.gitignore b/src/mod/endpoints/mod_gsmopen/.gitignore new file mode 100644 index 0000000000..9fdeeb1412 --- /dev/null +++ b/src/mod/endpoints/mod_gsmopen/.gitignore @@ -0,0 +1,2 @@ +!/gsmlib/gsmlib-*/aclocal.m4 +!/gsmlib/gsmlib-*/configure diff --git a/src/mod/event_handlers/mod_event_test/.gitignore b/src/mod/event_handlers/mod_event_test/.gitignore new file mode 100644 index 0000000000..f3c7a7c5da --- /dev/null +++ b/src/mod/event_handlers/mod_event_test/.gitignore @@ -0,0 +1 @@ +Makefile