mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
.gitignore: ignore all binary files by default
This commit is contained in:
parent
03cee3fee0
commit
3e4cd12fd0
113
.gitignore
vendored
113
.gitignore
vendored
@ -1,42 +1,7 @@
|
||||
fns.txt
|
||||
*.dSYM
|
||||
*_test
|
||||
|
||||
/v
|
||||
/v2
|
||||
/v3
|
||||
/vprod
|
||||
/v-static
|
||||
/v_old
|
||||
/v_g
|
||||
/v_cg
|
||||
/v_prod
|
||||
/v_prod_cg
|
||||
/v_prod_g
|
||||
/vjs
|
||||
|
||||
/v.c
|
||||
/v.*.c
|
||||
/v.c.out
|
||||
|
||||
/cmd/tools/check-md
|
||||
/cmd/tools/performance_compare
|
||||
/cmd/tools/oldv
|
||||
/cmd/tools/vrepl
|
||||
/cmd/tools/vself
|
||||
/cmd/tools/vtest
|
||||
/cmd/tools/vtest-compiler
|
||||
/cmd/tools/vtest-fmt
|
||||
/cmd/tools/vtest-fixed
|
||||
/cmd/tools/vfmt
|
||||
/cmd/tools/vbin2v
|
||||
/cmd/tools/vup
|
||||
/cmd/tools/vpm
|
||||
/cmd/tools/vcreate
|
||||
/cmd/tools/vbuild-examples
|
||||
/cmd/tools/vbuild-tools
|
||||
/cmd/tools/vbuild-vbinaries
|
||||
|
||||
# ignore all build binaries
|
||||
*
|
||||
!*/
|
||||
!*.*
|
||||
*.exe
|
||||
*.o
|
||||
*.so
|
||||
@ -48,44 +13,52 @@ fns.txt
|
||||
*.pdb
|
||||
*.dll
|
||||
*.lib
|
||||
|
||||
#
|
||||
# macOS.gitignore
|
||||
#
|
||||
# General
|
||||
.DS_Store
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
.vrepl_temp.v
|
||||
*.bak
|
||||
a.out
|
||||
vlib/os/bare/bare_example_linux
|
||||
|
||||
info.log
|
||||
.vscode/**
|
||||
# ignore v build files
|
||||
/v.c
|
||||
/v.*.c
|
||||
/v.c.out
|
||||
.vrepl_temp.v
|
||||
fns.txt
|
||||
|
||||
# vim/emacs editor backup files
|
||||
# ignore temp directories
|
||||
/temp
|
||||
/tmp
|
||||
|
||||
# unignore special files without extension
|
||||
!.github/PULL_REQUEST_TEMPLATE
|
||||
!.editorconfig
|
||||
!.gitattributes
|
||||
!.gitignore
|
||||
!BSDmakefile
|
||||
!Dockerfile
|
||||
!Dockerfile.alpine
|
||||
!Dockerfile.cross
|
||||
!LICENSE
|
||||
!Makefile
|
||||
|
||||
# ignore editor files
|
||||
.idea
|
||||
.project
|
||||
.classpath
|
||||
.c9
|
||||
*.launch
|
||||
.settings/
|
||||
*.sublime-workspace
|
||||
.vscode/
|
||||
*~
|
||||
|
||||
# vim gitignore
|
||||
*.swp
|
||||
*.swo
|
||||
*.swn
|
||||
|
||||
thirdparty/freetype/
|
||||
thirdparty/sdl2/
|
||||
thirdparty/SDL2_image/
|
||||
thirdparty/SDL2_mixer/
|
||||
thirdparty/SDL2_ttf/
|
||||
|
||||
# ignore debugger files
|
||||
cachegrind.out.*
|
||||
|
||||
.gdb_history
|
||||
/thirdparty/pg
|
||||
exe
|
||||
vlib/v/tests/inout/*.v
|
||||
!vlib/v/tests/inout/*_test.v
|
||||
vlib/v/checker/tests/inout/*.v
|
||||
vlib/v/checker/tests/inout/*.c
|
||||
!vlib/v/checker/tests/inout/*_test.v
|
||||
vlib/v/checker/tests/*.v
|
||||
*.dSYM
|
||||
|
||||
# ignore system files
|
||||
.DS_Store
|
||||
._*
|
||||
thumbs.db
|
||||
|
9
cmd/tools/.gitignore
vendored
9
cmd/tools/.gitignore
vendored
@ -1,9 +0,0 @@
|
||||
gen_vc
|
||||
performance_compare
|
||||
vcreate
|
||||
vnames
|
||||
vpm
|
||||
vrepl
|
||||
vtest
|
||||
vtest-compiler
|
||||
vup
|
19
examples/.gitignore
vendored
19
examples/.gitignore
vendored
@ -1,20 +1 @@
|
||||
/cli
|
||||
/fibonacci
|
||||
/fizz_buzz
|
||||
/hanoi
|
||||
/hello_v_js
|
||||
/hello_world
|
||||
/json
|
||||
/links_scraper
|
||||
/log
|
||||
/nbody
|
||||
/news_fetcher
|
||||
/path_tracing
|
||||
/quick_sort
|
||||
/random_ips
|
||||
/rune
|
||||
/spectral
|
||||
/tcp_echo_server
|
||||
/terminal_control
|
||||
|
||||
*.ppm
|
||||
|
2
examples/database/.gitignore
vendored
2
examples/database/.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
mysql
|
||||
sqlite
|
1
examples/eventbus/.gitignore
vendored
1
examples/eventbus/.gitignore
vendored
@ -1 +0,0 @@
|
||||
eventbus
|
2
examples/game_of_life/.gitignore
vendored
2
examples/game_of_life/.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
life
|
||||
life_gg
|
2
examples/gg/.gitignore
vendored
2
examples/gg/.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
/gg_freetype
|
||||
/gg2
|
4
examples/hot_reload/.gitignore
vendored
4
examples/hot_reload/.gitignore
vendored
@ -1,3 +1 @@
|
||||
bounce
|
||||
graph
|
||||
message
|
||||
!glfw3.dll
|
||||
|
1
examples/linear_regression/.gitignore
vendored
1
examples/linear_regression/.gitignore
vendored
@ -1 +0,0 @@
|
||||
simple_linear_regression
|
1
examples/pico/.gitignore
vendored
1
examples/pico/.gitignore
vendored
@ -1 +0,0 @@
|
||||
pico
|
3
examples/sokol/.gitignore
vendored
3
examples/sokol/.gitignore
vendored
@ -1,3 +0,0 @@
|
||||
fonts
|
||||
fonts2
|
||||
drawing
|
1
examples/tetris/.gitignore
vendored
1
examples/tetris/.gitignore
vendored
@ -1 +0,0 @@
|
||||
tetris
|
1
examples/vcasino/.gitignore
vendored
1
examples/vcasino/.gitignore
vendored
@ -1 +0,0 @@
|
||||
VCasino
|
1
examples/vweb/.gitignore
vendored
1
examples/vweb/.gitignore
vendored
@ -1 +0,0 @@
|
||||
vweb_example
|
1
examples/word_counter/.gitignore
vendored
1
examples/word_counter/.gitignore
vendored
@ -1 +0,0 @@
|
||||
word_counter
|
1
examples/x64/.gitignore
vendored
1
examples/x64/.gitignore
vendored
@ -1 +0,0 @@
|
||||
hello_world
|
9
thirdparty/.gitignore
vendored
Normal file
9
thirdparty/.gitignore
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
!glfw/glfw3.dll
|
||||
!glfw/msvc/glfw3.lib
|
||||
|
||||
freetype/
|
||||
sdl2/
|
||||
SDL2_image/
|
||||
SDL2_mixer/
|
||||
SDL2_ttf/
|
||||
pg/
|
2
vlib/net/ftp/.gitignore
vendored
2
vlib/net/ftp/.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
ftp_test
|
||||
*.bak
|
3
vlib/v/checker/tests/.gitignore
vendored
Normal file
3
vlib/v/checker/tests/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*.v
|
||||
*.c
|
||||
!*_test.v
|
3
vlib/v/tests/inout/.gitignore
vendored
Normal file
3
vlib/v/tests/inout/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
*.v
|
||||
!*_test.v
|
||||
!*.out
|
Loading…
Reference in New Issue
Block a user