From e285e4bb061a78d244904da8bdba99b9fc03cc5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Pol=C3=A1=C4=8Dek?= Date: Tue, 16 Jul 2019 08:39:20 +0200 Subject: [PATCH 01/37] Update VisualStudio.gitignore Visual Studio 6.0 files --- VisualStudio.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index b2480836..ee314194 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -286,6 +286,17 @@ node_modules/ # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) *.vbw +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.wbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 techical files (their purpose is unknown for me) +*.ncb +*.aps + # Visual Studio LightSwitch build output **/*.HTMLClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts From ce4e88b4a66b1da5376fa84ffdd1d8aa69157fc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Pol=C3=A1=C4=8Dek?= Date: Tue, 16 Jul 2019 09:06:11 +0200 Subject: [PATCH 02/37] Update VisualStudio.gitignore Typo --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index ee314194..f0be267f 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -287,7 +287,7 @@ node_modules/ *.vbw # Visual Studio 6 auto-generated project file (contains which files were open etc.) -*.wbp +*.vbp # Visual Studio 6 workspace and project file (working project files containing files to include in project) *.dsw From 4d9d3fff4a54f0a4b68523984f40626f0f9bc89c Mon Sep 17 00:00:00 2001 From: Pedro Machado Santa Date: Wed, 22 Jan 2020 01:51:50 +0000 Subject: [PATCH 03/37] Update and fix WordPress gitignore --- WordPress.gitignore | 40 +++++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/WordPress.gitignore b/WordPress.gitignore index a32768a9..be4d27d1 100644 --- a/WordPress.gitignore +++ b/WordPress.gitignore @@ -1,23 +1,29 @@ -# ignore everything in the root except the "wp-content" directory. -!wp-content/ +# Wordpress - ignore core, configuration, examples, uploads and logs. +# https://github.com/github/gitignore/blob/master/WordPress.gitignore -# ignore everything in the "wp-content" directory, except: -# "mu-plugins", "plugins", "themes" directory -wp-content/* -!wp-content/mu-plugins/ -!wp-content/plugins/ -!wp-content/themes/ +# Core and configuration +/wp-admin/ +/wp-content/index.php +/wp-content/plugins/index.php +/wp-content/themes/index.php +/wp-includes/ +/index.php +/license.txt +/readme.html +/wp-*.php +/xmlrpc.php -# ignore these plugins -wp-content/plugins/hello.php +# Example themes +/wp-content/themes/twenty*/ -# ignore specific themes -wp-content/themes/twenty*/ +# Example plugin +/wp-content/plugins/hello.php -# ignore node dependency directories -node_modules/ +# Uploads +/wp-content/uploads/ -# ignore log files and databases +# Log files *.log -*.sql -*.sqlite + +# htaccess +/.htaccess \ No newline at end of file From 3514a03514b3607d1c09759babb1d004367c032e Mon Sep 17 00:00:00 2001 From: Pedro Machado Santa Date: Thu, 23 Jan 2020 18:27:27 +0000 Subject: [PATCH 04/37] Update gitignore with note/option for wp core commit --- WordPress.gitignore | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/WordPress.gitignore b/WordPress.gitignore index be4d27d1..4fceea09 100644 --- a/WordPress.gitignore +++ b/WordPress.gitignore @@ -1,7 +1,10 @@ # Wordpress - ignore core, configuration, examples, uploads and logs. # https://github.com/github/gitignore/blob/master/WordPress.gitignore -# Core and configuration +# Core +# +# Note: if you want to stage/commit WP core files +# you can delete this whole section/until Configuration. /wp-admin/ /wp-content/index.php /wp-content/plugins/index.php @@ -13,6 +16,9 @@ /wp-*.php /xmlrpc.php +# Configuration +wp-config.php + # Example themes /wp-content/themes/twenty*/ From cd92ee374aac7d1697d3eac31ae13793cdeaf44e Mon Sep 17 00:00:00 2001 From: Pedro Machado Santa Date: Thu, 23 Jan 2020 20:16:15 +0000 Subject: [PATCH 05/37] Add languages folder and add commented lines for a whitelist approach --- WordPress.gitignore | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/WordPress.gitignore b/WordPress.gitignore index 4fceea09..ba95e278 100644 --- a/WordPress.gitignore +++ b/WordPress.gitignore @@ -7,6 +7,7 @@ # you can delete this whole section/until Configuration. /wp-admin/ /wp-content/index.php +/wp-content/languages /wp-content/plugins/index.php /wp-content/themes/index.php /wp-includes/ @@ -32,4 +33,16 @@ wp-config.php *.log # htaccess -/.htaccess \ No newline at end of file +/.htaccess + +# All plugins +# +# Note: If you wish to whitelist plugins, +# uncomment the next line +#/wp-content/plugins + +# All themes +# +# Note: If you wish to whitelist themes, +# uncomment the next line +#/wp-content/themes \ No newline at end of file From ea2c3d43c9e4a182b072f988430ae398019f1cf6 Mon Sep 17 00:00:00 2001 From: frederikhors <41120635+frederikhors@users.noreply.github.com> Date: Fri, 21 Feb 2020 00:12:58 +0100 Subject: [PATCH 06/37] Use real conventions Use real conventions (from the creators of dotenv)! https://github.com/bkeepers/dotenv#what-other-env-files-can-i-use --- Node.gitignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index 3d88bf0c..76d22146 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -72,8 +72,10 @@ typings/ .yarn-integrity # dotenv environment variables file -.env -.env.test +.env.development.local +.env.test.local +.env.production.local +.env.local # parcel-bundler cache (https://parceljs.org/) .cache From e00e3cc6cd889740d645f51db909c6b3b819feb3 Mon Sep 17 00:00:00 2001 From: Alessandro Cuttin Date: Fri, 27 Mar 2020 22:11:29 +0100 Subject: [PATCH 07/37] added file extensions when glossaries is loaded with "symbols" option --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 6d159be2..5f996868 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -111,6 +111,9 @@ acs-*.bib *.glsdefs *.lzo *.lzs +*.slg +*.slo +*.sls # uncomment this for glossaries-extra (will ignore makeindex's style files!) # *.ist From 22f1ff9ac0d54f7d477f2f266b4c0ba11dbb73e8 Mon Sep 17 00:00:00 2001 From: BrianMSheldon Date: Wed, 24 Jun 2020 15:47:11 -0400 Subject: [PATCH 08/37] Add JetBrains note for PyCharm to Python.gitignore First and foremost I think that requiring such a complicated gitignore for JetBrains IDEs is a failure on JetBrains part in structuring their project setting. I also feel that it should be included in the `Python.gitignore` due to its popularity and due to the frequency of requests. A quick search for `PyCharm` PRs shows 81 closed PRs requesting it be added and if searching for `.idea` you can see many more have been requested. However I understand the maintenance burden in including it when a user can manually merge the two files themselves so I understand why the maintainers have opted to maintain it seperately. The main problem I see is that with many people adding the `Python.gitignore` at project creation through the Github UI and the `JetBrains.gitignore` being in the Global folder and makes it less discoverable than it should be. This PR adds a comment for people adding the `Python.gitignore` directing them to the global `JetBrains.gitignore` which should solve this issue in a way that is acceptable for the maintainers, since comment-only sections already exist for `pyenv` and `pipenv`. --- Python.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index a81c8ee1..92ff2c4b 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -136,3 +136,10 @@ dmypy.json # Cython debug symbols cython_debug/ + +# PyCharm +# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ From 4c55d7cc4b8afda96a769c5433a9e54845a0e68b Mon Sep 17 00:00:00 2001 From: Kamil Shakirov Date: Mon, 15 Mar 2021 14:32:59 +0600 Subject: [PATCH 09/37] Update .gitignore for Idris 2 --- Idris.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Idris.gitignore b/Idris.gitignore index c28bc7cc..0f4e72c7 100644 --- a/Idris.gitignore +++ b/Idris.gitignore @@ -1,2 +1,7 @@ +# Idris 2 +*.ttc +*.ttm + +# Idris 1 *.ibc *.o From bfb5f318de959c61a98f6481ca4a6db393ba7508 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=8Dcaro=20Lima?= Date: Sun, 23 May 2021 11:08:58 -0300 Subject: [PATCH 10/37] Update Unity.gitignore --- Unity.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Unity.gitignore b/Unity.gitignore index 72c27e4f..5d29f6c3 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -59,6 +59,7 @@ sysinfo.txt *.apk *.aab *.unitypackage +*.app # Crashlytics generated file crashlytics-build.properties From 2828d5ad829ebd37eb806fc8c5ed2bcff0d8e1eb Mon Sep 17 00:00:00 2001 From: Doug Mead Date: Wed, 2 Jun 2021 12:48:49 -0600 Subject: [PATCH 11/37] Added LensStudio.gitignore (Ted Brown) --- community/LensStudio.gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 community/LensStudio.gitignore diff --git a/community/LensStudio.gitignore b/community/LensStudio.gitignore new file mode 100644 index 00000000..d3002935 --- /dev/null +++ b/community/LensStudio.gitignore @@ -0,0 +1,13 @@ +# macOS/IDE # +.DS_Store +.idea + +# js # +node_modules +yarn.lock + +# Python # +__pycache__/ +*.py[cod] +*$py.class +[Bb]ackup* From 6c4941a138f5cd506e364bc131066f37cb1ca44d Mon Sep 17 00:00:00 2001 From: Doug Mead Date: Wed, 2 Jun 2021 12:54:29 -0600 Subject: [PATCH 12/37] Added header --- community/LensStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/community/LensStudio.gitignore b/community/LensStudio.gitignore index d3002935..5aa2e950 100644 --- a/community/LensStudio.gitignore +++ b/community/LensStudio.gitignore @@ -1,3 +1,6 @@ +# gitignore template for LensStudio +# website: https://lensstudio.snapchat.com/ + # macOS/IDE # .DS_Store .idea From 9c6c78a47295f69c30b62bec9ff0cfb170e00bca Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Mon, 16 Oct 2017 11:47:57 +0800 Subject: [PATCH 13/37] Revert "Commenting out Android keystore files" This reverts commit 77145f787f311efa66c570c5ffadea10a429bf21. --- Android.gitignore | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Android.gitignore b/Android.gitignore index 5d18272e..cc118917 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -52,9 +52,8 @@ captures/ .idea/navEditor.xml # Keystore files -# Uncomment the following lines if you do not want to check your keystore files in. -#*.jks -#*.keystore +*.jks +*.keystore # External native build folder generated in Android Studio 2.2 and later .externalNativeBuild From 5f92ce62c13bf50aa03420bad0e3b935fa056dc2 Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Wed, 20 Feb 2019 17:33:34 +0800 Subject: [PATCH 14/37] Revert "add android lint files" This reverts commit 240dd3f3213b53f96932a8d92dfb523ccb51c099. --- Android.gitignore | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Android.gitignore b/Android.gitignore index cc118917..1dd87777 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -77,12 +77,5 @@ fastlane/readme.md # Version control vcs.xml -# lint -lint/intermediates/ -lint/generated/ -lint/outputs/ -lint/tmp/ -# lint/reports/ - # Android Profiling *.hprof From d799074b87ae019ebe394da6ea466cbf838fc8db Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Fri, 6 Dec 2019 13:34:53 -0800 Subject: [PATCH 15/37] Revert "Added aar file type to gitignore (#3233)" This reverts commit 1c114570c7659a59613ebc1fe45a5b07918df105. --- Android.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Android.gitignore b/Android.gitignore index 1dd87777..85629de8 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -1,6 +1,5 @@ # Built application files *.apk -*.aar *.ap_ *.aab From 9ed4f28d3ba067841d45679491038de443de00db Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Thu, 1 Jun 2017 15:30:55 +0800 Subject: [PATCH 16/37] [Android] Cleanup and remove legacy stuff --- Android.gitignore | 67 +++++++---------------------------------------- 1 file changed, 9 insertions(+), 58 deletions(-) diff --git a/Android.gitignore b/Android.gitignore index 85629de8..741323c6 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -1,21 +1,3 @@ -# Built application files -*.apk -*.ap_ -*.aab - -# Files for the ART/Dalvik VM -*.dex - -# Java class files -*.class - -# Generated files -bin/ -gen/ -out/ -# Uncomment the following line in case you need and you don't have the release build type files in your app -# release/ - # Gradle files .gradle/ build/ @@ -23,58 +5,27 @@ build/ # Local configuration file (sdk path, etc) local.properties -# Proguard folder generated by Eclipse -proguard/ - -# Log Files +# Log/OS Files *.log +.DS_Store -# Android Studio Navigation editor temp files -.navigation/ - -# Android Studio captures folder +# Android Studio generated files and folders captures/ +.externalNativeBuild/ +.cxx/ +*.apk +output.json # IntelliJ *.iml -.idea/workspace.xml -.idea/tasks.xml -.idea/gradle.xml -.idea/assetWizardSettings.xml -.idea/dictionaries -.idea/libraries -.idea/jarRepositories.xml -# Android Studio 3 in .gitignore file. -.idea/caches -.idea/modules.xml -# Comment next line if keeping position of elements in Navigation Editor is relevant for you -.idea/navEditor.xml +.idea/ # Keystore files *.jks *.keystore -# External native build folder generated in Android Studio 2.2 and later -.externalNativeBuild -.cxx/ - # Google Services (e.g. APIs or Firebase) -# google-services.json - -# Freeline -freeline.py -freeline/ -freeline_project_description.json - -# fastlane -fastlane/report.xml -fastlane/Preview.html -fastlane/screenshots -fastlane/test_output -fastlane/readme.md - -# Version control -vcs.xml +google-services.json # Android Profiling *.hprof From dd412a73a74d8b3df04dc125d358f25071b3504f Mon Sep 17 00:00:00 2001 From: Aaron Sherber Date: Wed, 8 Sep 2021 22:24:42 -0400 Subject: [PATCH 17/37] Remove nuget.config from VisualStudio.gitignore --- VisualStudio.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 34c8dee4..5aa44172 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -206,9 +206,6 @@ PublishScripts/ *.nuget.props *.nuget.targets -# Nuget personal access tokens and Credentials -nuget.config - # Microsoft Azure Build Output csx/ *.build.csdef From 49ec6fd170faf8c745fe2757461fd35f7810248d Mon Sep 17 00:00:00 2001 From: Ole-Martin Bratteng <1681525+omBratteng@users.noreply.github.com> Date: Sun, 12 Sep 2021 03:02:20 +0200 Subject: [PATCH 18/37] feat(node): added `.stylelintcache` for stylelint --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index 0125458e..2d8f1e7a 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -54,6 +54,9 @@ web_modules/ # Optional eslint cache .eslintcache +# Optional stylelint cache +.stylelintcache + # Microbundle cache .rpt2_cache/ .rts2_cache_cjs/ From edc2325d8ebdae2776b86a7d457a6b07019b9648 Mon Sep 17 00:00:00 2001 From: Lucien Zhang Date: Sun, 12 Sep 2021 23:10:01 +0900 Subject: [PATCH 19/37] Add vuepress v2.x temp and cache directory --- Node.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index 0125458e..180020a9 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -95,6 +95,10 @@ dist # vuepress build output .vuepress/dist +# vuepress v2.x temp and cache directory +.temp +.cache + # Serverless directories .serverless/ From 53f9e7ecea6f4f1fe7048295d2b6365d2945cb7c Mon Sep 17 00:00:00 2001 From: xgdgsc Date: Wed, 29 Sep 2021 17:52:57 +0800 Subject: [PATCH 20/37] Create Syncthing.gitignore --- Global/Syncthing.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 Global/Syncthing.gitignore diff --git a/Global/Syncthing.gitignore b/Global/Syncthing.gitignore new file mode 100644 index 00000000..2b9d736e --- /dev/null +++ b/Global/Syncthing.gitignore @@ -0,0 +1 @@ +.stversions From ea772bee1aaf1d377462bca003aeb25baac6e342 Mon Sep 17 00:00:00 2001 From: xgdgsc Date: Wed, 29 Sep 2021 17:57:09 +0800 Subject: [PATCH 21/37] Update Syncthing.gitignore --- Global/Syncthing.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/Syncthing.gitignore b/Global/Syncthing.gitignore index 2b9d736e..e18c9a8b 100644 --- a/Global/Syncthing.gitignore +++ b/Global/Syncthing.gitignore @@ -1 +1,2 @@ +# Syncthing caches .stversions From e77ef81b1bf41eb12b6080e82dbc350f5d09f0c1 Mon Sep 17 00:00:00 2001 From: Daniel Libanori Date: Thu, 28 Oct 2021 04:52:49 -0300 Subject: [PATCH 22/37] Ignore Rails .env according recomendations Reasons for making this change: Rails dotenv ignore is not following dotenv recommendations as stated in its documentation Links to documentation supporting these rule changes: https://github.com/bkeepers/dotenv#what-other-env-files-can-i-use --- Rails.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rails.gitignore b/Rails.gitignore index ae9df644..c55bb713 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -27,7 +27,7 @@ config/master.key # dotenv, dotenv-rails # TODO Comment out these rules if environment variables can be committed .env -.env.* +.env*.local ## Environment normalization: /.bundle From 14ef93721432b85196b402ff9c438e41a28c96c2 Mon Sep 17 00:00:00 2001 From: Benjamin Altpeter Date: Tue, 2 Nov 2021 11:10:35 +0000 Subject: [PATCH 23/37] Hugo: Add new .hugo_build.lock Version 0.89.0 of Hugo creates a new `.hugo_build.lock` lock file when building the site. The release notes suggest adding this to the `.gitignore`: https://github.com/gohugoio/hugo/releases/tag/v0.89.0 --- community/Golang/Hugo.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/community/Golang/Hugo.gitignore b/community/Golang/Hugo.gitignore index 37fa330e..996959a3 100644 --- a/community/Golang/Hugo.gitignore +++ b/community/Golang/Hugo.gitignore @@ -6,3 +6,6 @@ hugo.exe hugo.darwin hugo.linux + +# Temporary lock file while building +/.hugo_build.lock From b705152d98c301a4f9ee1e49865bce0ffbb7bc71 Mon Sep 17 00:00:00 2001 From: Josh Gadeken Date: Mon, 8 Nov 2021 03:50:27 -0700 Subject: [PATCH 24/37] Update KiCad domain. https://www.kicad.org/blog/2021/10/Avoid-links-to-former-kicad-domain/ --- KiCad.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KiCad.gitignore b/KiCad.gitignore index bd70969a..a568379c 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -1,5 +1,5 @@ -# For PCBs designed using KiCad: http://www.kicad-pcb.org/ -# Format documentation: http://kicad-pcb.org/help/file-formats/ +# For PCBs designed using KiCad: https://www.kicad.org/ +# Format documentation: https://kicad.org/help/file-formats/ # Temporary files *.000 From fbc053fe49d7f3b4a882ddf9651fc60f8954db21 Mon Sep 17 00:00:00 2001 From: Lucas Bremgartner Date: Sat, 13 Nov 2021 18:14:24 +0100 Subject: [PATCH 25/37] Go: Ignore Go workspace file go.work With Go 1.18, support for Go workspaces will land. Go workspaces are configured in `go.work`, which contains paths to local development versions of modules and therefore is not expected to be commited. See: * https://github.com/golang/go/issues/45713 --- Go.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Go.gitignore b/Go.gitignore index 66fd13c9..de67df5e 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -13,3 +13,6 @@ # Dependency directories (remove the comment below to include it) # vendor/ + +# Go workspace file +go.work From e111f1c746c268ced3d202c2a0192cf0c9d39b01 Mon Sep 17 00:00:00 2001 From: Sergey Zolotarev Date: Sun, 14 Nov 2021 22:57:55 +0600 Subject: [PATCH 26/37] Add replay_pid* to Java.gitignore --- Java.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Java.gitignore b/Java.gitignore index a1c2a238..524f0963 100644 --- a/Java.gitignore +++ b/Java.gitignore @@ -21,3 +21,4 @@ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* +replay_pid* From 8a4aa1409980987558b080b75a286d99645a83a5 Mon Sep 17 00:00:00 2001 From: Kevin JY Cui Date: Tue, 16 Nov 2021 02:55:03 -0500 Subject: [PATCH 27/37] Ignore default Recordings folder created by Unity Recorder package --- Unity.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 72c27e4f..c8f7e273 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -14,6 +14,9 @@ # They also could contain extremely sensitive data /[Mm]emoryCaptures/ +# Recordings can get excessive in size +/[Rr]ecordings/ + # Asset meta data should only be ignored when the corresponding asset is also ignored !/[Aa]ssets/**/*.meta From 8b1f9b4196f1643b01c79f120af0c8bc9d8c0536 Mon Sep 17 00:00:00 2001 From: Christer van der Meeren Date: Wed, 24 Nov 2021 09:48:11 +0100 Subject: [PATCH 28/37] Remove .idea folder from VisualStudio Conflicts with JetBrains.gitignore. Some files in this directory should be checked in. Not sure about *.sln.iml, so I'm leaving that. The JetBrains.gitignore file contains commented-out IML stuff with instructions on when to uncomment. --- VisualStudio.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 26ab8f45..1de465d5 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -384,5 +384,4 @@ FodyWeavers.xsd *.msp # JetBrains Rider -.idea/ *.sln.iml From 5f4cf9d4c30d91c321d09037fcb22f1c5dbb703c Mon Sep 17 00:00:00 2001 From: Falu Date: Sun, 28 Nov 2021 08:34:13 +0100 Subject: [PATCH 29/37] adding the initial version of the AL Language --- Global/AL.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Global/AL.gitignore diff --git a/Global/AL.gitignore b/Global/AL.gitignore new file mode 100644 index 00000000..0f5f6c4b --- /dev/null +++ b/Global/AL.gitignore @@ -0,0 +1,11 @@ +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ +*.app +.snapshots/* \ No newline at end of file From 87a13491bd7b4fc2449ec6c43a89e74bf26fa9ee Mon Sep 17 00:00:00 2001 From: Falu Date: Sun, 28 Nov 2021 08:34:56 +0100 Subject: [PATCH 30/37] new line for validation --- Global/AL.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/AL.gitignore b/Global/AL.gitignore index 0f5f6c4b..3cdf36b7 100644 --- a/Global/AL.gitignore +++ b/Global/AL.gitignore @@ -8,4 +8,4 @@ # Local History for Visual Studio Code .history/ *.app -.snapshots/* \ No newline at end of file +.snapshots/* From 1559f2ee6b86d1ccdc940567e0ea1756664b28c2 Mon Sep 17 00:00:00 2001 From: LeixB Date: Mon, 29 Nov 2021 17:26:20 +0100 Subject: [PATCH 31/37] Add `.RDataTmp` to R.gitignore When saving `.RData`, all data is initially saved in `.RDataTmp` which is then renamed to `.RData`. `.RDataTmp` should be added to `.gitignore` since it will only exist while a save operation is in progress or something failed on save. Relevant links: - https://stackoverflow.com/questions/32098036/purpose-of-rdatatmp-temporary-file-r - https://github.com/wch/r-source/blob/trunk/src/library/base/R/load.R#L145-L154 --- R.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/R.gitignore b/R.gitignore index da10c745..a7567e74 100644 --- a/R.gitignore +++ b/R.gitignore @@ -4,6 +4,7 @@ # Session Data files .RData +.RDataTmp # User-specific files .Ruserdata From 7e98309900ad82ce64a60070c7d051d47c5692c9 Mon Sep 17 00:00:00 2001 From: Brian Douglas Date: Fri, 3 Dec 2021 11:56:33 -0800 Subject: [PATCH 32/37] removes .DS-Store from the PR 2402 Feel free to open a new PR for discussion on this. --- Android.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Android.gitignore b/Android.gitignore index 741323c6..a68e5b57 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -7,7 +7,6 @@ local.properties # Log/OS Files *.log -.DS_Store # Android Studio generated files and folders captures/ From 707bb8fdfbc7cffeb2bedc7de3887b9c70734324 Mon Sep 17 00:00:00 2001 From: Brian Douglas Date: Fri, 3 Dec 2021 12:13:29 -0800 Subject: [PATCH 33/37] Adds a relationship question --- .github/PULL_REQUEST_TEMPLATE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 247a5b56..b87add4e 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,5 @@ **Reasons for making this change:** + _TODO_ From a24694b87d49b033f611126ddec700dfe3e4d2dc Mon Sep 17 00:00:00 2001 From: Brian Douglas Date: Sat, 4 Dec 2021 12:06:56 -0800 Subject: [PATCH 34/37] Update VisualStudio.gitignore Co-authored-by: Jaan Jahilo --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index f0be267f..a2171fb3 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -293,7 +293,7 @@ node_modules/ *.dsw *.dsp -# Visual Studio 6 techical files (their purpose is unknown for me) +# Visual Studio 6 technical files *.ncb *.aps From d1d0806206cf747e6d1633b0052088b385b8f4d4 Mon Sep 17 00:00:00 2001 From: Hugo Sena Ribeiro Date: Mon, 6 Dec 2021 05:34:02 -0300 Subject: [PATCH 35/37] doc(readme): master branch is now main --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2ffb7d5..8449c5e9 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ Here’s how we suggest you go about proposing a change to this project: 1. [Fork this project][fork] to your account. 2. [Create a branch][branch] for the change you intend to make. 3. Make your changes to your fork. -4. [Send a pull request][pr] from your fork’s branch to our `master` branch. +4. [Send a pull request][pr] from your fork’s branch to our `main` branch. Using the web-based interface to make changes is fine too, and will help you by automatically forking the project and prompting to send a pull request too. From 6f63e3d13adf5949a9fe0ced9dc3e2544eaa188e Mon Sep 17 00:00:00 2001 From: Jannis vH Date: Mon, 6 Dec 2021 21:03:25 +0100 Subject: [PATCH 36/37] Delete Beef.gitignore --- Beef.gitignore | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 Beef.gitignore diff --git a/Beef.gitignore b/Beef.gitignore deleted file mode 100644 index 5c26f6a2..00000000 --- a/Beef.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -build/ -recovery/ -BeefSpace_User.toml From 673f18999f32b29a47590ea4d7b81b1437cf6174 Mon Sep 17 00:00:00 2001 From: Jannis vH Date: Mon, 6 Dec 2021 21:04:32 +0100 Subject: [PATCH 37/37] Moved file to /community --- community/Beef.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 community/Beef.gitignore diff --git a/community/Beef.gitignore b/community/Beef.gitignore new file mode 100644 index 00000000..5c26f6a2 --- /dev/null +++ b/community/Beef.gitignore @@ -0,0 +1,3 @@ +build/ +recovery/ +BeefSpace_User.toml