Ignore additional vim temporary files, .a and .so files, games/ executables
This commit is contained in:
parent
fee5e8cfac
commit
3f3ee5e37f
1 changed files with 15 additions and 0 deletions
15
.gitignore
vendored
15
.gitignore
vendored
|
@ -3,6 +3,8 @@
|
||||||
|
|
||||||
# Ignore VIM's backup generated files
|
# Ignore VIM's backup generated files
|
||||||
*.swp
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
# Ignore Android generated files and folders
|
# Ignore Android generated files and folders
|
||||||
src_android/obj/
|
src_android/obj/
|
||||||
|
@ -48,6 +50,8 @@ ipch/
|
||||||
|
|
||||||
# Ignore compiled binaries
|
# Ignore compiled binaries
|
||||||
*.o
|
*.o
|
||||||
|
*.a
|
||||||
|
*.so
|
||||||
*.exe
|
*.exe
|
||||||
!tools/rREM/rrem.exe
|
!tools/rREM/rrem.exe
|
||||||
|
|
||||||
|
@ -62,6 +66,17 @@ examples/*
|
||||||
# Unignore examples Makefile
|
# Unignore examples Makefile
|
||||||
!examples/Makefile
|
!examples/Makefile
|
||||||
|
|
||||||
|
# Ignore all games files
|
||||||
|
games/*
|
||||||
|
# Unignore all games dirs
|
||||||
|
!games/*/
|
||||||
|
# Unignore all games files with extension
|
||||||
|
!games/*.c
|
||||||
|
!games/*.lua
|
||||||
|
!games/*.png
|
||||||
|
# Unignore games makefile
|
||||||
|
!games/makefile
|
||||||
|
|
||||||
# Ignore files build by xcode
|
# Ignore files build by xcode
|
||||||
*.mode*v*
|
*.mode*v*
|
||||||
*.pbxuser
|
*.pbxuser
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue