gitignore: Use full path instead of relative path to specify patterns

This avoids confusion from patterns meant to only match at the top
level matching files in subdirectories.
pull/59/head
Diego Biurrun 13 years ago
parent 89b81a1c88
commit 40e61b7b07
  1. 70
      .gitignore

70
.gitignore vendored

@ -1,5 +1,3 @@
.config
.version
*.a *.a
*.o *.o
*.d *.d
@ -14,36 +12,38 @@
*.ver *.ver
*-example *-example
*-test *-test
config.* /.config
doc/*.1 /.version
doc/*.html /avconv
doc/*.pod /avplay
doxy /avprobe
avconv /avserver
avplay /config.*
avprobe /version.h
avserver /doc/*.1
doc/avoptions_codec.texi /doc/*.html
doc/avoptions_format.texi /doc/*.pod
doc/print_options /doc/avoptions_codec.texi
libavcodec/*_tablegen /doc/avoptions_format.texi
libavcodec/*_tables.c /doc/print_options
libavcodec/*_tables.h /doxy/
libavutil/avconfig.h /libavcodec/*_tablegen
tests/audiogen /libavcodec/*_tables.c
tests/base64 /libavcodec/*_tables.h
tests/data /libavutil/avconfig.h
tests/rotozoom /tests/audiogen
tests/tiny_psnr /tests/base64
tests/videogen /tests/data/
tests/vsynth1 /tests/rotozoom
tools/aviocat /tests/tiny_psnr
tools/cws2fws /tests/videogen
tools/graph2dot /tests/vsynth1/
tools/ismindex /tools/aviocat
tools/lavfi-showfiltfmts /tools/cws2fws
tools/pktdumper /tools/graph2dot
tools/probetest /tools/ismindex
tools/qt-faststart /tools/lavfi-showfiltfmts
tools/trasher /tools/pktdumper
version.h /tools/probetest
/tools/qt-faststart
/tools/trasher

Loading…
Cancel
Save