mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 06:22:29 +00:00
Fix gitignore
- `*build*/` is not needed because Meson puts a .gitignore in builddir already. - `meson/` why? - `/gst*` is too wide, it includes e.g. gst-env.py, list symlinks explicitly instead. - `subprojects/*` excludes all .wrap files, and `!subprojects/gst*` is not enough because e.g. `macos-bison-binary` is still ignored. Instead ignore only directories except those we include in our git repository. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/969>
This commit is contained in:
parent
7abb8802fe
commit
c2ca545a72
1 changed files with 40 additions and 9 deletions
49
.gitignore
vendored
49
.gitignore
vendored
|
@ -1,16 +1,47 @@
|
||||||
*build*/
|
|
||||||
cscope.in.out
|
cscope.in.out
|
||||||
cscope.out
|
cscope.out
|
||||||
cscope.po.out
|
cscope.po.out
|
||||||
libnice
|
|
||||||
__pycache__
|
__pycache__
|
||||||
meson/
|
|
||||||
prefix/
|
prefix/
|
||||||
pygobject
|
|
||||||
.gdbinit
|
.gdbinit
|
||||||
|
|
||||||
/gst*
|
# Symlinks
|
||||||
subprojects/*
|
/gstreamer
|
||||||
!subprojects/gst*
|
/gst-plugins-base
|
||||||
subprojects/gst-plugins-rs/
|
/gst-plugins-good
|
||||||
subprojects/gstreamer-rs/
|
/libnice
|
||||||
|
/gst-plugins-bad
|
||||||
|
/gst-plugins-ugly
|
||||||
|
/gst-libav
|
||||||
|
/gst-rtsp-server
|
||||||
|
/gst-devtools
|
||||||
|
/gst-integration-testsuites
|
||||||
|
/gst-editing-services
|
||||||
|
/gstreamer-vaapi
|
||||||
|
/gst-omx
|
||||||
|
/gstreamer-sharp
|
||||||
|
/pygobject
|
||||||
|
/gst-python
|
||||||
|
/gst-examples
|
||||||
|
/gst-plugins-rs
|
||||||
|
|
||||||
|
subprojects/*/
|
||||||
|
!subprojects/gst-devtools
|
||||||
|
!subprojects/gst-docs
|
||||||
|
!subprojects/gst-editing-services
|
||||||
|
!subprojects/gst-examples
|
||||||
|
!subprojects/gst-integration-testsuites
|
||||||
|
!subprojects/gst-libav
|
||||||
|
!subprojects/gst-omx
|
||||||
|
!subprojects/gst-plugins-bad
|
||||||
|
!subprojects/gst-plugins-base
|
||||||
|
!subprojects/gst-plugins-good
|
||||||
|
!subprojects/gst-plugins-ugly
|
||||||
|
!subprojects/gst-python
|
||||||
|
!subprojects/gstreamer
|
||||||
|
!subprojects/gstreamer-sharp
|
||||||
|
!subprojects/gstreamer-vaapi
|
||||||
|
!subprojects/gst-rtsp-server
|
||||||
|
!subprojects/macos-bison-binary
|
||||||
|
!subprojects/win-flex-bison-binaries
|
||||||
|
!subprojects/win-nasm
|
||||||
|
|
Loading…
Reference in a new issue