From 3f3ee5e37f5b91d90214e0459f6c5fd59d5a7bcb Mon Sep 17 00:00:00 2001 From: RDR8 Date: Mon, 20 Mar 2017 13:33:53 -0500 Subject: [PATCH 1/3] Ignore additional vim temporary files, .a and .so files, games/ executables --- .gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitignore b/.gitignore index a41d37416..b37dd7a1f 100644 --- a/.gitignore +++ b/.gitignore @@ -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 From 8278eebfac5ca818f2be6a9f67f6aaa0a3b52ccd Mon Sep 17 00:00:00 2001 From: RDR8 Date: Mon, 20 Mar 2017 13:33:53 -0500 Subject: [PATCH 2/3] Ignore vim temporary files, .a and .so, games/ --- .gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitignore b/.gitignore index a41d37416..b37dd7a1f 100644 --- a/.gitignore +++ b/.gitignore @@ -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 From c87006f85a680629ffb175d6bc0b147652c6a8a5 Mon Sep 17 00:00:00 2001 From: RDR8 Date: Tue, 21 Mar 2017 11:16:18 -0500 Subject: [PATCH 3/3] Don't ignore release libraries. --- .gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitignore b/.gitignore index b37dd7a1f..827d37649 100644 --- a/.gitignore +++ b/.gitignore @@ -50,8 +50,6 @@ ipch/ # Ignore compiled binaries *.o -*.a -*.so *.exe !tools/rREM/rrem.exe