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/48] 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/48] 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/48] 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/48] 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/48] 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/48] 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/48] 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/48] 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/48] 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/48] 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/48] 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/48] 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 1503b47796e8045b9db1abb26630255f070965e7 Mon Sep 17 00:00:00 2001 From: Parsa Date: Sat, 12 Jun 2021 14:49:35 +0430 Subject: [PATCH 13/48] Revert #3706 Revert changes in #3706 due to the inconveniency which developers reported by commenting the added line. --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 34c8dee4..26ab8f45 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -207,7 +207,7 @@ PublishScripts/ *.nuget.targets # Nuget personal access tokens and Credentials -nuget.config +# nuget.config # Microsoft Azure Build Output csx/ From 9c6c78a47295f69c30b62bec9ff0cfb170e00bca Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Mon, 16 Oct 2017 11:47:57 +0800 Subject: [PATCH 14/48] 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 15/48] 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 16/48] 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 17/48] [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 18/48] 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 19/48] 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 20/48] 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 8be0bf6f8ff86cfed5f4c47e3ec78b11c196ceeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=A9=EC=84=B1=EB=B2=94=20=28Bang=20Seongbeom=29?= Date: Sat, 18 Sep 2021 17:12:32 +0900 Subject: [PATCH 21/48] Make not to ignore *.code-workspace **Reasons for making this change:** Workspace file can allow you to have an individual VS Code setting file for each project, which is useful for monorepo-based development. You can find an example on [lit/lit/lit-next.code-workspace](https://github.com/lit/lit/blob/08f60328abf83113fe82c9d8ee43dc71f10a9b77/lit-next.code-workspace). **Links to documentation supporting these rule changes:** https://code.visualstudio.com/docs/editor/multi-root-workspaces#_workspace-file --- Global/VisualStudioCode.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore index 85813e1c..de105989 100644 --- a/Global/VisualStudioCode.gitignore +++ b/Global/VisualStudioCode.gitignore @@ -3,7 +3,6 @@ !.vscode/tasks.json !.vscode/launch.json !.vscode/extensions.json -*.code-workspace # Local History for Visual Studio Code .history/ From 53f9e7ecea6f4f1fe7048295d2b6365d2945cb7c Mon Sep 17 00:00:00 2001 From: xgdgsc Date: Wed, 29 Sep 2021 17:52:57 +0800 Subject: [PATCH 22/48] 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 23/48] 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 24/48] 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 b3338626a34e02dc46bcd1448be63fa0635421d7 Mon Sep 17 00:00:00 2001 From: Jesse Schalken Date: Mon, 1 Nov 2021 23:52:35 +1100 Subject: [PATCH 25/48] Ignore directories from the Bazel IntelliJ plugin These directories contain the generated project files from the Bazel IntelliJ plugin. See these links for info: https://github.com/bazelbuild/intellij/blob/8c92239f41b20dcf88a22dcb3f44b5a9bdf46a95/.gitignore https://github.com/bazelbuild/intellij/blob/8c92239f41b20dcf88a22dcb3f44b5a9bdf46a95/base/src/com/google/idea/blaze/base/sync/data/BlazeDataStorage.java#L36 --- community/Bazel.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/community/Bazel.gitignore b/community/Bazel.gitignore index a08ff486..bc3afc20 100644 --- a/community/Bazel.gitignore +++ b/community/Bazel.gitignore @@ -4,3 +4,10 @@ # Ignore all bazel-* symlinks. There is no full list since this can change # based on the name of the directory bazel is cloned into. /bazel-* + +# Directories for the Bazel IntelliJ plugin containing the generated +# IntelliJ project files and plugin configuration. Seperate directories are +# for the IntelliJ, Android Studio and CLion versions of the plugin. +/.ijwb/ +/.aswb/ +/.clwb/ From 4101e3f666fb4944b1be6c28bd20cc4596409f90 Mon Sep 17 00:00:00 2001 From: GuillemPM Date: Tue, 2 Nov 2021 10:44:10 +0100 Subject: [PATCH 26/48] Add .gitignore for Microsoft Business Central --- AL.gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AL.gitignore diff --git a/AL.gitignore b/AL.gitignore new file mode 100644 index 00000000..02eac698 --- /dev/null +++ b/AL.gitignore @@ -0,0 +1,22 @@ +### AL ### +#Template for AL projects for Dynamics 365 Business Central +#launch.json folder +.vscode/ +#Cache folder +.alcache/ +#Symbols folder +.alpackages/ +#Snapshots folder +.snapshots/ +#Testing Output folder +.output/ +#Extension App-file +*.app +#Rapid Application Development File +rad.json +#Translation Base-file +*.g.xlf +#License-file +*.flf +#Test results file +TestResults.xml \ No newline at end of file From 14ef93721432b85196b402ff9c438e41a28c96c2 Mon Sep 17 00:00:00 2001 From: Benjamin Altpeter Date: Tue, 2 Nov 2021 11:10:35 +0000 Subject: [PATCH 27/48] 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 450e32dd8f56bda53b15a17911e2448ffd286c12 Mon Sep 17 00:00:00 2001 From: Patrick Kollitsch <83281+davidsneighbour@users.noreply.github.com> Date: Wed, 3 Nov 2021 19:58:18 +0700 Subject: [PATCH 28/48] Add files to Hugo.gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three new files to ignore for GoHugo repositories: - `/assets/jsconfig.json` - Quote from [JavaScript Building](https://gohugo.io/hugo-pipes/js/): "Hugo will, by default, generate a assets/jsconfig.json file that maps the imports. This is useful for navigation/intellisense help inside code editors, but if you don’t need/want it, you can turn it off." - `hugo_stats.json` - Quote from [Post Build Resource Transformations ](https://gohugo.io/news/0.69.0-relnotes/): "The prime current use case for the above is CSS pruning in PostCSS. In simple cases you can use the templates as a base for the content filters, but that has its limitations and can be very hard to setup, especially in themed configurations. So we have added a new writeStats configuration that, when enabled, will write a file named hugo_stats.json to your project root with some aggregated data about the build, e.g. list of HTML entities published, to be used to do CSS pruning." - `.hugo_build.lock` - Quote from [Fine Grained File Filters ](https://gohugo.io/news/0.89.0-relnotes/): "Hugo now writes an empty file named .hugo_build.lock to the root of the project when building (also when doing hugo new mypost.md and other commands that requires a build). We recommend you just leave this file alone. Put it in .gitignore or similar if you don’t want the file in your source repository." --- community/Golang/Hugo.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/community/Golang/Hugo.gitignore b/community/Golang/Hugo.gitignore index 37fa330e..ce82e952 100644 --- a/community/Golang/Hugo.gitignore +++ b/community/Golang/Hugo.gitignore @@ -1,6 +1,9 @@ # Generated files by hugo /public/ /resources/_gen/ +/assets/jsconfig.json +hugo_stats.json +.hugo_build.lock # Executable may be added to repository hugo.exe From a117ddb61ac122d9c2fee94457fac02ce36732c4 Mon Sep 17 00:00:00 2001 From: Jannis vH Date: Wed, 3 Nov 2021 21:47:57 +0100 Subject: [PATCH 29/48] Gitignore template for Beef programming language --- Beef.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Beef.gitignore diff --git a/Beef.gitignore b/Beef.gitignore new file mode 100644 index 00000000..5c26f6a2 --- /dev/null +++ b/Beef.gitignore @@ -0,0 +1,3 @@ +build/ +recovery/ +BeefSpace_User.toml From b705152d98c301a4f9ee1e49865bce0ffbb7bc71 Mon Sep 17 00:00:00 2001 From: Josh Gadeken Date: Mon, 8 Nov 2021 03:50:27 -0700 Subject: [PATCH 30/48] 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 31/48] 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 32/48] 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 33/48] 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 34/48] 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 35/48] 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 36/48] 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 37/48] 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 38/48] 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 39/48] 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 40/48] 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 d228b84884bd788d7c93f46ea34949ba92325251 Mon Sep 17 00:00:00 2001 From: Patrick Kollitsch <83281+davidsneighbour@users.noreply.github.com> Date: Sun, 5 Dec 2021 09:29:38 +0700 Subject: [PATCH 41/48] update Hugo.gitignore --- community/Golang/Hugo.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/community/Golang/Hugo.gitignore b/community/Golang/Hugo.gitignore index ce82e952..c8fe66f8 100644 --- a/community/Golang/Hugo.gitignore +++ b/community/Golang/Hugo.gitignore @@ -3,7 +3,6 @@ /resources/_gen/ /assets/jsconfig.json hugo_stats.json -.hugo_build.lock # Executable may be added to repository hugo.exe From d1d0806206cf747e6d1633b0052088b385b8f4d4 Mon Sep 17 00:00:00 2001 From: Hugo Sena Ribeiro Date: Mon, 6 Dec 2021 05:34:02 -0300 Subject: [PATCH 42/48] 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 43/48] 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 44/48] 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 From 093b0fbce96a7d35e3967bae2add4480a64949fd Mon Sep 17 00:00:00 2001 From: Wiblz Date: Mon, 6 Dec 2021 23:39:54 +0100 Subject: [PATCH 45/48] Replace references of this repo's "master" branch with "main". --- Python.gitignore | 2 +- Umbraco.gitignore | 2 +- Unity.gitignore | 2 +- VisualStudio.gitignore | 2 +- WordPress.gitignore | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Python.gitignore b/Python.gitignore index 92ff2c4b..5fe6ea2f 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -139,7 +139,7 @@ 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 +# be found at https://github.com/github/gitignore/blob/main/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/ diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 1f186d0f..d4d9e9f7 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -1,6 +1,6 @@ ## Ignore Umbraco files/folders generated for each instance ## -## Get latest from https://github.com/github/gitignore/blob/master/Umbraco.gitignore +## Get latest from https://github.com/github/gitignore/blob/main/Umbraco.gitignore # Note: VisualStudio gitignore rules may also be relevant diff --git a/Unity.gitignore b/Unity.gitignore index 0f9943c9..082076fa 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -1,6 +1,6 @@ # This .gitignore file should be placed at the root of your Unity project directory # -# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore +# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore # /[Ll]ibrary/ /[Tt]emp/ diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 0b917202..bd218515 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -1,7 +1,7 @@ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. ## -## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore # User-specific files *.rsuser diff --git a/WordPress.gitignore b/WordPress.gitignore index ba95e278..54696693 100644 --- a/WordPress.gitignore +++ b/WordPress.gitignore @@ -1,5 +1,5 @@ # Wordpress - ignore core, configuration, examples, uploads and logs. -# https://github.com/github/gitignore/blob/master/WordPress.gitignore +# https://github.com/github/gitignore/blob/main/WordPress.gitignore # Core # From 596862f8b5f7103a46f9cdd6e77074ec8a351ddf Mon Sep 17 00:00:00 2001 From: JP-Ellis Date: Tue, 7 Dec 2021 10:31:40 +1100 Subject: [PATCH 46/48] [Python] Add poetry.lock Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. This is especially recommended for binary packages to ensure reproducibility, and is more commonly ignored for libraries. This is taken from https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control --- Python.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 92ff2c4b..a13ea059 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -94,6 +94,13 @@ ipython_config.py # install all needed dependencies. #Pipfile.lock +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + # PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/ From 4e89ae30edecbbd49d72fb3a04142ca05b46f07e Mon Sep 17 00:00:00 2001 From: kuritka Date: Tue, 7 Dec 2021 16:50:54 +0100 Subject: [PATCH 47/48] Adding AllowList for Go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Reasons for making this change:** _Allowlisting with .gitignore is a technique for dealing with source trees that can have various different untracked local files such as generated output, packages installed through package managers, “working” files, config for individual developers, etc. Rather than trying to come up with some master list of all possible untracked files and add them to .gitignore, it can be easier to start by ignoring everything and then add specific directories back._ _I think the requirements for software development are changing and there is a need to offer an alternative to the denylist._ - https://jasonstitt.com/gitignore-whitelisting-patterns - https://github.com/golang/go Signed-off-by: kuritka --- community/Golang/Go.AllowList.gitignore | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 community/Golang/Go.AllowList.gitignore diff --git a/community/Golang/Go.AllowList.gitignore b/community/Golang/Go.AllowList.gitignore new file mode 100644 index 00000000..a309a018 --- /dev/null +++ b/community/Golang/Go.AllowList.gitignore @@ -0,0 +1,23 @@ +# Allowlisting gitignore template for GO projects prevents us +# from adding various unwanted local files, such as generated +# files, developer configurations or IDE-specific files etc. +# +# Recommended: Go.AllowList.gitignore + +# Ignore everything +* + +# But not these files... +!/.gitignore + +!*.go +!go.sum +!go.mod + +!README.md +!LICENSE + +# !Makefile + +# ...even if they are in subdirectories +!*/ From f07a642eb9f65c340a107602eaf82f2bef952bfb Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 10 Dec 2021 10:59:08 +0900 Subject: [PATCH 48/48] Update VS Code to support *.code-snippets --- Global/VisualStudioCode.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore index de105989..a6ba1bff 100644 --- a/Global/VisualStudioCode.gitignore +++ b/Global/VisualStudioCode.gitignore @@ -3,6 +3,7 @@ !.vscode/tasks.json !.vscode/launch.json !.vscode/extensions.json +!.vscode/*.code-snippets # Local History for Visual Studio Code .history/