mirror of
https://github.com/facebook/zstd.git
synced 2025-12-02 00:02:47 -05:00
Merge pull request #1677 from LeeYoung624/gitignore_fix
fix gitignore errors
This commit is contained in:
commit
8eda16c9f6
7
.gitignore
vendored
7
.gitignore
vendored
@ -15,6 +15,9 @@
|
|||||||
|
|
||||||
# Executables
|
# Executables
|
||||||
zstd
|
zstd
|
||||||
|
!build/VS2008/zstd
|
||||||
|
!build/VS2010/zstd
|
||||||
|
!contrib/VS2005/zstd
|
||||||
zstdmt
|
zstdmt
|
||||||
*.exe
|
*.exe
|
||||||
*.out
|
*.out
|
||||||
@ -23,6 +26,10 @@ zstdmt
|
|||||||
# Test artefacts
|
# Test artefacts
|
||||||
tmp*
|
tmp*
|
||||||
dictionary*
|
dictionary*
|
||||||
|
!examples/dictionary_compression.c
|
||||||
|
!examples/dictionary_decompression.c
|
||||||
|
!tests/fuzz/dictionary_decompress.c
|
||||||
|
!tests/fuzz/dictionary_round_trip.c
|
||||||
NUL
|
NUL
|
||||||
|
|
||||||
# Build artefacts
|
# Build artefacts
|
||||||
|
|||||||
2
build/.gitignore
vendored
2
build/.gitignore
vendored
@ -29,3 +29,5 @@ compile_commands.json
|
|||||||
CTestTestfile.cmake
|
CTestTestfile.cmake
|
||||||
build
|
build
|
||||||
lib
|
lib
|
||||||
|
!cmake/lib
|
||||||
|
!meson/lib
|
||||||
|
|||||||
1
programs/.gitignore
vendored
1
programs/.gitignore
vendored
@ -33,4 +33,5 @@ afl
|
|||||||
|
|
||||||
# Misc files
|
# Misc files
|
||||||
*.bat
|
*.bat
|
||||||
|
!windres/generate_res.bat
|
||||||
dirTest*
|
dirTest*
|
||||||
|
|||||||
1
tests/.gitignore
vendored
1
tests/.gitignore
vendored
@ -55,6 +55,7 @@ _*
|
|||||||
tmp*
|
tmp*
|
||||||
*.zst
|
*.zst
|
||||||
*.gz
|
*.gz
|
||||||
|
!gzip/hufts-segv.gz
|
||||||
result
|
result
|
||||||
out
|
out
|
||||||
*.zstd
|
*.zstd
|
||||||
|
|||||||
3
zlibWrapper/.gitignore
vendored
3
zlibWrapper/.gitignore
vendored
@ -1,11 +1,14 @@
|
|||||||
# Default result files
|
# Default result files
|
||||||
_*
|
_*
|
||||||
example.*
|
example.*
|
||||||
|
!examples/example.c
|
||||||
example_zstd.*
|
example_zstd.*
|
||||||
example_gz.*
|
example_gz.*
|
||||||
fitblk.*
|
fitblk.*
|
||||||
|
!examples/fitblk.c
|
||||||
fitblk_zstd.*
|
fitblk_zstd.*
|
||||||
zwrapbench.*
|
zwrapbench.*
|
||||||
|
!examples/zwrapbench.c
|
||||||
foo.gz
|
foo.gz
|
||||||
|
|
||||||
minigzip
|
minigzip
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user