Improve our .gitignore files
Avoid ignoring files actually in our tree, and ignore some generated files that were not being ignored previously.
This commit is contained in:
parent
5ca2276711
commit
6a5595b049
|
@ -38,6 +38,7 @@
|
|||
*.tbz2
|
||||
*.deb
|
||||
*.swp
|
||||
*.serial
|
||||
aclocal.m4
|
||||
autom4te.cache
|
||||
config.cache
|
||||
|
@ -153,7 +154,8 @@ Release/
|
|||
/src/mod/applications/mod_osp/Makefile.in
|
||||
/src/mod/applications/mod_rss/Makefile
|
||||
/src/mod/applications/mod_snipe_hunt/Makefile
|
||||
/src/mod/codecs/mod_com_g729/
|
||||
/src/mod/codecs/mod_com_g729/Makefile
|
||||
/src/mod/codecs/mod_com_g729/Makefile.in
|
||||
/src/mod/codecs/mod_dahdi_codec/Makefile
|
||||
/src/mod/dialplans/mod_dialplan_directory/Makefile
|
||||
/src/mod/formats/mod_shell_stream/Makefile
|
||||
|
@ -170,8 +172,6 @@ Release/
|
|||
|
||||
BuildLog.htm
|
||||
|
||||
Win32/
|
||||
win32/
|
||||
!/libs/win32/
|
||||
!/libs/speex/win32/
|
||||
!/src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/win32/
|
||||
|
|
|
@ -238,16 +238,48 @@ opal
|
|||
/ldns/Makefile
|
||||
/ldns/packaging/ldns-config
|
||||
/libcodec2/src/c2dec
|
||||
/libcodec2/src/c2demo
|
||||
/libcodec2/src/c2enc
|
||||
/libcodec2/src/c2sim
|
||||
/libcodec2/src/codebook.c
|
||||
/libcodec2/src/codebookd.c
|
||||
/libcodec2/src/codebookdt.c
|
||||
/libcodec2/src/codebookge.c
|
||||
/libcodec2/src/codebookjnd.c
|
||||
/libcodec2/src/codebookjvm.c
|
||||
/libcodec2/src/codebookvqanssi.c
|
||||
/libcodec2/src/fdmdv_demod
|
||||
/libcodec2/src/fdmdv_get_test_bits
|
||||
/libcodec2/src/fdmdv_interleave
|
||||
/libcodec2/src/fdmdv_mod
|
||||
/libcodec2/src/fdmdv_put_test_bits
|
||||
/libcodec2/src/generate_codebook
|
||||
/libcodec2/src/genlspdtcb
|
||||
/libcodec2/unittest/create_interleaver
|
||||
/libcodec2/unittest/de
|
||||
/libcodec2/unittest/extract
|
||||
/libcodec2/unittest/genampdata
|
||||
/libcodec2/unittest/genlsp
|
||||
/libcodec2/unittest/genphdata
|
||||
/libcodec2/unittest/genres
|
||||
/libcodec2/unittest/lspsync
|
||||
/libcodec2/unittest/polar2rect
|
||||
/libcodec2/unittest/pre
|
||||
/libcodec2/unittest/scalarlsptest
|
||||
/libcodec2/unittest/t48_8
|
||||
/libcodec2/unittest/tcodec2
|
||||
/libcodec2/unittest/tfdmdv
|
||||
/libcodec2/unittest/tfifo
|
||||
/libcodec2/unittest/tinterp
|
||||
/libcodec2/unittest/tlspsens
|
||||
/libcodec2/unittest/tnlp
|
||||
/libcodec2/unittest/tprede
|
||||
/libcodec2/unittest/tquant
|
||||
/libcodec2/unittest/vq_train_jvm
|
||||
/libcodec2/unittest/vqtrain
|
||||
/libcodec2/unittest/vqtrainjnd
|
||||
/libcodec2/unittest/vqtrainph
|
||||
/libcodec2/unittest/vqtrainsp
|
||||
/libdingaling/build/compile
|
||||
/libdingaling/Makefile
|
||||
/libdingaling/Makefile.in
|
||||
|
@ -355,6 +387,11 @@ opal
|
|||
/libwebsockets/compile
|
||||
/libwebsockets/test-server/Makefile
|
||||
/libwebsockets/test-server/Makefile.in
|
||||
/libwebsockets/test-server/libwebsockets-test-client
|
||||
/libwebsockets/test-server/libwebsockets-test-fraggle
|
||||
/libwebsockets/test-server/libwebsockets-test-ping
|
||||
/libwebsockets/test-server/libwebsockets-test-server
|
||||
/libwebsockets/test-server/libwebsockets-test-server-extpoll
|
||||
/mongo-cxx-driver-v*/
|
||||
/mpg123/
|
||||
/libmpg123/
|
||||
|
@ -925,9 +962,12 @@ opal
|
|||
/sipcc/Makefile
|
||||
/sipcc/Makefile.in
|
||||
|
||||
/yaml/
|
||||
/yaml/Makefile
|
||||
/yaml/config.h
|
||||
/yaml/include/Makefile
|
||||
/yaml/src/Makefile
|
||||
/yaml/stamp-h1
|
||||
/yaml/tests/Makefile
|
||||
/yaml/tests/example-deconstructor
|
||||
/yaml/tests/example-deconstructor-alt
|
||||
/yaml/tests/example-reformatter
|
||||
|
@ -937,6 +977,7 @@ opal
|
|||
/yaml/tests/run-loader
|
||||
/yaml/tests/run-parser
|
||||
/yaml/tests/run-scanner
|
||||
|
||||
/zeromq-*/
|
||||
/jpeg-8d/
|
||||
|
||||
|
|
|
@ -26,6 +26,9 @@ testr2
|
|||
testsangomaboost
|
||||
testtones
|
||||
|
||||
!/msvc/testanalog/
|
||||
!/msvc/testboost/
|
||||
|
||||
!/sample/boost/Makefile
|
||||
!/sample/dso/Makefile
|
||||
|
||||
|
|
|
@ -22,3 +22,6 @@ testisdn
|
|||
testpri
|
||||
testr2
|
||||
testtones
|
||||
|
||||
!/msvc/testanalog/
|
||||
!/msvc/testisdn/
|
||||
|
|
|
@ -24,16 +24,19 @@
|
|||
/applications/mod_stress/Makefile
|
||||
/applications/mod_stress/Makefile.in
|
||||
/applications/mod_stress/mod_stress.log
|
||||
/applications/mod_translate/Makefile
|
||||
/applications/mod_valet_parking/Makefile
|
||||
/applications/mod_voicemail/Makefile
|
||||
/asr_tts/mod_unimrcp/Makefile
|
||||
/asr_tts/mod_unimrcp/Makefile.in
|
||||
/asr_tts/mod_unimrcp/mod_unimrcp.log
|
||||
/asr_tts/mod_flite/*/*/mod_flite_manifest.rc
|
||||
/codecs/mod_b64/Makefile
|
||||
/codecs/mod_skel_codec/Makefile
|
||||
/codecs/mod_vp8/Makefile
|
||||
/dialplans/mod_dialplan_asterisk/Makefile
|
||||
/dialplans/mod_dialplan_xml/Makefile
|
||||
/endpoints/mod_html5/mod_html5.log
|
||||
/endpoints/mod_portaudio/Makefile
|
||||
/endpoints/mod_portaudio/Makefile.in
|
||||
/endpoints/mod_portaudio/mod_portaudio.log
|
||||
|
@ -55,8 +58,9 @@
|
|||
/formats/mod_portaudio_stream/Makefile.in
|
||||
/formats/mod_portaudio_stream/mod_portaudio_stream.log
|
||||
/formats/mod_tone_stream/Makefile
|
||||
/languages/mod_java/freeswitch.jar
|
||||
/languages/mod_java/Makefile
|
||||
/languages/mod_java/classes/
|
||||
/languages/mod_java/freeswitch.jar
|
||||
/languages/mod_lua/Makefile
|
||||
/languages/mod_lua/Makefile.in
|
||||
/languages/mod_lua/mod_lua.log
|
||||
|
|
Loading…
Reference in New Issue