From c992170f39243e97565e2c0fd1eeca3014a3086c Mon Sep 17 00:00:00 2001 From: Jakob Sagatowski Date: Sat, 22 Jun 2019 15:00:35 +0200 Subject: [PATCH 001/136] Added gitignore-file for Beckhoff TwinCAT. --- TwinCAT.gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 TwinCAT.gitignore diff --git a/TwinCAT.gitignore b/TwinCAT.gitignore new file mode 100644 index 00000000..f9abebbd --- /dev/null +++ b/TwinCAT.gitignore @@ -0,0 +1,15 @@ +# gitignore template for TwinCAT +# website: https://www.beckhoff.com/twincat/ +# +# Recommended: VisualStudio.gitignore + +# TwinCAT files +*.tpy +*.tclrs +*.compiled-library +*.compileinfo +*.tmc +*.library +_Boot/ +_CompileInfo/ +_Libraries/ \ No newline at end of file From e4fe597296aabb7f8fe1a3cc9b9c8dbdf329a8f8 Mon Sep 17 00:00:00 2001 From: Jakob Sagatowski Date: Sat, 13 Jul 2019 18:41:49 +0200 Subject: [PATCH 002/136] Renamed TwinCAT.gitignore to TwinCAT3.gitignore so it's obvious this is a gitignore file only applicable for TwinCAT3 and not also TwinCAT2 (which stores everything in a big binary blob). --- TwinCAT.gitignore => TwinCAT3.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename TwinCAT.gitignore => TwinCAT3.gitignore (65%) diff --git a/TwinCAT.gitignore b/TwinCAT3.gitignore similarity index 65% rename from TwinCAT.gitignore rename to TwinCAT3.gitignore index f9abebbd..6fbcd797 100644 --- a/TwinCAT.gitignore +++ b/TwinCAT3.gitignore @@ -1,5 +1,5 @@ -# gitignore template for TwinCAT -# website: https://www.beckhoff.com/twincat/ +# gitignore template for TwinCAT3 +# website: https://www.beckhoff.com/twincat3/ # # Recommended: VisualStudio.gitignore 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 003/136] 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 004/136] 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 414be70b393643f3b998a04912e52cdc7e737c61 Mon Sep 17 00:00:00 2001 From: Jakob Sagatowski Date: Mon, 14 Oct 2019 07:45:54 +0200 Subject: [PATCH 005/136] Added: - tmcRefac - project.~u - tsproj.bak - xti.bak (TwinCAT export files backup) --- TwinCAT3.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TwinCAT3.gitignore b/TwinCAT3.gitignore index 6fbcd797..88377455 100644 --- a/TwinCAT3.gitignore +++ b/TwinCAT3.gitignore @@ -9,7 +9,11 @@ *.compiled-library *.compileinfo *.tmc +*.tmcRefac *.library +*.project.~u +*.tsproj.bak +*.xti.bak _Boot/ _CompileInfo/ _Libraries/ \ No newline at end of file From d38de74008151753b574ebad0d3171ff1025e65e Mon Sep 17 00:00:00 2001 From: Jakob Sagatowski Date: Thu, 5 Dec 2019 12:42:11 +0100 Subject: [PATCH 006/136] Clarified *.tmc-files rule. --- TwinCAT3.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TwinCAT3.gitignore b/TwinCAT3.gitignore index 88377455..87b50cf0 100644 --- a/TwinCAT3.gitignore +++ b/TwinCAT3.gitignore @@ -8,6 +8,9 @@ *.tclrs *.compiled-library *.compileinfo +# Don't include the tmc-file rule if either of the following is true: +# 1. You've got TwinCAT C++ projects, as the information in the TMC-file is created manually for the C++ projects (in that case, only (manually) ignore the tmc-files for the PLC projects) +# 2. You've created a standalone PLC-project and added events to it, as these are stored in the TMC-file. *.tmc *.tmcRefac *.library From 4d9d3fff4a54f0a4b68523984f40626f0f9bc89c Mon Sep 17 00:00:00 2001 From: Pedro Machado Santa Date: Wed, 22 Jan 2020 01:51:50 +0000 Subject: [PATCH 007/136] 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 008/136] 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 009/136] 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 7d05cd61d4d33d11da1bec19e43b89325aae9e25 Mon Sep 17 00:00:00 2001 From: Jakob Sagatowski Date: Sat, 25 Jan 2020 19:13:52 +0100 Subject: [PATCH 010/136] As a product of enabling the write of separate LineIDs (described here https://github.com/tcunit/TcUnit/issues/85) and having a discussion with Beckhoff support, it was concluded that the files "LineIDs.dbg" and "LineIDs.dbg.bak" should not be version controlled, and thus these two are added to the gitignore-file for TwinCAT3. --- TwinCAT3.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TwinCAT3.gitignore b/TwinCAT3.gitignore index 87b50cf0..cb3926ab 100644 --- a/TwinCAT3.gitignore +++ b/TwinCAT3.gitignore @@ -17,6 +17,8 @@ *.project.~u *.tsproj.bak *.xti.bak +LineIDs.dbg +LineIDs.dbg.bak _Boot/ _CompileInfo/ _Libraries/ \ 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 011/136] 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 289a9e700a8fcad30270fc5e258995a76ca0ee71 Mon Sep 17 00:00:00 2001 From: "dsrini.open" Date: Wed, 4 Mar 2020 17:16:41 -0600 Subject: [PATCH 012/136] Ignore AWS specific file with IDEA --- Global/JetBrains.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 8da0824b..0a16fa71 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -8,6 +8,9 @@ .idea/**/dictionaries .idea/**/shelf +# AWS User-specific +.idea/**/aws.xml + # Generated files .idea/**/contentModel.xml From e00e3cc6cd889740d645f51db909c6b3b819feb3 Mon Sep 17 00:00:00 2001 From: Alessandro Cuttin Date: Fri, 27 Mar 2020 22:11:29 +0100 Subject: [PATCH 013/136] 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 e448b41613502a56c8124916874cf3b6b098d1ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Algarvio?= Date: Tue, 28 Apr 2020 18:56:15 +0100 Subject: [PATCH 014/136] Update Drupal.gitignore with upstream conventions: prefix /web for drupal code; remove deprecated simpletest directory; allow project composer.json|lock at root; add /vendor, composer, robo, drush and drupal scripts to root --- Drupal.gitignore | 87 ++++++++++++++++++++++++++++-------------------- 1 file changed, 50 insertions(+), 37 deletions(-) diff --git a/Drupal.gitignore b/Drupal.gitignore index 8421b864..faae8083 100644 --- a/Drupal.gitignore +++ b/Drupal.gitignore @@ -1,49 +1,62 @@ # gitignore template for Drupal 8 projects # # earlier versions of Drupal are tracked in `community/PHP/` +# +# follows official upstream conventions: +# https://www.drupal.org/docs/develop/using-composer # Ignore configuration files that may contain sensitive information -/sites/*/*settings*.php -/sites/*/*services*.yml +/web/sites/*/*settings*.php +/web/sites/*/*services*.yml # Ignore paths that may contain user-generated content -/sites/*/files -/sites/*/public -/sites/*/private -/sites/*/files-public -/sites/*/files-private +/web/sites/*/files +/web/sites/*/public +/web/sites/*/private +/web/sites/*/files-public +/web/sites/*/files-private # Ignore paths that may contain temporary files -/sites/*/translations -/sites/*/tmp -/sites/*/cache - -# Ignore testing related files -/sites/simpletest +/web/sites/*/translations +/web/sites/*/tmp +/web/sites/*/cache # Ignore drupal core (if not versioning drupal sources) -/core +/web/vendor +/web/core +/web/modules/README.txt +/web/profiles/README.txt +/web/sites/development.services.yml +/web/sites/example.settings.local.php +/web/sites/example.sites.php +/web/sites/README.txt +/web/themes/README.txt +/web/.csslintrc +/web/.editorconfig +/web/.eslintignore +/web/.eslintrc.json +/web/.gitattributes +/web/.htaccess +/web/.ht.router.php +/web/autoload.php +/web/composer.json +/web/composer.lock +/web/example.gitignore +/web/index.php +/web/INSTALL.txt +/web/LICENSE.txt +/web/README.txt +/web/robots.txt +/web/update.php +/web/web.config + +# Ignore vendor dependencies and scripts /vendor -/modules/README.txt -/profiles/README.txt -/themes/README.txt -/sites/README.txt -/sites/example.sites.php -/sites/example.settings.local.php -/sites/development.services.yml -/.csslintrc -/.editorconfig -/.eslintignore -/.eslintrc.json -/.gitattributes -/.ht.router.php -/.htaccess -/autoload.php -/example.gitignore -/index.php -/INSTALL.txt -/LICENSE.txt -/README.txt -/robots.txt -/update.php -/web.config +/composer.phar +/composer +/robo.phar +/robo +/drush.phar +/drush +/drupal.phar +/drupal From 88014e6d0c75dfd0927348800404bb58d80aede6 Mon Sep 17 00:00:00 2001 From: Jakob Sagatowski Date: Tue, 26 May 2020 16:17:55 +0200 Subject: [PATCH 015/136] After adding the new product "TF3680 - TC3 Filter" as a reference, some new files were automatically generated after compilation: _ModuleInstall/TcFilter/TwinCAT CE7 (ARMV7)/TcFilterW32.dll _ModuleInstall/TcFilter/TwinCAT CE7 (x86)/TcFilterW32.dll _ModuleInstall/TcFilter/TwinCAT RT (x64)/TcFilter.sys _ModuleInstall/TcFilter/TwinCAT RT (x86)/TcFilter.sys After contacting Beckhoff support, it was concluded that the folder "_ModuleInstall" could be omitted from version control, thus this addition. --- TwinCAT3.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TwinCAT3.gitignore b/TwinCAT3.gitignore index cb3926ab..7bd6f875 100644 --- a/TwinCAT3.gitignore +++ b/TwinCAT3.gitignore @@ -21,4 +21,5 @@ LineIDs.dbg LineIDs.dbg.bak _Boot/ _CompileInfo/ -_Libraries/ \ No newline at end of file +_Libraries/ +_ModuleInstall/ \ No newline at end of file From 22f1ff9ac0d54f7d477f2f266b4c0ba11dbb73e8 Mon Sep 17 00:00:00 2001 From: BrianMSheldon Date: Wed, 24 Jun 2020 15:47:11 -0400 Subject: [PATCH 016/136] 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 cba2455e53db0bca1ffc4d6291866256623567ca Mon Sep 17 00:00:00 2001 From: schtandard Date: Fri, 9 Oct 2020 12:26:48 +0200 Subject: [PATCH 017/136] Add svg temporary files The svg package creates two temporary files for each .svg file that is included in the document (one .pdf file and one .pdf_tex file). These are placed into a subfolder called svg-inkscape/ by default. --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 8a42ebbd..f96d8f44 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -185,6 +185,9 @@ _minted* # scrwfile *.wrt +# svg +svg-inkscape/ + # sympy *.sout *.sympy From dd042058b9e1fc17af55f2c94828b2bb175bcbe1 Mon Sep 17 00:00:00 2001 From: TigerC10 Date: Tue, 29 Dec 2020 16:58:14 -0600 Subject: [PATCH 018/136] Updating JetBrains template, adding SonarLint Plugin --- Global/JetBrains.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 8da0824b..25af3672 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -58,6 +58,9 @@ atlassian-ide-plugin.xml # Cursive Clojure plugin .idea/replstate.xml +# SonarLint plugin +.idea/sonarlint/ + # Crashlytics plugin (for Android Studio and IntelliJ) com_crashlytics_export_strings.xml crashlytics.properties From bb28a8ce82effdb5990155a13f3eed9e063d9245 Mon Sep 17 00:00:00 2001 From: James Kerrane Date: Tue, 9 Feb 2021 18:32:09 -0700 Subject: [PATCH 019/136] Delete fixed workaround The workaround for https://youtrack.jetbrains.com/issue/IDEA-116898 is fixed now, so we can remove the workaround. --- Gradle.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Gradle.gitignore b/Gradle.gitignore index 8d68edc9..85888bb2 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -10,6 +10,3 @@ gradle-app.setting # Cache of project .gradletasknamecache - -# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 -# gradle/wrapper/gradle-wrapper.properties From 6586918a4241a1e98166b3f3857518f5d031918b Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Tue, 16 Feb 2021 03:02:14 +0900 Subject: [PATCH 020/136] Ignore `.env.*` in Node.js --- Node.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 1f22b9c2..3262bc3b 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -70,7 +70,7 @@ web_modules/ # dotenv environment variables file .env -.env.test +.env.* # parcel-bundler cache (https://parceljs.org/) .cache From 08b10f18e723a2d83fffb51085fd0546163bcd43 Mon Sep 17 00:00:00 2001 From: Arthur <49537282+arthur-lchl@users.noreply.github.com> Date: Mon, 15 Feb 2021 22:38:15 +0100 Subject: [PATCH 021/136] style(Autotools): remove trailing whitespaces --- Autotools.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Autotools.gitignore b/Autotools.gitignore index f2c137d0..b2453293 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -44,8 +44,8 @@ m4/ltsugar.m4 m4/ltversion.m4 m4/lt~obsolete.m4 -# Generated Makefile -# (meta build system like autotools, +# Generated Makefile +# (meta build system like autotools, # can automatically generate from config.status script # (which is called by configure script)) Makefile From 52f8df58fcd12182d3150fb3487d1fd0e5b8423a Mon Sep 17 00:00:00 2001 From: Tim Parnell Date: Sun, 21 Feb 2021 10:14:43 -0500 Subject: [PATCH 022/136] Update Xojo.gitignore for changes to .obsolete Updates the *.obsolete ignore to match datestamped .obsolete items from newer IDE versions. --- Xojo.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xojo.gitignore b/Xojo.gitignore index 1b036dd4..4915783b 100644 --- a/Xojo.gitignore +++ b/Xojo.gitignore @@ -8,4 +8,4 @@ Debug*/Debug*.exe Debug*/Debug*\ Libs *.rbuistate *.xojo_uistate -*.obsolete +*.obsolete* From 774c69da70dfc688c9e2c9a2ae1f98b76f90e823 Mon Sep 17 00:00:00 2001 From: Keisuke Shima Date: Mon, 22 Feb 2021 16:40:26 +0900 Subject: [PATCH 023/136] add ROS2 gitignore --- ROS2.gitignore | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 ROS2.gitignore diff --git a/ROS2.gitignore b/ROS2.gitignore new file mode 100644 index 00000000..560a4ffd --- /dev/null +++ b/ROS2.gitignore @@ -0,0 +1,28 @@ +install/ +log/ +build/ + +# Ignore generated docs +*.dox +*.wikidoc + +# eclipse stuff +.project +.cproject + +# qcreator stuff +CMakeLists.txt.user + +srv/_*.py +*.pcd +*.pyc +qtcreator-* +*.user + +*~ + +# Emacs +.#* + +# Ament custom files +AMENT_IGNORE From 5423fe33d9a71df6ce11150e3fff58b421b2cae9 Mon Sep 17 00:00:00 2001 From: Keisuke Shima Date: Mon, 22 Feb 2021 16:48:18 +0900 Subject: [PATCH 024/136] add COLCON_IGNORE --- ROS2.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ROS2.gitignore b/ROS2.gitignore index 560a4ffd..6cc824d8 100644 --- a/ROS2.gitignore +++ b/ROS2.gitignore @@ -24,5 +24,6 @@ qtcreator-* # Emacs .#* -# Ament custom files +# Colcon custom files +COLCON_IGNORE AMENT_IGNORE From b236e1717b90f1755af76900f5387bfa20636de3 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Sun, 28 Feb 2021 01:18:35 +0900 Subject: [PATCH 025/136] Just ignore `.env.production`, avoid to effect for `.env.example` https://github.com/github/gitignore/pull/3651/files#r576363678 --- Node.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 3262bc3b..c5de3d91 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -70,7 +70,8 @@ web_modules/ # dotenv environment variables file .env -.env.* +.env.test +.env.production # parcel-bundler cache (https://parceljs.org/) .cache From 6b89235c5afd09a1faa85cc56c7639a60bd65044 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Sat, 6 Mar 2021 14:11:49 +0100 Subject: [PATCH 026/136] Add newpax --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 8a42ebbd..3fed926f 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -166,6 +166,9 @@ _minted* # morewrites *.mw +# newpax +*.newpax + # nomencl *.nlg *.nlo From af117702e704e32e071ad87ee230f77fca328b66 Mon Sep 17 00:00:00 2001 From: Dan Church Date: Wed, 10 Mar 2021 10:04:39 -0600 Subject: [PATCH 027/136] Update Autotools.gitignore Add config.cache, generated when using Autotools `./configure -C`. --- Autotools.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Autotools.gitignore b/Autotools.gitignore index f2c137d0..d9ecd892 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -16,6 +16,7 @@ autom4te.cache /autoscan-*.log /aclocal.m4 /compile +/config.cache /config.guess /config.h.in /config.log From 4c55d7cc4b8afda96a769c5433a9e54845a0e68b Mon Sep 17 00:00:00 2001 From: Kamil Shakirov Date: Mon, 15 Mar 2021 14:32:59 +0600 Subject: [PATCH 028/136] 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 520cfca67f1caacd8108a06b76145c225b94b604 Mon Sep 17 00:00:00 2001 From: Ali Date: Thu, 25 Mar 2021 01:29:52 +0430 Subject: [PATCH 029/136] Add Vlang Support By Vlang Community --- V.gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 V.gitignore diff --git a/V.gitignore b/V.gitignore new file mode 100644 index 00000000..f824f496 --- /dev/null +++ b/V.gitignore @@ -0,0 +1,15 @@ +* +!*/ +!*.* +*.exe +*.o +*.so +*.tmp.c +*.obj +*.exp +*.ilk +*.pdb +*.dll +*.lib +*.bak +*.out \ No newline at end of file From ced04937735df8a99ea33ccc8dac7522598c39d0 Mon Sep 17 00:00:00 2001 From: Ali Date: Thu, 25 Mar 2021 11:35:51 +0430 Subject: [PATCH 030/136] Remove .obj --- V.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/V.gitignore b/V.gitignore index f824f496..480c9259 100644 --- a/V.gitignore +++ b/V.gitignore @@ -5,7 +5,6 @@ *.o *.so *.tmp.c -*.obj *.exp *.ilk *.pdb From fd40ca24deed5cb14952d9e650fe1148d54ff03b Mon Sep 17 00:00:00 2001 From: tustin2121 Date: Fri, 26 Mar 2021 12:32:11 -0400 Subject: [PATCH 031/136] Add .tlog to the Visual Studio template --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 1ee53850..33f059be 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -90,6 +90,7 @@ StyleCopReport.xml *.tmp_proj *_wpftmp.csproj *.log +*.tlog *.vspscc *.vssscc .builds From a4b2c4e4982bf82732c79335bdb017b305d3facb Mon Sep 17 00:00:00 2001 From: Udit8348 Date: Mon, 29 Mar 2021 15:08:20 -0400 Subject: [PATCH 032/136] adds technical note for more info --- community/embedded/IAR_EWARM.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/embedded/IAR_EWARM.gitignore b/community/embedded/IAR_EWARM.gitignore index 13ed9a0b..e456471f 100644 --- a/community/embedded/IAR_EWARM.gitignore +++ b/community/embedded/IAR_EWARM.gitignore @@ -1,5 +1,5 @@ # gitignore template for the IAR EWARM -# website: https://www.iar.com/ +# website: https://www.iar.com/knowledge/support/technical-notes/ide/which-files-should-be-version-controlled/ # Some tools will put the EWARM files # under a subdirectory with the same name From 68f4c9a5a9710d0e7a669a760d15e76107e69acf Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Tue, 13 Apr 2021 10:39:58 -0400 Subject: [PATCH 033/136] Update Coq.gitignore Coq now uses .mlg rather than .ml4 (since https://github.com/coq/coq/pull/8763), so we have to ignore its generated dependency files. The `native_compute_profile_*.data` files are generated by `Set NativeCompute Profiling` (see https://github.com/coq/coq/pull/950). Finally `.coq-native` is a directory that may be generated in any subdirectory, not only at top level, so we should not use absolute paths for it. --- Coq.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Coq.gitignore b/Coq.gitignore index 829ac44a..66596b22 100644 --- a/Coq.gitignore +++ b/Coq.gitignore @@ -10,6 +10,7 @@ *.glob *.ml.d *.ml4.d +*.mlg.d *.mli.d *.mllib.d *.mlpack.d @@ -20,7 +21,7 @@ *.vo *.vok *.vos -.coq-native/ +.coq-native .csdp.cache .lia.cache .nia.cache @@ -31,6 +32,7 @@ lia.cache nia.cache nlia.cache nra.cache +native_compute_profile_*.data # generated timing files *.timing.diff From 6d5f266f6cf1e9738b7e68b3b95b6969781de645 Mon Sep 17 00:00:00 2001 From: Helder Burato Berto Date: Wed, 21 Apr 2021 09:23:03 +0100 Subject: [PATCH 034/136] Add Strapi CMS .gitignore --- Strapi.gitignore | 135 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 Strapi.gitignore diff --git a/Strapi.gitignore b/Strapi.gitignore new file mode 100644 index 00000000..70e65425 --- /dev/null +++ b/Strapi.gitignore @@ -0,0 +1,135 @@ +############################ +# OS X +############################ + +.DS_Store +.AppleDouble +.LSOverride +Icon +.Spotlight-V100 +.Trashes +._* + + +############################ +# Linux +############################ + +*~ + + +############################ +# Windows +############################ + +Thumbs.db +ehthumbs.db +Desktop.ini +$RECYCLE.BIN/ +*.cab +*.msi +*.msm +*.msp + + +############################ +# Packages +############################ + +*.7z +*.csv +*.dat +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip +*.com +*.class +*.dll +*.exe +*.o +*.seed +*.so +*.swo +*.swp +*.swn +*.swm +*.out +*.pid + + +############################ +# Logs and databases +############################ + +.tmp +*.log +*.sql +*.sqlite + + +############################ +# Misc. +############################ + +*# +.idea +nbproject +.vscode/ + + +############################ +# Node.js +############################ + +lib-cov +lcov.info +pids +logs +results +build +node_modules +.node_history +package-lock.json +**/package-lock.json +!docs/package-lock.json +*.heapsnapshot + + +############################ +# Tests +############################ + +testApp +coverage +cypress/screenshots +cypress/videos + + +############################ +# Documentation +############################ + +dist + +############################ +# Builds +############################ + +packages/strapi-generate-new/files/public/ + +############################ +# Example app +############################ + +.dev +# *.cache + +############################ +# Visual Studio Code +############################ + +front-workspace.code-workspace From d16b10824c3123ad168d5b0978da72f12db5b237 Mon Sep 17 00:00:00 2001 From: Nader Hajlaoui Date: Wed, 21 Apr 2021 13:37:41 +0200 Subject: [PATCH 035/136] add scala jvm crash files --- Scala.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Scala.gitignore b/Scala.gitignore index 9c07d4ae..7169cab1 100644 --- a/Scala.gitignore +++ b/Scala.gitignore @@ -1,2 +1,5 @@ *.class *.log + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* From 5f1ce29425f13e01983bfc952d4f81163066bbc4 Mon Sep 17 00:00:00 2001 From: Parsa Date: Wed, 21 Apr 2021 18:45:44 +0430 Subject: [PATCH 036/136] Add nuget.config file Add nuget.config file because it contains secret data and should be kept localy --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 1ee53850..b0010137 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -205,6 +205,9 @@ PublishScripts/ *.nuget.props *.nuget.targets +# Nuget personal access tokens and Credentials +nuget.config + # Microsoft Azure Build Output csx/ *.build.csdef From 81297a6c427d524281094a9b2376cac46fa4322c Mon Sep 17 00:00:00 2001 From: Andrew Dunning Date: Wed, 21 Apr 2021 19:53:11 +0100 Subject: [PATCH 037/136] Add missing extension for GregorioTeX --- TeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/TeX.gitignore b/TeX.gitignore index 8a42ebbd..c88f292a 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -120,6 +120,7 @@ acs-*.bib # gregoriotex *.gaux +*.glog *.gtex # htlatex From db66a1d5e45f233bc70256cb7902d1c87b3ed5db Mon Sep 17 00:00:00 2001 From: Manoj Paramsetti <39455174+Manoj-Paramsetti@users.noreply.github.com> Date: Sun, 25 Apr 2021 08:36:17 +0530 Subject: [PATCH 038/136] ignore dotenv in dart --- Dart.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dart.gitignore b/Dart.gitignore index 6d21af37..0200c617 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -11,6 +11,10 @@ pubspec.lock # If you don't generate documentation locally you can remove this line. doc/api/ +# dotenv environment variables file +.env +.env.test + # Avoid committing generated Javascript files: *.dart.js *.info.json # Produced by the --dump-info flag. From d15076ed4a80c445b2a87d13464281d1ba5cb385 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Tue, 27 Apr 2021 09:54:36 -0400 Subject: [PATCH 039/136] Rust: ignore .pdb files MSVC builds of Rust on Windows automatically generate `*.pdb` files, which store debugging information. For more information, see: * https://github.com/rust-lang/rustlings/issues/275 * https://locka99.gitbooks.io/a-guide-to-porting-c-to-rust/content/debugging_rust/#microsoft-visual-studio --- Rust.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rust.gitignore b/Rust.gitignore index ff47c2d7..6985cf1b 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -9,3 +9,6 @@ Cargo.lock # These are backup files generated by rustfmt **/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb From 99157b2a29256ae9c248cca3c3570adb5b7237a5 Mon Sep 17 00:00:00 2001 From: Gustav Palmqvist Date: Tue, 4 May 2021 19:48:02 +0200 Subject: [PATCH 040/136] Add AltiumDesigner.gitignore --- AltiumDesigner.gitignore | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 AltiumDesigner.gitignore diff --git a/AltiumDesigner.gitignore b/AltiumDesigner.gitignore new file mode 100644 index 00000000..7291862c --- /dev/null +++ b/AltiumDesigner.gitignore @@ -0,0 +1,18 @@ +# For PCBs designed using Altium Designer +# Website: https://www.altium.com/altium-designer/ + +# Directories containing cache data +History +__Previews + +# Directories containing logs and generated outputs +Project\ Logs* +Project\ Outputs* + +# Misc files generated by altium +debug.log +Status\ Report.txt +*PcbDoc..htm + +# Lock files sometimes left behind +.~lock.* From 71e1ff1213d2f19ce1df0ee0292fafccd785cc72 Mon Sep 17 00:00:00 2001 From: Gustav Palmqvist Date: Tue, 4 May 2021 19:54:51 +0200 Subject: [PATCH 041/136] Fixed typo and added some fileendings which older versions generate --- AltiumDesigner.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/AltiumDesigner.gitignore b/AltiumDesigner.gitignore index 7291862c..5e410492 100644 --- a/AltiumDesigner.gitignore +++ b/AltiumDesigner.gitignore @@ -12,7 +12,9 @@ Project\ Outputs* # Misc files generated by altium debug.log Status\ Report.txt -*PcbDoc..htm +*.PcbDoc.htm +*.SchDocPreview +*.PcbDocPreview # Lock files sometimes left behind .~lock.* From 5db7eeab30efe30ed407b849ea526cf3e7a1e03f Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Fri, 7 May 2021 09:47:16 -0700 Subject: [PATCH 042/136] Adding VS Code to global VS family --- VisualStudio.gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 1ee53850..703be6d2 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -360,3 +360,25 @@ MigrationBackup/ # Fody - auto-generated XML schema FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp + +# JetBrains Rider +.idea/ +*.sln.iml \ No newline at end of file From 045304bb1214bf13b74ca1cd8605e3bc533303c7 Mon Sep 17 00:00:00 2001 From: Brian Douglas Date: Fri, 7 May 2021 10:27:54 -0700 Subject: [PATCH 043/136] Rename AltiumDesigner.gitignore to community/AltiumDesigner.gitignore --- AltiumDesigner.gitignore => community/AltiumDesigner.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename AltiumDesigner.gitignore => community/AltiumDesigner.gitignore (100%) diff --git a/AltiumDesigner.gitignore b/community/AltiumDesigner.gitignore similarity index 100% rename from AltiumDesigner.gitignore rename to community/AltiumDesigner.gitignore From dffd1a074475512b9565167046d1cf751ed65434 Mon Sep 17 00:00:00 2001 From: Brian Douglas Date: Fri, 7 May 2021 10:57:12 -0700 Subject: [PATCH 044/136] Rename Strapi.gitignore to community/Strapi.gitignore --- Strapi.gitignore => community/Strapi.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Strapi.gitignore => community/Strapi.gitignore (100%) diff --git a/Strapi.gitignore b/community/Strapi.gitignore similarity index 100% rename from Strapi.gitignore rename to community/Strapi.gitignore From b3ece8cef6f7dde358963115983b4a8e7e93e7f0 Mon Sep 17 00:00:00 2001 From: Martin Woodward Date: Fri, 7 May 2021 19:07:24 +0100 Subject: [PATCH 045/136] Add newline. --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 703be6d2..8b0f1ddf 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -381,4 +381,4 @@ FodyWeavers.xsd # JetBrains Rider .idea/ -*.sln.iml \ No newline at end of file +*.sln.iml From 9d3758088ac93a24c65e3a0dfc436addf5e94980 Mon Sep 17 00:00:00 2001 From: Brian Douglas Date: Fri, 7 May 2021 11:59:24 -0700 Subject: [PATCH 046/136] Update Dart.gitignore --- Dart.gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index 0200c617..3a83c2f0 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -12,8 +12,7 @@ pubspec.lock doc/api/ # dotenv environment variables file -.env -.env.test +.env* # Avoid committing generated Javascript files: *.dart.js From 8572e846504fab9eb0d804ae5e6f1c305251a2fb Mon Sep 17 00:00:00 2001 From: Martin Woodward Date: Sun, 9 May 2021 09:02:01 +0100 Subject: [PATCH 047/136] Move Vlang tenmplate into community folder To start we bring new contributions into the community folder. --- V.gitignore => community/V.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename V.gitignore => community/V.gitignore (92%) diff --git a/V.gitignore b/community/V.gitignore similarity index 92% rename from V.gitignore rename to community/V.gitignore index 480c9259..bc0d4f3a 100644 --- a/V.gitignore +++ b/community/V.gitignore @@ -11,4 +11,4 @@ *.dll *.lib *.bak -*.out \ No newline at end of file +*.out From b3fe09bd7d4647552aa53130aeb16ef33489d4f9 Mon Sep 17 00:00:00 2001 From: Martin Woodward Date: Sun, 9 May 2021 14:41:47 +0100 Subject: [PATCH 048/136] Move into community folder --- ROS2.gitignore => community/ROS2.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename ROS2.gitignore => community/ROS2.gitignore (100%) diff --git a/ROS2.gitignore b/community/ROS2.gitignore similarity index 100% rename from ROS2.gitignore rename to community/ROS2.gitignore From 8713694f2faee51946b79e9f12bb2aba4edd1b21 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch Date: Sun, 9 May 2021 12:24:38 -0700 Subject: [PATCH 049/136] Remove the all files matches from V.gitignore --- community/V.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/community/V.gitignore b/community/V.gitignore index bc0d4f3a..dbbb0462 100644 --- a/community/V.gitignore +++ b/community/V.gitignore @@ -1,6 +1,3 @@ -* -!*/ -!*.* *.exe *.o *.so From f3483b0072708b7bece1a7b79ffb74989b3c4466 Mon Sep 17 00:00:00 2001 From: Dan Toft Date: Wed, 12 May 2021 10:56:36 +0200 Subject: [PATCH 050/136] Added SPFx (SharePoint Framework) gitignore --- SPFx.gitignore | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 SPFx.gitignore diff --git a/SPFx.gitignore b/SPFx.gitignore new file mode 100644 index 00000000..ac0c4307 --- /dev/null +++ b/SPFx.gitignore @@ -0,0 +1,33 @@ +#SharePoint Framework (SPFx) +# Logs +logs +*.log +npm-debug.log* + +# Dependency directories +node_modules + +# Build generated files +dist +lib +solution +temp +*.sppkg + +# Coverage directory used by tools like istanbul +coverage + +# OSX +.DS_Store + +# Visual Studio files +.ntvs_analysis.dat +.vs +bin +obj + +# Resx Generated Code +*.resx.ts + +# Styles Generated Code +*.scss.ts \ No newline at end of file From 346dd747885c007cf1c742f198bd04d1dcce05d5 Mon Sep 17 00:00:00 2001 From: Gerardyang Date: Wed, 12 May 2021 23:18:59 +0800 Subject: [PATCH 051/136] add pnpm debug file to Node.gitignore --- Node.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Node.gitignore b/Node.gitignore index 1f22b9c2..abea5562 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -5,6 +5,7 @@ npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* +.pnpm-debug.log* # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json From 82fca3b67b7ca4b21155449263e9ba7ba851e84a Mon Sep 17 00:00:00 2001 From: Callum Whyte Date: Sun, 16 May 2021 19:35:36 +0100 Subject: [PATCH 052/136] Excluding odd.flag in all folders for Umbraco gitignore --- Umbraco.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index c2868457..56495314 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -15,7 +15,7 @@ **/App_Data/umbraco.config ## this [Uu]mbraco/ folder should be created by cmd like `Install-Package UmbracoCms -Version 8.5.3` -## you can find your umbraco version at your Web.config. (i.e. ) +## you can find your Umbraco version in your Web.config. (i.e. ) ## Uncomment this line if you think it fits the way you work on your project. ## **/[Uu]mbraco/ @@ -29,4 +29,4 @@ **/App_Data/cache/ # Ignore the Models Builder models out of date flag -**/App_Data/Models/ood.flag +**/ood.flag 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 053/136] 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 77848c3879bb1e6556abacd1d40b1612653db057 Mon Sep 17 00:00:00 2001 From: Artur Tarassow <42611512+atecon@users.noreply.github.com> Date: Tue, 25 May 2021 12:25:21 +0200 Subject: [PATCH 054/136] Add template file for Gretl (#3737) Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> --- community/Gretl.gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 community/Gretl.gitignore diff --git a/community/Gretl.gitignore b/community/Gretl.gitignore new file mode 100644 index 00000000..582489e5 --- /dev/null +++ b/community/Gretl.gitignore @@ -0,0 +1,8 @@ +# gitignore template for Gretl +# website: http://gretl.sourceforge.net/ + +# Auto-generated log file is overwritten whenever you start a new session +session.inp + +# Auto-generated temporary string code table +string_table.txt From f308ca341dffc044b9d205080c2678ff8044187d Mon Sep 17 00:00:00 2001 From: Martin Woodward Date: Tue, 25 May 2021 11:44:57 +0100 Subject: [PATCH 055/136] Moved into community folder --- SPFx.gitignore => community/SPFx.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename SPFx.gitignore => community/SPFx.gitignore (97%) diff --git a/SPFx.gitignore b/community/SPFx.gitignore similarity index 97% rename from SPFx.gitignore rename to community/SPFx.gitignore index ac0c4307..5a66b341 100644 --- a/SPFx.gitignore +++ b/community/SPFx.gitignore @@ -30,4 +30,4 @@ obj *.resx.ts # Styles Generated Code -*.scss.ts \ No newline at end of file +*.scss.ts From 2828d5ad829ebd37eb806fc8c5ed2bcff0d8e1eb Mon Sep 17 00:00:00 2001 From: Doug Mead Date: Wed, 2 Jun 2021 12:48:49 -0600 Subject: [PATCH 056/136] 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 057/136] 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 68f7db42df3b13f401018676fe3765e27dd8e8ae Mon Sep 17 00:00:00 2001 From: Vincent Lafeychine Date: Thu, 3 Jun 2021 19:48:49 +0000 Subject: [PATCH 058/136] GNU plot ignored in TeX.gitignore --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 237f49eb..4bfcab67 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -115,6 +115,10 @@ acs-*.bib # uncomment this for glossaries-extra (will ignore makeindex's style files!) # *.ist +# gnuplot +*.gnuplot +*.table + # gnuplottex *-gnuplottex-* From 25d6008c286b2f759cc571a364a0f0a7471af3be Mon Sep 17 00:00:00 2001 From: Abdulrahman Al-Ghamdi <49812896+Abdulrahman-AlGhamdi@users.noreply.github.com> Date: Mon, 7 Jun 2021 11:32:20 +0300 Subject: [PATCH 059/136] Add `.idea/jarRepositories.xml` to Android.gitignore The file `.idea/jarRepositories.xml` should be added to .gitignore. It is auto-generated and has only redundant information about remote jar repositories. * https://www.jetbrains.com/help/idea/library.html#configure-custom-remote-repo --- Android.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.gitignore b/Android.gitignore index 23de6e20..5d18272e 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -44,6 +44,7 @@ captures/ .idea/assetWizardSettings.xml .idea/dictionaries .idea/libraries +.idea/jarRepositories.xml # Android Studio 3 in .gitignore file. .idea/caches .idea/modules.xml From 1503b47796e8045b9db1abb26630255f070965e7 Mon Sep 17 00:00:00 2001 From: Parsa Date: Sat, 12 Jun 2021 14:49:35 +0430 Subject: [PATCH 060/136] 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 10d9c15458afeea31b1962714c39b8c032313c20 Mon Sep 17 00:00:00 2001 From: Erik-Jan Westendorp Date: Tue, 15 Jun 2021 16:34:35 +0200 Subject: [PATCH 061/136] Add media folder to umbraco.gitignore --- Umbraco.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 56495314..97e606c0 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -19,6 +19,10 @@ ## Uncomment this line if you think it fits the way you work on your project. ## **/[Uu]mbraco/ +## This [Mm]edia/ folder contains content. Content may vary by environment and should therefore not be added to source control. +## Uncomment this line if you think it fits the way you work on your project. +## **/[Mm]edia/ + # Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder) # Make sure to include details from VisualStudio.gitignore BEFORE this !**/App_Data/[Pp]ackages/* From cfd330ff8b6b95fcb08f16a6bbbf2cfc691dc6ba Mon Sep 17 00:00:00 2001 From: Erik-Jan Westendorp Date: Tue, 15 Jun 2021 16:47:51 +0200 Subject: [PATCH 062/136] Update Umbraco.gitignore Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> --- Umbraco.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 97e606c0..ceb7c866 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -19,7 +19,7 @@ ## Uncomment this line if you think it fits the way you work on your project. ## **/[Uu]mbraco/ -## This [Mm]edia/ folder contains content. Content may vary by environment and should therefore not be added to source control. +## The [Mm]edia/ folder contains content. Content may vary by environment and should therefore not be added to source control. ## Uncomment this line if you think it fits the way you work on your project. ## **/[Mm]edia/ From d9caa61ceb444bba087af4cc1d4c282632a57573 Mon Sep 17 00:00:00 2001 From: Hecon5 <54177882+hecon5@users.noreply.github.com> Date: Wed, 23 Jun 2021 11:24:29 -0400 Subject: [PATCH 063/136] Adding in support for Nasa SpecsIntact --- community/NasaSpecsIntact.gitignore | 40 +++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 community/NasaSpecsIntact.gitignore diff --git a/community/NasaSpecsIntact.gitignore b/community/NasaSpecsIntact.gitignore new file mode 100644 index 00000000..be53af0e --- /dev/null +++ b/community/NasaSpecsIntact.gitignore @@ -0,0 +1,40 @@ +# gitignore template for Nasa SpecsIntact (SI) +# Website: https://specsintact.ksc.nasa.gov/ +# +# Recommended: +# MicrosoftOffice.gitignore +# + +# SpecsIntact (SI) Locking file; this would lock everyone out. +*.se$ + +# SI Reports; auto-generated. They do not belong in the repository +# as they will be re-created exactly when using a specific checkout point. +*.RPT +ADDRVER.* +BRKTVER.* +DUPEREF.* +REFVER.* +SECTVER.* +SUBMVER.* +TTLDIFFS.* + +# SpecsIntact files that change a lot and don't actually affect SI +# PULL.TBL is an auto-generated file to help speed SI loading. +PULL.TBL +pulltbl.bck + +# Tailoring information. +# Keep tailor.tag; it is a list of tailoring options in SI. + +# JOB.OTL informs SI where a spec section came from. +# Keeping the old one isn't useful in git. +JOB.OTL.OLD + +# OneNote TOC Files; SI Work Directories may be installed in a location co-located with OneNote +# notebooks, and if so, OneNote will litter the SI folder with these. +*.onetoc* + +# Log files, typically tagfix or other auto generated logs that aren't useful +# outside of the user that made them and clutter up the index. +*.log From 87aaa50bcb7d5b8117fbe91b118e136759256e18 Mon Sep 17 00:00:00 2001 From: Michael Orzel <56739010+michael-orzel@users.noreply.github.com> Date: Thu, 1 Jul 2021 10:50:20 -0400 Subject: [PATCH 064/136] Add period and capitalized letter for formatting --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f9ec5eb8..a2ffb7d5 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,10 @@ the following resources are a great place to start: We support a collection of templates, organized in this way: -- the root folder contains templates in common use, to help people get started +- The root folder contains templates in common use, to help people get started with popular programming languages and technologies. These define a meaningful set of rules to help get started, and ensure you are not committing - unimportant files into your repository + unimportant files into your repository. - [`Global`](./Global) contains templates for various editors, tools and operating systems that can be used in different situations. It is recommended that you either [add these to your global template](https://help.github.com/articles/ignoring-files/#create-a-global-gitignore) From 956fd0f7ddff90a72dba6134453ff9a26d41ae48 Mon Sep 17 00:00:00 2001 From: weycen Date: Fri, 2 Jul 2021 16:30:06 +0800 Subject: [PATCH 065/136] feat: Add template for Keil uVision --- uVision.gitignore | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 uVision.gitignore diff --git a/uVision.gitignore b/uVision.gitignore new file mode 100644 index 00000000..ab4049aa --- /dev/null +++ b/uVision.gitignore @@ -0,0 +1,36 @@ +# .gitignore file for Keil µVision + +# µVision 5 and µVision 4 Project screen layout file +*.uvguix.* +*.uvgui.* + +# Listing Files +*.i +*.lst + +# Object and HEX Files +*.axf +*.b[0-2][0-9] +*.b3[0-1] +*.bin +*.d +*.crf +*.elf +*.hex +*.h86 +*.obj +*.o +*.sbr + +# Build Files + +# Debugger Files +.ini + +# JLink Files +JLinkLog.txt + +# Other Files +*.bak +*.build_log.htm +*.dep From d80f0fe45382ebc4da9de8a14195f10f472a4a0e Mon Sep 17 00:00:00 2001 From: Chengwei Qiu Date: Thu, 8 Jul 2021 15:08:57 +0800 Subject: [PATCH 066/136] feat: Add *.iex --- uVision.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/uVision.gitignore b/uVision.gitignore index ab4049aa..6fa4ab7a 100644 --- a/uVision.gitignore +++ b/uVision.gitignore @@ -18,6 +18,7 @@ *.elf *.hex *.h86 +*.iex *.obj *.o *.sbr From 75050167fd3b335197235c36d1443f611520acfc Mon Sep 17 00:00:00 2001 From: Dirk Seefeld Date: Fri, 9 Jul 2021 11:26:37 +0200 Subject: [PATCH 067/136] add Umbraco excludes for version 9 / .Net 5 (Core) --- Umbraco.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index cd90af30..fe156c68 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -24,3 +24,8 @@ # Ignore the Models Builder models out of date flag **/App_Data/Models/ood.flag + +# NEW for version 9 .Net 5 (Core) +**/umbraco/Data/* +**/umbraco/mediacache +**/wwwroot/umbraco/lib From 1a84870ad77a665460fd1504d18c384954e3cc1e Mon Sep 17 00:00:00 2001 From: GrpeApple Date: Sun, 11 Jul 2021 13:03:23 +0800 Subject: [PATCH 068/136] Remove trailing whitespace --- Qt.gitignore | 2 +- Terraform.gitignore | 4 ++-- Umbraco.gitignore | 4 ++-- community/OpenSSL.gitignore | 2 +- community/PHP/Magento2.gitignore | 4 ++-- community/embedded/IAR_EWARM.gitignore | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Qt.gitignore b/Qt.gitignore index 10135402..7f4826b4 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -45,7 +45,7 @@ target_wrapper.* # QtCreator CMake CMakeLists.txt.user* -# QtCreator 4.8< compilation database +# QtCreator 4.8< compilation database compile_commands.json # QtCreator local machine specific files for imported projects diff --git a/Terraform.gitignore b/Terraform.gitignore index beb38d84..18221f8e 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -9,8 +9,8 @@ crash.log # Exclude all .tfvars files, which are likely to contain sentitive data, such as -# password, private keys, and other secrets. These should not be part of version -# control as they are data points which are potentially sensitive and subject +# password, private keys, and other secrets. These should not be part of version +# control as they are data points which are potentially sensitive and subject # to change depending on the environment. # *.tfvars diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 56495314..1f186d0f 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -14,10 +14,10 @@ # Ignore Umbraco content cache file **/App_Data/umbraco.config -## this [Uu]mbraco/ folder should be created by cmd like `Install-Package UmbracoCms -Version 8.5.3` +## this [Uu]mbraco/ folder should be created by cmd like `Install-Package UmbracoCms -Version 8.5.3` ## you can find your Umbraco version in your Web.config. (i.e. ) ## Uncomment this line if you think it fits the way you work on your project. -## **/[Uu]mbraco/ +## **/[Uu]mbraco/ # Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder) # Make sure to include details from VisualStudio.gitignore BEFORE this diff --git a/community/OpenSSL.gitignore b/community/OpenSSL.gitignore index feb95a9f..732b1f16 100644 --- a/community/OpenSSL.gitignore +++ b/community/OpenSSL.gitignore @@ -10,7 +10,7 @@ *.csr ## Certificate -*.der +*.der ## Key database file *.kdb diff --git a/community/PHP/Magento2.gitignore b/community/PHP/Magento2.gitignore index b6b7860a..98329d7b 100644 --- a/community/PHP/Magento2.gitignore +++ b/community/PHP/Magento2.gitignore @@ -18,7 +18,7 @@ /.php_cs.cache /grunt-config.json /dev/tools/grunt/configs/local-themes.js - + /pub/media/*.* !/pub/media/.htaccess /pub/media/attribute/* @@ -45,7 +45,7 @@ !/pub/media/captcha/.htaccess /pub/static/* !/pub/static/.htaccess - + /var/* !/var/.htaccess /vendor/* diff --git a/community/embedded/IAR_EWARM.gitignore b/community/embedded/IAR_EWARM.gitignore index e456471f..2f04d86d 100644 --- a/community/embedded/IAR_EWARM.gitignore +++ b/community/embedded/IAR_EWARM.gitignore @@ -11,7 +11,7 @@ EWARM/**/Obj EWARM/**/List EWARM/**/Exe -# Autogenerated project files +# Autogenerated project files *.dep *.ewt From af9d6ae6ea12a84fc5e5ba0e052e4a9ee5459ff1 Mon Sep 17 00:00:00 2001 From: Chengwei Qiu Date: Tue, 13 Jul 2021 11:17:32 +0800 Subject: [PATCH 069/136] Update uVision.gitignore Add *.map, *.m51, *.m66, *.h86. *.bat, and some category adjustments. --- uVision.gitignore | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/uVision.gitignore b/uVision.gitignore index 6fa4ab7a..b86a8793 100644 --- a/uVision.gitignore +++ b/uVision.gitignore @@ -1,4 +1,4 @@ -# .gitignore file for Keil µVision +# git ignore file for Keil µVision Project # µVision 5 and µVision 4 Project screen layout file *.uvguix.* @@ -7,23 +7,30 @@ # Listing Files *.i *.lst +*.m51 +*.m66 +*.map -# Object and HEX Files +# Object Files *.axf *.b[0-2][0-9] *.b3[0-1] -*.bin -*.d *.crf +*.d *.elf -*.hex -*.h86 +*.htm *.iex -*.obj *.o +*.obj *.sbr +# Firmware Files +*.bin +*.h86 +*.hex + # Build Files +.bat # Debugger Files .ini From e60515a4b2af34c5545af0ea1fd56a36fb9c079a Mon Sep 17 00:00:00 2001 From: Chengwei Qiu Date: Tue, 13 Jul 2021 11:29:21 +0800 Subject: [PATCH 070/136] Update uVision.gitignore Add *.lnp, some category adjustments. --- uVision.gitignore | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/uVision.gitignore b/uVision.gitignore index b86a8793..5954ec83 100644 --- a/uVision.gitignore +++ b/uVision.gitignore @@ -15,11 +15,15 @@ *.axf *.b[0-2][0-9] *.b3[0-1] +*.bak +*.build_log.htm *.crf *.d +*.dep *.elf *.htm *.iex +*.lnp *.o *.obj *.sbr @@ -39,6 +43,3 @@ JLinkLog.txt # Other Files -*.bak -*.build_log.htm -*.dep From e2a1bb8ee20d00795f406b0de527e211b75a3ebb Mon Sep 17 00:00:00 2001 From: Mukesh Sharma Date: Tue, 13 Jul 2021 22:32:32 +1200 Subject: [PATCH 071/136] Added wildcard to crash.log because the newer versions of Terraform creates crash log with random numbers in between example crash.105189318.log --- Terraform.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terraform.gitignore b/Terraform.gitignore index beb38d84..894a3029 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -6,7 +6,7 @@ *.tfstate.* # Crash log files -crash.log +crash.*.log # Exclude all .tfvars files, which are likely to contain sentitive data, such as # password, private keys, and other secrets. These should not be part of version From bb1c0fa13951ed4bfa9eb16c97c4075a46c73a95 Mon Sep 17 00:00:00 2001 From: Mukesh Sharma Date: Tue, 13 Jul 2021 22:41:47 +1200 Subject: [PATCH 072/136] Ignore crash.log and crash.*.log files generated by Terraform debugging --- Terraform.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Terraform.gitignore b/Terraform.gitignore index 894a3029..fe38ddf7 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -6,6 +6,7 @@ *.tfstate.* # Crash log files +crash.log crash.*.log # Exclude all .tfvars files, which are likely to contain sentitive data, such as From 44a9c3ebdad5d6f92995992ff55496509f0a4019 Mon Sep 17 00:00:00 2001 From: "ShinProg (Logan Tann)" Date: Sat, 17 Jul 2021 14:19:06 +0200 Subject: [PATCH 073/136] fixes CodeIgniter.gitignore deleting a critical system file After spending a lot of time finding why my app won't run, just noticed that the gitignore I copied introduced a deletion/ignore rule of an internal folder used by the framework. The current gitignore file deletes the folder `/system/Cache/*` and causes the following error when running the App from the CLI or the web server : `Class "CodeIgniter\Cache\CacheFactory" not found `; making the app unable to run. I added the following rule to fix this : `!system/Cache/*`. Note : this won't fix the bug if the system folder is renamed --- CodeIgniter.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/CodeIgniter.gitignore b/CodeIgniter.gitignore index bfea17cd..f447dc30 100644 --- a/CodeIgniter.gitignore +++ b/CodeIgniter.gitignore @@ -2,6 +2,7 @@ */logs/log-*.php !*/logs/index.html */cache/* +!system/cache/* !*/cache/index.html !*/cache/.htaccess From 9792c3836bd520d8b411d8aa211af0dd64de472f Mon Sep 17 00:00:00 2001 From: Seth Falco Date: Tue, 20 Jul 2021 22:45:16 +0200 Subject: [PATCH 074/136] VisualStudioCode: ignores built vscode extensions --- Global/VisualStudioCode.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore index 85813e1c..3878c4e5 100644 --- a/Global/VisualStudioCode.gitignore +++ b/Global/VisualStudioCode.gitignore @@ -7,3 +7,6 @@ # Local History for Visual Studio Code .history/ + +# Built Visual Studio Code Extensions +*.vsix From b2fae2dd0f12808a2490fe4d59bfc1c52263cf6d Mon Sep 17 00:00:00 2001 From: Jamie Lendrum Date: Thu, 22 Jul 2021 12:05:41 +0100 Subject: [PATCH 075/136] Add RStudio Connect folder to R gitignore https://community.rstudio.com/t/should-i-include-the-rsconnect-folder-to-gitignore/98237 --- R.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/R.gitignore b/R.gitignore index da10c745..6ab6fc98 100644 --- a/R.gitignore +++ b/R.gitignore @@ -43,3 +43,6 @@ docs/ # translation temp files po/*~ + +# RStudio Connect folder +rsconnect/ From 0a4b1bde2bb96bf936792183c5d6a76590641076 Mon Sep 17 00:00:00 2001 From: Alexander <43488179+snaulX@users.noreply.github.com> Date: Thu, 29 Jul 2021 11:47:29 +0600 Subject: [PATCH 076/136] Create .gitignore for Flax Engine --- FlaxEngine.gitignore | 45 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 FlaxEngine.gitignore diff --git a/FlaxEngine.gitignore b/FlaxEngine.gitignore new file mode 100644 index 00000000..b4705684 --- /dev/null +++ b/FlaxEngine.gitignore @@ -0,0 +1,45 @@ +# Ignore Flax project files +Binaries/ +Cache/ +Logs/ +Output/ +Screenshots/ +*.HotReload.* + +# Ignore Visual Studio project files (generated locally) +*.csproj +*.sln + +# Ignore thumbnails created by Windows +Thumbs.db + +# Ignore files built by Visual Studio +*.obj +*.exe +*.pdb +*.user +*.aps +*.pch +*.vspscc +*_i.c +*_p.c +*.ncb +*.suo +*.tlb +*.tlh +*.bak +*.cache +*.ilk +*.log +[Bb]in +[Dd]ebug*/ +*.lib +*.sbr +obj/ +[Rr]elease*/ +_ReSharper*/ +[Tt]est[Rr]esult* +.vs/ + +# Ignore Nuget packages folder +packages/ From f1484992a3ebcee0ef2c8c7c4d2463002ae69415 Mon Sep 17 00:00:00 2001 From: Dirk Seefeld Date: Fri, 30 Jul 2021 18:55:40 +0200 Subject: [PATCH 077/136] even more files could be ignored --- Umbraco.gitignore | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 6032b670..3d775175 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -32,6 +32,11 @@ **/ood.flag # NEW for version 9 .Net 5 (Core) -**/umbraco/Data/* -**/umbraco/mediacache -**/wwwroot/umbraco/lib \ No newline at end of file +#ignore umbraco backoffice assest from wwwroot +**/wwwroot/umbraco/ + +#ignore umbraco data/views/settings +**/umbraco/ + +#include default location for modelsbuilder output +!**/umbraco/models \ No newline at end of file From a81591327a72605498fe7a29c5c56ab1a40da94a Mon Sep 17 00:00:00 2001 From: Dirk Seefeld Date: Fri, 30 Jul 2021 19:12:28 +0200 Subject: [PATCH 078/136] allow packages path --- Umbraco.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 3d775175..d7adb0ef 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -39,4 +39,7 @@ **/umbraco/ #include default location for modelsbuilder output -!**/umbraco/models \ No newline at end of file +!**/umbraco/models + +#include default location for packages +!**/umbraco/Data/packages \ No newline at end of file From 823c26086a014bfbf46dc47af44197917eb92761 Mon Sep 17 00:00:00 2001 From: "Robert C. Maehl" Date: Wed, 4 Aug 2021 14:38:20 -0400 Subject: [PATCH 079/136] Create AutoIt.gitignore This is a gitignore template for the AutoIt v3 Language. This tool automatically excludes files created by some of it's tools such as automated backups. --- AutoIt.gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 AutoIt.gitignore diff --git a/AutoIt.gitignore b/AutoIt.gitignore new file mode 100644 index 00000000..42bff43d --- /dev/null +++ b/AutoIt.gitignore @@ -0,0 +1,5 @@ +# Tidy Auto-Generated Backups +Backup/* + +# Au3Stripper Auto-Generated Files +*_stripped.au3 From 9a050f70afbf2713c98f6a92d1c7435a4d4709aa Mon Sep 17 00:00:00 2001 From: "Robert C. Maehl" Date: Fri, 6 Aug 2021 13:07:18 -0400 Subject: [PATCH 080/136] Update AutoIt.gitignore --- AutoIt.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AutoIt.gitignore b/AutoIt.gitignore index 42bff43d..1310b931 100644 --- a/AutoIt.gitignore +++ b/AutoIt.gitignore @@ -1,3 +1,6 @@ +# Compiled Scripts +*.a3x + # Tidy Auto-Generated Backups Backup/* From 69f2ca026d788f9c5ebead6f02eddd616c61d611 Mon Sep 17 00:00:00 2001 From: wc7086 <74053663+wc7086@users.noreply.github.com> Date: Sun, 15 Aug 2021 08:52:06 +0800 Subject: [PATCH 081/136] KiCad: add *-backups >A note about backup files One other notable change is that the backup file system has been removed. This was the system that would create kicad_sch-bak and kicad_pcb-bak files every time you save. The short story about why this is removed is that with recent changes to the way file saving works, it should no longer be possible for files to be corrupted if KiCad crashes during a save, and the generation of these backup files was seen by many users as annoying clutter. For more context about this decision, you can read the [thread on the developers mailing list](https://lists.launchpad.net/kicad-developers/msg44067.html). >An new backup system that properly backs up the whole project (see the [GitLab issue](https://gitlab.com/kicad/code/kicad/-/issues/4763)) has been implemented to replace this feature. As always when using nightly builds, back up your files separately in case a KiCad bug breaks the built-in backup system. https://forum.kicad.info/t/new-project-file-format/23705 --- KiCad.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/KiCad.gitignore b/KiCad.gitignore index bd70969a..8d5c5250 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -7,6 +7,7 @@ *.bck *.kicad_pcb-bak *.kicad_sch-bak +*-backups *.kicad_prl *.sch-bak *~ From dc95dd536c636ad5c3fe66398ed1fab9ba153af6 Mon Sep 17 00:00:00 2001 From: weycen Date: Fri, 20 Aug 2021 22:21:26 +0800 Subject: [PATCH 082/136] Move 'uVision.gitignore' to the community folder --- .../embedded/uVision.gitignore | 90 +++++++++---------- 1 file changed, 45 insertions(+), 45 deletions(-) rename uVision.gitignore => community/embedded/uVision.gitignore (90%) diff --git a/uVision.gitignore b/community/embedded/uVision.gitignore similarity index 90% rename from uVision.gitignore rename to community/embedded/uVision.gitignore index 5954ec83..f69c404f 100644 --- a/uVision.gitignore +++ b/community/embedded/uVision.gitignore @@ -1,45 +1,45 @@ -# git ignore file for Keil µVision Project - -# µVision 5 and µVision 4 Project screen layout file -*.uvguix.* -*.uvgui.* - -# Listing Files -*.i -*.lst -*.m51 -*.m66 -*.map - -# Object Files -*.axf -*.b[0-2][0-9] -*.b3[0-1] -*.bak -*.build_log.htm -*.crf -*.d -*.dep -*.elf -*.htm -*.iex -*.lnp -*.o -*.obj -*.sbr - -# Firmware Files -*.bin -*.h86 -*.hex - -# Build Files -.bat - -# Debugger Files -.ini - -# JLink Files -JLinkLog.txt - -# Other Files +# git ignore file for Keil µVision Project + +# µVision 5 and µVision 4 Project screen layout file +*.uvguix.* +*.uvgui.* + +# Listing Files +*.i +*.lst +*.m51 +*.m66 +*.map + +# Object Files +*.axf +*.b[0-2][0-9] +*.b3[0-1] +*.bak +*.build_log.htm +*.crf +*.d +*.dep +*.elf +*.htm +*.iex +*.lnp +*.o +*.obj +*.sbr + +# Firmware Files +*.bin +*.h86 +*.hex + +# Build Files +.bat + +# Debugger Files +.ini + +# JLink Files +JLinkLog.txt + +# Other Files From 9c6c78a47295f69c30b62bec9ff0cfb170e00bca Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Mon, 16 Oct 2017 11:47:57 +0800 Subject: [PATCH 083/136] 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 084/136] 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 085/136] 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 086/136] [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 087/136] 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 088/136] 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 089/136] 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 090/136] 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 269a61b29595fc5aa8ede2a6e0fdf3e5e06d5f5b Mon Sep 17 00:00:00 2001 From: Tropical Raisel <87331818+tropicalraisel@users.noreply.github.com> Date: Mon, 27 Sep 2021 08:33:02 -0700 Subject: [PATCH 091/136] Fixed .vscode not being ignored --- Global/VisualStudioCode.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore index 85813e1c..384c8217 100644 --- a/Global/VisualStudioCode.gitignore +++ b/Global/VisualStudioCode.gitignore @@ -1,4 +1,4 @@ -.vscode/* +.vscode/ !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json From 53f9e7ecea6f4f1fe7048295d2b6365d2945cb7c Mon Sep 17 00:00:00 2001 From: xgdgsc Date: Wed, 29 Sep 2021 17:52:57 +0800 Subject: [PATCH 092/136] 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 093/136] 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 8d86f889a271d762a8c540b028d36f72bea4de87 Mon Sep 17 00:00:00 2001 From: Ken Cross Date: Sun, 3 Oct 2021 08:26:51 -0400 Subject: [PATCH 094/136] Add Visual Studio History (VSHistory) files --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 34c8dee4..62c9942c 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -353,6 +353,9 @@ ASALocalRun/ # Local History for Visual Studio .localhistory/ +# Visual Studio History (VSHistory) files +.vshistory/ + # BeatPulse healthcheck temp database healthchecksdb From 11a3752c20b770a06e9f26028f22908237022dcf Mon Sep 17 00:00:00 2001 From: Anil Seervi Date: Tue, 12 Oct 2021 17:13:28 +0530 Subject: [PATCH 095/136] Update global .gitignore template doc ID link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2ffb7d5..ec472da7 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ We support a collection of templates, organized in this way: unimportant files into your repository. - [`Global`](./Global) contains templates for various editors, tools and operating systems that can be used in different situations. It is recommended - that you either [add these to your global template](https://help.github.com/articles/ignoring-files/#create-a-global-gitignore) + that you either [add these to your global template](https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer) or merge these rules into your project-specific templates if you want to use them permanently. - [`community`](./community) contains specialized templates for other popular From 7bcea281916d32d480abfe41a78b204c9935d5b4 Mon Sep 17 00:00:00 2001 From: Edward Rowe Date: Wed, 13 Oct 2021 08:40:50 -0400 Subject: [PATCH 096/136] Unity: Remove exclusion for *.meta files If a user has ignored an asset (no matter how dubious that decision may be), they also want to ignore the .meta file. Instead of bringing back .metas that have been ignored, this template should trust that a user has ignored the files they want to ignore. You'd encounter this issue if you had added an ignore for an asset and its meta above this Unity template, or if another template ignored an asset and meta. In general excludes may be dangerous in these templates, as they can have unintended consequences on other templates. --- Unity.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Unity.gitignore b/Unity.gitignore index 72c27e4f..e4ba9269 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -14,9 +14,6 @@ # They also could contain extremely sensitive data /[Mm]emoryCaptures/ -# Asset meta data should only be ignored when the corresponding asset is also ignored -!/[Aa]ssets/**/*.meta - # Uncomment this line if you wish to ignore the asset store tools plugin # /[Aa]ssets/AssetStoreTools* From 83a3e82b4eb28edd3e76ecbfc7921e4662557278 Mon Sep 17 00:00:00 2001 From: Jan N Rose Date: Wed, 13 Oct 2021 16:42:34 +0200 Subject: [PATCH 097/136] Update TeX.gitignore Add .ptc extension (partial toc) from titletoc package --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 237f49eb..6b92f748 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -213,6 +213,9 @@ pythontex-files-*/ *.md5 *.auxlock +# titletoc +*.ptc + # todonotes *.tdo From e77ef81b1bf41eb12b6080e82dbc350f5d09f0c1 Mon Sep 17 00:00:00 2001 From: Daniel Libanori Date: Thu, 28 Oct 2021 04:52:49 -0300 Subject: [PATCH 098/136] 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 099/136] 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 100/136] 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 101/136] 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 102/136] 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 103/136] 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 104/136] 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 105/136] 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 106/136] 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 107/136] 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 108/136] 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 109/136] 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 110/136] 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 111/136] 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 112/136] 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 113/136] 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 114/136] 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 115/136] 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 116/136] 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 117/136] 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 118/136] 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 119/136] 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 120/136] [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 121/136] 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 39615e27f90edda6c796372b9dbfa44f08aa1219 Mon Sep 17 00:00:00 2001 From: F34th3R Date: Wed, 8 Dec 2021 15:41:21 -0600 Subject: [PATCH 122/136] =?UTF-8?q?Adding=20dotnet/core=20=F0=9F=A7=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core.gitignore | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 core.gitignore diff --git a/core.gitignore b/core.gitignore new file mode 100644 index 00000000..c4d93934 --- /dev/null +++ b/core.gitignore @@ -0,0 +1,38 @@ +*.swp +*.*~ +project.lock.json +.DS_Store +*.pyc +nupkg/ + +# Visual Studio Code +.vscode + +# Rider +.idea + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +build/ +bld/ +[Bb]in/ +[Oo]bj/ +[Oo]ut/ +msbuild.log +msbuild.err +msbuild.wrn + +# Visual Studio 2015 +.vs/ + From f07a642eb9f65c340a107602eaf82f2bef952bfb Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 10 Dec 2021 10:59:08 +0900 Subject: [PATCH 123/136] 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/ From ce8bff3c4ca34600f16ef9c1996a53911575bc06 Mon Sep 17 00:00:00 2001 From: F34th3R Date: Fri, 10 Dec 2021 16:28:25 -0600 Subject: [PATCH 124/136] community/core/core.gitignore --- core.gitignore => community/core/core.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename core.gitignore => community/core/core.gitignore (100%) diff --git a/core.gitignore b/community/core/core.gitignore similarity index 100% rename from core.gitignore rename to community/core/core.gitignore From b461dc26509b0efd8ea4231c01e476fd563c89ba Mon Sep 17 00:00:00 2001 From: Malcolm Date: Sat, 11 Dec 2021 15:37:31 +1300 Subject: [PATCH 125/136] Re-add .env to Node.gitignore --- Node.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 96fd2254..20b0c921 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -72,7 +72,8 @@ web_modules/ # Yarn Integrity file .yarn-integrity -# dotenv environment variables file +# dotenv environment variable files +.env .env.development.local .env.test.local .env.production.local From 7382f5631816feaa0c6a64ba3fe79edd465f6a18 Mon Sep 17 00:00:00 2001 From: "Robert C. Maehl" Date: Sat, 11 Dec 2021 11:26:58 -0500 Subject: [PATCH 126/136] Rename AutoIt.gitignore to community/AutoIt.gitignore --- AutoIt.gitignore => community/AutoIt.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename AutoIt.gitignore => community/AutoIt.gitignore (100%) diff --git a/AutoIt.gitignore b/community/AutoIt.gitignore similarity index 100% rename from AutoIt.gitignore rename to community/AutoIt.gitignore From 7f56496393d1975d38ac1c23755d1547923273b8 Mon Sep 17 00:00:00 2001 From: Chris Bain Date: Sun, 25 Apr 2021 17:27:29 -0400 Subject: [PATCH 127/136] Ignore Eclipse .project and .classpath when using build tools Maven or Gradle --- Gradle.gitignore | 6 ++++++ Maven.gitignore | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/Gradle.gitignore b/Gradle.gitignore index 85888bb2..0986bbec 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -10,3 +10,9 @@ gradle-app.setting # Cache of project .gradletasknamecache + +# Eclipse Gradle plugin generated files +# Eclipse Core +.project +# JDT-specific (Eclipse Java Development Tools) +.classpath diff --git a/Maven.gitignore b/Maven.gitignore index 0e13eebb..2f435308 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -9,3 +9,9 @@ buildNumber.properties .mvn/timing.properties # https://github.com/takari/maven-wrapper#usage-without-binary-jar .mvn/wrapper/maven-wrapper.jar + +# Eclipse m2e generated files +# Eclipse Core +.project +# JDT-specific (Eclipse Java Development Tools) +.classpath From 29f57d101007d7cdece5ff14f11fad7a176ea802 Mon Sep 17 00:00:00 2001 From: kuritka Date: Mon, 13 Dec 2021 15:08:41 +0100 Subject: [PATCH 128/136] GO: Added link to allow list template Signed-off-by: kuritka --- Go.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Go.gitignore b/Go.gitignore index de67df5e..3b735ec4 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -1,3 +1,6 @@ +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# # Binaries for programs and plugins *.exe *.exe~ From 2934dac34fcdf89939421c0763f9e78485ca293d Mon Sep 17 00:00:00 2001 From: jamie Date: Mon, 13 Dec 2021 16:44:48 +0000 Subject: [PATCH 129/136] Create B4X.gitignore --- community/B4X.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 community/B4X.gitignore diff --git a/community/B4X.gitignore b/community/B4X.gitignore new file mode 100644 index 00000000..197c7bb2 --- /dev/null +++ b/community/B4X.gitignore @@ -0,0 +1,3 @@ +**/Objects +**/AutoBackups +*.meta From bf3f140cfabe05651c4338ad6e2ca173299f93df Mon Sep 17 00:00:00 2001 From: Andrew Shymanel <96021377+eightsixnine@users.noreply.github.com> Date: Tue, 14 Dec 2021 03:19:45 +0200 Subject: [PATCH 130/136] Ignore files in directory, not the directory itself --- Global/VisualStudioCode.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore index 7478c274..45fce1d7 100644 --- a/Global/VisualStudioCode.gitignore +++ b/Global/VisualStudioCode.gitignore @@ -1,4 +1,4 @@ -.vscode/ +.vscode/* !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json From e8b37555af4739b0205ef0e0af5daa911300471d Mon Sep 17 00:00:00 2001 From: Dirk Seefeld Date: Tue, 14 Dec 2021 19:57:55 +0100 Subject: [PATCH 131/136] move Umbraco.gitignore to DotNet folder --- Umbraco.gitignore => community/DotNet/Umbraco.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Umbraco.gitignore => community/DotNet/Umbraco.gitignore (100%) diff --git a/Umbraco.gitignore b/community/DotNet/Umbraco.gitignore similarity index 100% rename from Umbraco.gitignore rename to community/DotNet/Umbraco.gitignore From 5a94995d0d15a44bdb1007eabd958f024ee13f5e Mon Sep 17 00:00:00 2001 From: Bill Raymond Date: Tue, 14 Dec 2021 16:47:37 -0800 Subject: [PATCH 132/136] Ignore .bundle and vendor per official Jekyll documentation Per the [Jekyll documentation](https://jekyllrb.com/tutorials/using-jekyll-with-bundler/), you should add the `vendor/` and `.bundle/` paths to the .gitignore file, so you are not managing all dependencies within your repo. --- Jekyll.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jekyll.gitignore b/Jekyll.gitignore index 2ca86829..74a9223a 100644 --- a/Jekyll.gitignore +++ b/Jekyll.gitignore @@ -2,3 +2,6 @@ _site/ .sass-cache/ .jekyll-cache/ .jekyll-metadata +# Ignore folders generated by Bundler +.bundle/ +vendor/ From ff6c8c7d4dbb3f6011410d3aebe0010d970983a8 Mon Sep 17 00:00:00 2001 From: F34th3R Date: Thu, 16 Dec 2021 10:51:20 -0600 Subject: [PATCH 133/136] community/DotNet/core.gitignore --- community/{core => DotNet}/core.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename community/{core => DotNet}/core.gitignore (100%) diff --git a/community/core/core.gitignore b/community/DotNet/core.gitignore similarity index 100% rename from community/core/core.gitignore rename to community/DotNet/core.gitignore From 04a2b1443f25967d47ef0f4c7dfb3d64a27f4e4c Mon Sep 17 00:00:00 2001 From: Berik Visschers Date: Thu, 23 Dec 2021 01:18:15 +0100 Subject: [PATCH 134/136] Update Xcode.gitignore - Remove a reminder to look at files that don't exist anymore - Remove ignore rules for an IDE from 2007 - Remove an ignore rule for Gcc which is no longer used since 2013 --- Global/Xcode.gitignore | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index 91055468..f87d2f2e 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -1,26 +1,6 @@ -# Xcode -# -# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore - ## User settings xcuserdata/ -## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) +## Xcode 8 and earlier *.xcscmblueprint *.xccheckout - -## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) -build/ -DerivedData/ -*.moved-aside -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 - -## Gcc Patch -/*.gcno From 1d4e709db80b4481888076b1f256a7e87eb84105 Mon Sep 17 00:00:00 2001 From: Yangshun Tay Date: Thu, 23 Dec 2021 14:53:27 +0800 Subject: [PATCH 135/136] Add Docusaurus files to Node.gitignore --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index 20b0c921..c6bba591 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -104,6 +104,9 @@ dist .temp .cache +# Docusaurus cache and generated files +.docusaurus + # Serverless directories .serverless/ From c4c4369c8b36401b4d760911901c29996a6c9423 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 30 Dec 2021 10:02:09 -0500 Subject: [PATCH 136/136] chore: Remove empty Travis-CI config --- .travis.yml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 4009e0bc..00000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: ruby - -sudo: false - -branches: - only: - - master - -script: - - ruby -e "puts 'Hello world!'"