]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Tightened up .gitignore such that we are no longer ignoring files that are actually...
authorTravis Cross <tc@traviscross.com>
Mon, 5 Apr 2010 23:13:57 +0000 (23:13 +0000)
committerTravis Cross <tc@traviscross.com>
Mon, 5 Apr 2010 23:17:43 +0000 (23:17 +0000)
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
libs/.gitignore
libs/unimrcp/.gitignore
src/.gitignore
src/mod/.gitignore
src/mod/applications/mod_distributor/.gitignore [new file with mode: 0644]
src/mod/applications/mod_snapshot/.gitignore [new file with mode: 0644]
src/mod/applications/mod_vmd/.gitignore [new file with mode: 0644]
src/mod/asr_tts/mod_tts_commandline/.gitignore [new file with mode: 0644]
src/mod/endpoints/mod_gsmopen/.gitignore [new file with mode: 0644]
src/mod/event_handlers/mod_event_test/.gitignore [new file with mode: 0644]

index ae70711dd8cbbb73f89a490f7a07436b9ee195b6..a365fbfebb5735272feb60ff4582ba8824e3556f 100644 (file)
@@ -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
index 838f1031942d87489e9eebe67de5eb63cba2c9ee..c1bc468c77b7e2c735dae464063fdf4262b05497 100644 (file)
@@ -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/
index b4bc3851b3033e5943081c8ad7390adb28d8cb59..90ec22bee124705a9164f46a994cad1890bd92b5 100644 (file)
@@ -1,4 +1 @@
 .svn
-.gitignore
-.update
-configure.gnu
index 888b8d6a75a7db6346944c703179ea88791facbc..ed77c405bc09d2e8f9310bce93fcb298a1fb40ba 100644 (file)
@@ -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
index 0edc647bec7c1cf499dee722208304c5d065b321..aeb3524dada40f29b5e72c4db10d782ea874a8e9 100644 (file)
@@ -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 (file)
index 0000000..f3c7a7c
--- /dev/null
@@ -0,0 +1 @@
+Makefile
diff --git a/src/mod/applications/mod_snapshot/.gitignore b/src/mod/applications/mod_snapshot/.gitignore
new file mode 100644 (file)
index 0000000..f3c7a7c
--- /dev/null
@@ -0,0 +1 @@
+Makefile
diff --git a/src/mod/applications/mod_vmd/.gitignore b/src/mod/applications/mod_vmd/.gitignore
new file mode 100644 (file)
index 0000000..f3c7a7c
--- /dev/null
@@ -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 (file)
index 0000000..f3c7a7c
--- /dev/null
@@ -0,0 +1 @@
+Makefile
diff --git a/src/mod/endpoints/mod_gsmopen/.gitignore b/src/mod/endpoints/mod_gsmopen/.gitignore
new file mode 100644 (file)
index 0000000..9fdeeb1
--- /dev/null
@@ -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 (file)
index 0000000..f3c7a7c
--- /dev/null
@@ -0,0 +1 @@
+Makefile