diff options
| author | RDR8 <rdr8@protonmail.com> | 2017-03-20 13:33:53 -0500 |
|---|---|---|
| committer | RDR8 <rdr8@protonmail.com> | 2017-03-20 13:47:15 -0500 |
| commit | 8278eebfac5ca818f2be6a9f67f6aaa0a3b52ccd (patch) | |
| tree | e32e8519449b6e5818140dc32f259398c42d13ac | |
| parent | fee5e8cfac83cc72b8c3ded029cefaac83617b89 (diff) | |
| download | raylib-8278eebfac5ca818f2be6a9f67f6aaa0a3b52ccd.tar.gz raylib-8278eebfac5ca818f2be6a9f67f6aaa0a3b52ccd.zip | |
Ignore vim temporary files, .a and .so, games/
| -rw-r--r-- | .gitignore | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -3,6 +3,8 @@ # Ignore VIM's backup generated files *.swp +*.swo +*~ # Ignore Android generated files and folders src_android/obj/ @@ -48,6 +50,8 @@ ipch/ # Ignore compiled binaries *.o +*.a +*.so *.exe !tools/rREM/rrem.exe @@ -62,6 +66,17 @@ examples/* # Unignore 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 *.mode*v* *.pbxuser |
