From 2a8688ada18590c8e73a6c9e6245d58623200ff5 Mon Sep 17 00:00:00 2001 From: Iconer Date: Sun, 15 Sep 2019 13:57:43 +0900 Subject: [PATCH 1/4] new gitignore for GameMaker Studio 2 https://yoyogames.com/ --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..b3eacba0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Force include core files +!*.yy +!*.gml +!/*.yyp + +# Builds +*.exe +*.apk +*.pkg +*.ipa +*.app +*.zip + +# Miscellaneous +*.dll +*.log From d1c1ad94a78a1e8e408b94726ca3de66f5b22bad Mon Sep 17 00:00:00 2001 From: Iconer Date: Sun, 15 Sep 2019 14:14:35 +0900 Subject: [PATCH 2/4] Gitignore for GameMaker Studio 2 modified. * Add comments for each sections. --- .gitignore | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b3eacba0..f0ffc4d4 100644 --- a/.gitignore +++ b/.gitignore @@ -3,13 +3,23 @@ !*.gml !/*.yyp -# Builds +# Builds for Desktop *.exe -*.apk +*.zip *.pkg + +# Builds for Mobile +*.apk *.ipa *.app -*.zip +*.xarchive + +# Builds for UWP +*.appx +*.appxupload + +# Builds for HTML5 +# index.html # Miscellaneous *.dll From 74154c941fa7e0a75c0df735b9b6d1f4c7519943 Mon Sep 17 00:00:00 2001 From: Iconer Date: Sun, 15 Sep 2019 14:20:27 +0900 Subject: [PATCH 3/4] Gitignore for GameMaker Studio 2 modified. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f0ffc4d4..45081543 100644 --- a/.gitignore +++ b/.gitignore @@ -6,12 +6,12 @@ # Builds for Desktop *.exe *.zip +*.app *.pkg # Builds for Mobile *.apk *.ipa -*.app *.xarchive # Builds for UWP From 0fa159b80ab4d13e5ed5d70437a4af86af48c1da Mon Sep 17 00:00:00 2001 From: Iconer Date: Sun, 15 Sep 2019 14:21:39 +0900 Subject: [PATCH 4/4] Rename .gitignore to GameMaker-Studio-2.gitignore --- .gitignore => GameMaker-Studio-2.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .gitignore => GameMaker-Studio-2.gitignore (100%) diff --git a/.gitignore b/GameMaker-Studio-2.gitignore similarity index 100% rename from .gitignore rename to GameMaker-Studio-2.gitignore