From c992170f39243e97565e2c0fd1eeca3014a3086c Mon Sep 17 00:00:00 2001 From: Jakob Sagatowski Date: Sat, 22 Jun 2019 15:00:35 +0200 Subject: [PATCH 001/121] 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/121] 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/121] 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/121] 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/121] 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/121] 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/121] 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/121] 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/121] 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/121] 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 65047ae444f1a784cde8d6f52c32e781a484a505 Mon Sep 17 00:00:00 2001 From: bakkiung <56805122+bakkiung@users.noreply.github.com> Date: Fri, 21 Feb 2020 23:41:41 +1300 Subject: [PATCH 011/121] Add ignore to umbraco folder (#3307) Add ignore to umbraco folder as it will be added by Install-Package UmbracoCms or updated by Update-Package UmbracoCms --- Umbraco.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 5d28bc4f..c2868457 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -14,6 +14,11 @@ # 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` +## you can find your umbraco version at your Web.config. (i.e. ) +## Uncomment this line if you think it fits the way you work on your project. +## **/[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 !**/App_Data/[Pp]ackages/* From 219b1250ba77b79f7aca17884f4122da1cb72de3 Mon Sep 17 00:00:00 2001 From: Jeffrey Priebe Date: Mon, 24 Feb 2020 09:04:31 -0800 Subject: [PATCH 012/121] Remote typings ignore from node gitignore (#3319) Similar to #2608, it's the defacto tsc way now for adding typings locally. --- Node.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index 3d88bf0c..83ada129 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -44,9 +44,6 @@ jspm_packages/ # Snowpack dependency directory (https://snowpack.dev/) web_modules/ -# TypeScript v1 declaration files -typings/ - # TypeScript cache *.tsbuildinfo From d650516d96ab0abecdc446c64faa992a178e3d18 Mon Sep 17 00:00:00 2001 From: Bart Verhagen Date: Tue, 25 Feb 2020 13:54:06 +0100 Subject: [PATCH 013/121] Changed TeX to not ignore tikz files by default. (#3320) --- TeX.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TeX.gitignore b/TeX.gitignore index b30fdeab..6d159be2 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -135,8 +135,8 @@ acs-*.bib # knitr *-concordance.tex -# TODO Comment the next line if you want to keep your tikz graphics files -*.tikz +# TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files +# *.tikz *-tikzDictionary # listings From 599646e9d0a26283d67715dead8f26e0eb2df753 Mon Sep 17 00:00:00 2001 From: bitbonk Date: Fri, 28 Feb 2020 13:30:29 +0100 Subject: [PATCH 014/121] Include Rider as a supported IDE (#3323) AS far as I can tell this .gitignore also applies to Rider. Looking at the somewhat official .gitignore for Rider [here](https://github.com/JetBrains/resharper-rider-samples/blob/master/.gitignore), it seems compatible. --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 37be74a9..8da0824b 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,4 +1,4 @@ -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # User-specific stuff From 289a9e700a8fcad30270fc5e258995a76ca0ee71 Mon Sep 17 00:00:00 2001 From: "dsrini.open" Date: Wed, 4 Mar 2020 17:16:41 -0600 Subject: [PATCH 015/121] 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 8918d73afec1d26351f2e522fa6a68e13abeaf98 Mon Sep 17 00:00:00 2001 From: mr Date: Wed, 11 Mar 2020 21:09:58 +0900 Subject: [PATCH 016/121] Add period. (#3336) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db171347..4bbca183 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ folder that best suits where it belongs. The rules in your specialized template should be specific to the framework or tool, and any additional templates should be mentioned in a comment in the -header of the template +header of the template. For example, this template might live at `community/DotNet/InforCRM.gitignore`: From 1095d930974d0688a4f58b085e6c4dc9410fa587 Mon Sep 17 00:00:00 2001 From: Marouane Hassine Date: Wed, 11 Mar 2020 13:10:57 +0100 Subject: [PATCH 017/121] Update for Prestashop 1.7 (#3261) --- Prestashop.gitignore | 183 +++++++++++++++++++++++++++++++++++++------ 1 file changed, 161 insertions(+), 22 deletions(-) diff --git a/Prestashop.gitignore b/Prestashop.gitignore index 81f45e19..9da6d29a 100644 --- a/Prestashop.gitignore +++ b/Prestashop.gitignore @@ -1,34 +1,173 @@ -# Private files -# The following files contain your database credentials and other personal data. +# Cache, temp and personal files -config/settings.*.php +/.htaccess +*.log -# Cache, temp and generated files -# The following files are generated by PrestaShop. - -admin-dev/autoupgrade/ +# Cache /cache/* -!/cache/index.php -!/cache/*/ -/cache/*/* +!/cache/.htaccess !/cache/cachefs/index.php +!/cache/deprecated.txt +!/cache/index.php !/cache/purifier/index.php +!/cache/push/activity !/cache/push/index.php +!/cache/push/trends !/cache/sandbox/index.php +!/cache/smarty/cache/index.php +!/cache/smarty/compile/index.php !/cache/smarty/index.php !/cache/tcpdf/index.php -config/xml/*.xml -/log/* -*sitemap.xml -themes/*/cache/ -modules/*/config*.xml -# Site content -# The following folders contain product images, virtual products, CSV's, etc. +# Download +/download/* +!/download/.htaccess +!/download/index.php -admin-dev/backups/ -admin-dev/export/ -admin-dev/import/ -download/ +# Images /img/* -upload/ +!/img/.htaccess +!/img/index.php +!/img/404.gif +!/img/bg_500.png +!/img/bg_loader.png +!/img/favicon.ico +!/img/loader.gif +!/img/loadingAnimation.gif +!/img/logo.jpg +!/img/logo.png +!/img/logo_invoice.jpg +!/img/logo_stores.png +!/img/macFFBgHack.png +!/img/prestashop-avatar.png +!/img/prestashop@2x.png +!/img/preston-login-wink@2x.png +!/img/preston-login@2x.png +!/img/questionmark.png +!/img/genders/index.php +!/img/admin/index.php +!/img/c/index.php +!/img/cms/index.php +!/img/co/index.php +!/img/jquery-ui +!/img/l/index.php +!/img/m/index.php +!/img/os/index.php +!/img/p/index.php +!/img/s/index.php +!/img/scenes +!/img/st/index.php +!/img/su/index.php +!/img/t/index.php +!/img/tmp/index.php + +# Upload +/upload/* +!/upload/.htaccess + +/vendor/* +/docs/phpdoc-sf/ +/composer.lock +*.hot-update.js +*.hot-update.json + + +/admin-dev/autoupgrade/* +!/admin-dev/autoupgrade/index.php +!/admin-dev/autoupgrade/backup/index.php + +/admin-dev/backups/* +!/admin-dev/backups/.htaccess + +/admin-dev/import/* +!/admin-dev/import/.htaccess +!/admin-dev/import/index.php + +/admin-dev/export/* +!/admin-dev/export/.htaccess +!/admin-dev/export/index.php + +# Downloaded RTL files +/admin-dev/themes/default/css/bundle/default_rtl.css +/admin-dev/themes/default/css/bundle/shared_rtl.css +/admin-dev/themes/default/css/font_rtl.css +/admin-dev/themes/default/css/overrides_rtl.css +/admin-dev/themes/default/css/vendor/font-awesome/font-awesome_rtl.css +/admin-dev/themes/default/css/vendor/nv.d3_rtl.css +/admin-dev/themes/default/css/vendor/titatoggle-min_rtl.css +/admin-dev/themes/default/public/theme_rtl.css +/admin-dev/themes/new-theme/css/module/drop_rtl.css +/admin-dev/themes/new-theme/css/right-sidebar_rtl.css + +themes/*/cache/* + +# Config + +config/settings.inc.php +config/settings.old.php +config/xml/* +config/themes/* +!config/xml/themes/default.xml +themes/*/config/settings_*.json +app/config/parameters.old.yml +app/config/config.php + +# Themes, modules and overrides + +modules/* +override/* +themes/*/ +!themes/classic +!themes/_core +!themes/_libraries + +# Vendors and dependencies + +bower_components/ +node_modules/ +composer.phar +php-cs-fixer +.grunt/* + +# Translations and emails templates + +translations/* +mails/* +!mails/themes/ +!mails/_partials/ +themes/default-bootstrap/lang/* +themes/default-bootstrap/modules/*/translations/*.php +themes/default-bootstrap/mails/* +!themes/default-bootstrap/mails/en/ +themes/default-bootstrap/modules/*/mails/* +!themes/default-bootstrap/modules/*/mails/en + +# MISC + +*sitemap.xml +/robots.txt + +# Symfony + +/bin/ +/app/Resources/geoip/GeoLite2-City.mmdb +/app/Resources/translations/* +!/app/Resources/translations/default +/app/config/parameters.yml +/app/config/parameters.php +/build/ +/phpunit.xml +/var/* +!/var/cache +/var/cache/* +!var/cache/.gitkeep +!/var/logs +/var/logs/* +!var/logs/.gitkeep +!/var/sessions +/var/sessions/* +!var/sessions/.gitkeep +!var/SymfonyRequirements.php +/vendor/ +/web/bundles/ + From 9904c122443526ff7f1d8ebab86223b7ff69ba06 Mon Sep 17 00:00:00 2001 From: Rohan Sakhale Date: Wed, 11 Mar 2020 17:43:00 +0530 Subject: [PATCH 018/121] Jigsaw (#3334) --- community/PHP/Jigsaw.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 community/PHP/Jigsaw.gitignore diff --git a/community/PHP/Jigsaw.gitignore b/community/PHP/Jigsaw.gitignore new file mode 100644 index 00000000..7cf61e81 --- /dev/null +++ b/community/PHP/Jigsaw.gitignore @@ -0,0 +1,6 @@ +# gitignore template for Jigsaw Static Site Generator +# +# website - https://jigsaw.tighten.co + +# Ignore build folder +build_* From 863f9d209dc5a3b4e562a06a218677ab49a08f41 Mon Sep 17 00:00:00 2001 From: Simon Siefke Date: Wed, 11 Mar 2020 13:28:59 +0100 Subject: [PATCH 019/121] update parcel cache (#3331) --- Node.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Node.gitignore b/Node.gitignore index 83ada129..aac13b0f 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -74,6 +74,7 @@ web_modules/ # parcel-bundler cache (https://parceljs.org/) .cache +.parcel-cache # Next.js build output .next From 4d4af94e22e9c8f14ea5e6fc5339f89430f34c61 Mon Sep 17 00:00:00 2001 From: "A. Said Aslan" Date: Wed, 11 Mar 2020 15:44:55 +0300 Subject: [PATCH 020/121] Update Drupal.gitignore (#3329) --- Drupal.gitignore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Drupal.gitignore b/Drupal.gitignore index 1c101273..8421b864 100644 --- a/Drupal.gitignore +++ b/Drupal.gitignore @@ -23,25 +23,25 @@ # Ignore drupal core (if not versioning drupal sources) /core +/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 -/themes/README.txt -/vendor /.csslintrc /.editorconfig /.eslintignore /.eslintrc.json /.gitattributes +/.ht.router.php /.htaccess /autoload.php -/composer.json -/composer.lock /example.gitignore /index.php +/INSTALL.txt /LICENSE.txt /README.txt /robots.txt From 823e38ff6880cbde2eb77eb804cbdb7d9e1ccca4 Mon Sep 17 00:00:00 2001 From: MetaJuanito Fatas Date: Wed, 11 Mar 2020 21:54:02 +0900 Subject: [PATCH 021/121] Add /public/uploads for file upload gem Shrine (#3333) When using a file upload gem called Shrine, its file system mode put images under `public/uploads`. https://github.com/shrinerb/shrine/blob/053bcf297e092e9695731fb9b67a86780e898203/doc/storage/file_system.md --- Rails.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Rails.gitignore b/Rails.gitignore index 8969914f..ae9df644 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -66,3 +66,4 @@ yarn-debug.log* # Ignore uploaded files in development /storage/* !/storage/.keep +/public/uploads From 589831e1dc8822c2cb0cd33e72b929dfa005ef01 Mon Sep 17 00:00:00 2001 From: Elijah Shaw-Rutschman Date: Wed, 11 Mar 2020 07:59:33 -0500 Subject: [PATCH 022/121] Ignore Cython debug symbols (#3330) Cython extension modules built with `gdb_debug=True` spit out debug symbols in the `cython_debug` directory at the top level of the project. The files in this directory contain hardcoded paths and are not shareable/meaningful across environments, so I think it makes sense to include them in a default Python .gitignore. --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 762cc89f..ba44af1c 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -133,3 +133,6 @@ dmypy.json # pytype static type analyzer .pytype/ + +# Cython debug symbols +cython_debug/ From 81ebaeca4185e2e44e589d6cb3e88cbfc7e0895c Mon Sep 17 00:00:00 2001 From: Sam Gleske <875669+samrocketman@users.noreply.github.com> Date: Wed, 11 Mar 2020 09:03:44 -0400 Subject: [PATCH 023/121] Improved JENKINS_HOME example (#3332) After years of use I've come up with some improvements to the `JENKINS_HOME.gitignore` example. - Major performance improvement: On very large Jenkins installations that have been running for more than one year, there tends to be many builds (hundreds of thousands of builds). The `builds` directory of these jobs contain millions of files which would cause Git to hang for several minutes on simple commands like `git status` and longer for committing changes. `strace` was used on Git to figure out the performance impact and this proposed change includes the optimization. I also added a clear comment explaining the line's purpose. - There's an example for how to include Jenkins encryption keys, and there's a disclaimer informing the user why they shouldn't but still giving an example. - Comments have been reworded and slightly reformatted to be a little more clear. --- JENKINS_HOME.gitignore | 41 +++++++++++++++++++++++++++++++++-------- 1 file changed, 33 insertions(+), 8 deletions(-) diff --git a/JENKINS_HOME.gitignore b/JENKINS_HOME.gitignore index 6df01d62..2516c099 100644 --- a/JENKINS_HOME.gitignore +++ b/JENKINS_HOME.gitignore @@ -1,25 +1,50 @@ -#Learn more about Jenkins and JENKINS_HOME directory for which this file is intended. +# Learn more about Jenkins and JENKINS_HOME directory for which this file is +# intended. +# # http://jenkins-ci.org/ # https://wiki.jenkins-ci.org/display/JENKINS/Administering+Jenkins +# +# Note: secret.key is purposefully not tracked by git. This should be backed up +# separately because configs may contain secrets which were encrypted using the +# secret.key. To back up secrets use 'tar -czf /tmp/secrets.tgz secret*' and +# save the file separate from your repository. If you want secrets backed up +# with configuration, then see the bottom of this file for an example. -#ignore all JENKINS_HOME except jobs directory, root xml config, and .gitignore file +# Ignore all JENKINS_HOME except jobs directory, root xml config, and +# .gitignore file. /* !/jobs !/.gitignore !/*.xml -#ignore all files in jobs subdirectories except for folders -#note: git doesn't track folders, only file content +# Ignore all files in jobs subdirectories except for folders. +# Note: git doesn't track folders, only file content. jobs/** !jobs/**/ -#uncomment the following line to save next build numbers with config +# Uncomment the following line to save next build numbers with config. + #!jobs/**/nextBuildNumber -#exclude only config.xml files in repository subdirectories +# For performance reasons, we want to ignore builds in Jenkins jobs because it +# contains many tiny files on large installations. This can impact git +# performance when running even basic commands like 'git status'. +builds +indexing + +# Exclude only config.xml files in repository subdirectories. !config.xml -#don't track workspaces (when users build on the master) +# Don't track workspaces (when users build on the master). jobs/**/*workspace -#as a result only settings and job config.xml files in JENKINS_HOME will be tracked by git +# Security warning: If secrets are included with your configuration, then an +# adversary will be able to decrypt all encrypted secrets within Jenkins +# config. Including secrets is a bad practice, but the example is included in +# case someone still wants it for convenience. Uncomment the following line to +# include secrets for decryption with repository configuration in Git. + +#!/secret* + +# As a result, only Jenkins settings and job config.xml files in JENKINS_HOME +# will be tracked by git. From dc8c27c5f9eea7185a80478084d67ed3bbe43e2d Mon Sep 17 00:00:00 2001 From: JasperCiti <48373360+JasperCiti@users.noreply.github.com> Date: Wed, 11 Mar 2020 15:07:49 +0200 Subject: [PATCH 024/121] Add Unity's Addressables and Android's temp files. (#3311) * Added Addressables. Prevent automatically generated addressable files to end up in Git. * Update .gitignore to exclude packed Addressables and Android auto-generated files. --- Unity.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 7d21efc9..8150f045 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -62,3 +62,9 @@ sysinfo.txt # Crashlytics generated file crashlytics-build.properties +# Packed Addressables +/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* + +# Temporary auto-generated Android Assets +/[Aa]ssets/[Ss]treamingAssets/aa.meta +/[Aa]ssets/[Ss]treamingAssets/aa/* From be4f76b416f1279ec23b9c833333d510e2ddee8b Mon Sep 17 00:00:00 2001 From: ChiefORZ Date: Wed, 11 Mar 2020 14:08:37 +0100 Subject: [PATCH 025/121] [Node] Add yarn v2 excludes (#3327) --- Node.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index aac13b0f..51c5b108 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -106,3 +106,10 @@ dist # Stores VSCode versions used for testing VSCode extensions .vscode-test + +# yarn v2 + +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.pnp.* From 0af689b9886d71df768822874f0fe68aa6b0f6c0 Mon Sep 17 00:00:00 2001 From: Patrick Roche Date: Wed, 11 Mar 2020 17:06:43 -0400 Subject: [PATCH 026/121] [VisualStudio] Add rule for ScaffoldingReadMe.txt (#3328) --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 611428fa..44ae3e68 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -61,6 +61,9 @@ project.lock.json project.fragment.lock.json artifacts/ +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + # StyleCop StyleCopReport.xml From c022baa5052bff5fa7d83c79310871b9e085f991 Mon Sep 17 00:00:00 2001 From: Christoph Niethammer Date: Thu, 12 Mar 2020 12:14:59 +0100 Subject: [PATCH 027/121] Update Autotools.gitignore. (#3337) Ignore .dirstamp files from automake used for non-existing directory dependencies. --- Autotools.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Autotools.gitignore b/Autotools.gitignore index 56365128..f2c137d0 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -7,6 +7,7 @@ Makefile.in /test-driver /ylwrap .deps/ +.dirstamp # http://www.gnu.org/software/autoconf From 811be05b83a2740e20b3b0f9a5c5efb89961fefe Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 12 Mar 2020 07:21:54 -0400 Subject: [PATCH 028/121] Add Win32/ to gitginore list (#3308) Visual Studio .Net used Win32/ as one of the default output directories for C and C++ projects. Later, when 64-bit support was added to the toolchain (circa 2005), x64/ was used. The Gitignore files include x64/, but not Win32/. The commit adds support for both Win32/ and x64/. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 44ae3e68..114a799a 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -23,6 +23,7 @@ mono_crash.* [Rr]eleases/ x64/ x86/ +[Ww][Ii][Nn]32/ [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ bld/ From c851a10cab28082fcfbe5cecce52c4b5edca1d7c Mon Sep 17 00:00:00 2001 From: jymok12 <51149077+jymok12@users.noreply.github.com> Date: Thu, 12 Mar 2020 04:23:31 -0700 Subject: [PATCH 029/121] update README (#3248) --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 4bbca183..f9ec5eb8 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,7 @@ If you have a small set of rules, or want to support a technology that is not widely in use, and still believe this will be helpful to others, please read the section about [specialized templates](#specialized-templates) for more details. -If you believe your template is important and should be highly visible, please -add details about the impact of the technology when you open a pull request. We +Include details when opening pull request if the template is important and visible. We may not accept it immediately, but we can promote it to the root at a later date based on interest. From ef59ea57e8ea4f18f1ec7068b2ccb22a5b79b40a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikl=C3=B3s=20M=C3=A1rton?= Date: Thu, 12 Mar 2020 19:47:06 +0100 Subject: [PATCH 030/121] Extend Qt.gitignore with qmlcache qrc files (#3322) Projects using QML files generating a temporary qrc file if a qrc file present in the project. --- Qt.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Qt.gitignore b/Qt.gitignore index f147edf3..10135402 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -50,3 +50,5 @@ compile_commands.json # QtCreator local machine specific files for imported projects *creator.user* + +*_qmlcache.qrc From ae5431d6f09a0cc52fd2c03c20125c6d2a7f6255 Mon Sep 17 00:00:00 2001 From: Arcadiy Ivanov Date: Thu, 12 Mar 2020 14:49:35 -0400 Subject: [PATCH 031/121] Changes to PyBuilder 0.12+ (#3338) PyB 0.12 uses `$project_root/.pybuilder/` for internal venvs. --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index ba44af1c..b26ab7e4 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -73,6 +73,7 @@ instance/ docs/_build/ # PyBuilder +.pybuilder/ target/ # Jupyter Notebook From e931ef7f3e7d8f7aa0e784c14bd291ad4448b1ab Mon Sep 17 00:00:00 2001 From: Meysam Date: Fri, 13 Mar 2020 15:23:35 +0330 Subject: [PATCH 032/121] [Python] adding IDE & static related stuff (#3317) --- Python.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index b26ab7e4..d82fa7a9 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -137,3 +137,7 @@ dmypy.json # Cython debug symbols cython_debug/ + +# static files generated from Django application using `collectstatic` +media +static From 3df9bc0bd9cb0c3f5ea0904e88b9df5a378ccd59 Mon Sep 17 00:00:00 2001 From: Patrick Schratz Date: Sat, 28 Mar 2020 15:47:35 +0100 Subject: [PATCH 033/121] Update R.gitignore (#3354) --- R.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/R.gitignore b/R.gitignore index fae8299a..e2101077 100644 --- a/R.gitignore +++ b/R.gitignore @@ -37,3 +37,6 @@ vignettes/*.pdf # R Environment Variables .Renviron + +# pkgdown site +docs/ From e00e3cc6cd889740d645f51db909c6b3b819feb3 Mon Sep 17 00:00:00 2001 From: Alessandro Cuttin Date: Fri, 27 Mar 2020 22:11:29 +0100 Subject: [PATCH 034/121] 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 eefa65c924329ad918985713cdb195e6bc68744b Mon Sep 17 00:00:00 2001 From: ofthelit Date: Sat, 4 Apr 2020 18:30:38 +0200 Subject: [PATCH 035/121] Ignore Local History folder (#3008) This will add support for the default location the Local History extension for Visual Studio Code uses. See https://marketplace.visualstudio.com/items?itemName=xyz.local-history --- Global/VisualStudioCode.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore index afba0a7c..85813e1c 100644 --- a/Global/VisualStudioCode.gitignore +++ b/Global/VisualStudioCode.gitignore @@ -4,3 +4,6 @@ !.vscode/launch.json !.vscode/extensions.json *.code-workspace + +# Local History for Visual Studio Code +.history/ From e607bdd855c03b8fef80782780f63c1d0c8865eb Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 4 Apr 2020 13:30:58 -0300 Subject: [PATCH 036/121] Revert "[Python] adding IDE & static related stuff (#3317)" (#3363) This reverts commit e931ef7f3e7d8f7aa0e784c14bd291ad4448b1ab. --- Python.gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Python.gitignore b/Python.gitignore index d82fa7a9..b26ab7e4 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -137,7 +137,3 @@ dmypy.json # Cython debug symbols cython_debug/ - -# static files generated from Django application using `collectstatic` -media -static From 8300d885653868b94e134e1950dea52b983e2cef Mon Sep 17 00:00:00 2001 From: Loo Zheng Yuan Date: Sun, 5 Apr 2020 00:32:17 +0800 Subject: [PATCH 037/121] Ignore Terraform CLI configuration files (#3359) --- Terraform.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Terraform.gitignore b/Terraform.gitignore index 7a3e2fd0..8778d48f 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -27,3 +27,7 @@ override.tf.json # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan # example: *tfplan* + +# Ignore CLI configuration files +.terraformrc +terraform.rc From 2f75277037d172200d4a37621c1b9c3b9901dbd8 Mon Sep 17 00:00:00 2001 From: Igor Stepanov Date: Sat, 4 Apr 2020 17:32:58 +0100 Subject: [PATCH 038/121] Ignore AWS Serverless Application Model build folder (#3357) https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-cli-command-reference-sam-build.html --- community/AWS/SAM.gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 community/AWS/SAM.gitignore diff --git a/community/AWS/SAM.gitignore b/community/AWS/SAM.gitignore new file mode 100644 index 00000000..dc9d020a --- /dev/null +++ b/community/AWS/SAM.gitignore @@ -0,0 +1,5 @@ +# gitignore template for AWS Serverless Application Model project +# website: https://docs.aws.amazon.com/serverless-application-model + +# Ignore build folder +.aws-sam/ From 994f99fc353f523dfe5633067805a1dd4a53040f Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Tue, 7 Apr 2020 08:53:51 -0400 Subject: [PATCH 039/121] Add generated timing files to Coq.gitignore (#3367) These generated files were added in https://github.com/coq/coq/pull/745 --- Coq.gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Coq.gitignore b/Coq.gitignore index a3e2ac49..829ac44a 100644 --- a/Coq.gitignore +++ b/Coq.gitignore @@ -31,3 +31,13 @@ lia.cache nia.cache nlia.cache nra.cache + +# generated timing files +*.timing.diff +*.v.after-timing +*.v.before-timing +*.v.timing +time-of-build-after.log +time-of-build-before.log +time-of-build-both.log +time-of-build-pretty.log From 14f8a8b4c51ecc00b18905a95c117954e6c77b9d Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Sun, 12 Apr 2020 02:51:33 +0530 Subject: [PATCH 040/121] Remove pip-wheel-metadata/ from Python.gitignore (#3364) pip generated this folder for a few versions, as part of it's initial implementation of PEP 517. pip has not generated this folder for a few versions now, so it should be OK to remove this from the standard gitignore file. --- Python.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index b26ab7e4..a81c8ee1 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -20,7 +20,6 @@ parts/ sdist/ var/ wheels/ -pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg From 80587386dd48334c304819abcc4a09877cf99e21 Mon Sep 17 00:00:00 2001 From: Mitchell Skaggs Date: Tue, 14 Apr 2020 14:14:56 -0500 Subject: [PATCH 041/121] Ignore Gradle subproject build dir (#3370) --- Gradle.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gradle.gitignore b/Gradle.gitignore index a1fc39c0..8d68edc9 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -1,5 +1,6 @@ .gradle -/build/ +**/build/ +!src/**/build/ # Ignore Gradle GUI config gradle-app.setting From 2a4de265d37eca626309d8e115218d18985b5435 Mon Sep 17 00:00:00 2001 From: Daniel Chalmers Date: Mon, 20 Apr 2020 19:27:53 -0500 Subject: [PATCH 042/121] Add FodyWeavers.xsd to VisualStudio.gitignore (#3380) --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 114a799a..83ba0814 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -355,3 +355,6 @@ MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd From eee21bf0c397cddc39ff1c94615d135e0ad36f8c Mon Sep 17 00:00:00 2001 From: Ted Kesgar Date: Wed, 29 Apr 2020 20:45:59 +0700 Subject: [PATCH 043/121] Ignore Next.js `next export` result directory (#3387) --- Node.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Node.gitignore b/Node.gitignore index 51c5b108..8fd12ceb 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -78,6 +78,7 @@ web_modules/ # Next.js build output .next +out # Nuxt.js build / generate output .nuxt From 07b3cd7a90de3fb5e88303a23d619ebd4cdd807a Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Wed, 6 May 2020 15:30:31 +0200 Subject: [PATCH 044/121] Dart: Ignore .flutter-plugins (#3398) Generated files that appear when using 'google_fonts' or other Dart packages designed as Flutter plugins. --- Dart.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dart.gitignore b/Dart.gitignore index dbef116d..6d21af37 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -19,3 +19,6 @@ doc/api/ *.js_ *.js.deps *.js.map + +.flutter-plugins +.flutter-plugins-dependencies From 7293c14345c205c679722364a01b88d331e862ff Mon Sep 17 00:00:00 2001 From: Jon Layton <2287825+ch4ot1c@users.noreply.github.com> Date: Thu, 14 May 2020 07:49:06 -0400 Subject: [PATCH 045/121] Add .yarn/install-state.gz to Node.gitignore (#3407) After running `yarn set version berry` and `yarn install`, the file `.yarn/install-state.gz` is created. The documentation at https://yarnpkg.com/advanced/qa#which-files-should-be-gitignored mentions that this file should be ignored: > .yarn/install-state.tgz is an optimization file that you shouldn't have to ever commit. It simply stores the exact state of your project so that the next commands can boot without having to resolve your workspaces again. The documentation has a minor error; the generated file is `.gz` instead of `.tgz` (source: https://github.com/yarnpkg/berry/pull/998/files#diff-23dd4c2e823c25186f1107e88e962032R201) --- Node.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 8fd12ceb..1f22b9c2 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -109,8 +109,8 @@ dist .vscode-test # yarn v2 - .yarn/cache .yarn/unplugged .yarn/build-state.yml +.yarn/install-state.gz .pnp.* From 6935207fef87dd7f0995b0260cdcdd38cf81e986 Mon Sep 17 00:00:00 2001 From: Benjamin Buch Date: Tue, 19 May 2020 14:19:39 +0200 Subject: [PATCH 046/121] ignore .xwm generated by xwatermark package in TeX (#3412) --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 6d159be2..8a42ebbd 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -275,6 +275,9 @@ TSWLatexianTemp* # Makeindex log files *.lpz +# xwatermark package +*.xwm + # REVTeX puts footnotes in the bibliography by default, unless the nofootinbib # option is specified. Footnotes are the stored in a file with suffix Notes.bib. # Uncomment the next line to have this generated file ignored. From 18aa6d83774d514da479d73a4beb864cd4220231 Mon Sep 17 00:00:00 2001 From: Hiroto Kobayashi Date: Tue, 19 May 2020 22:48:08 +0900 Subject: [PATCH 047/121] Add *.aab (#3414) --- Unity.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Unity.gitignore b/Unity.gitignore index 8150f045..72c27e4f 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -57,6 +57,7 @@ sysinfo.txt # Builds *.apk +*.aab *.unitypackage # Crashlytics generated file From 88014e6d0c75dfd0927348800404bb58d80aede6 Mon Sep 17 00:00:00 2001 From: Jakob Sagatowski Date: Tue, 26 May 2020 16:17:55 +0200 Subject: [PATCH 048/121] 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 049/121] 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 620d4878a014cefdd1919c39527290c852539712 Mon Sep 17 00:00:00 2001 From: John Stilley <1831479+theJollySin@users.noreply.github.com> Date: Fri, 3 Jul 2020 14:07:44 -0400 Subject: [PATCH 050/121] Fixing target and adding debug to Rust gitignore (#3436) The problem here was two fold: 1. the folder "/target/" would be top-level of the repo only, it should be "target/" to properly exclude target folders anywhere in the repo 2. the default Rust/Cargo folder when compiling code is "debug/", which gets used perhaps more often that "target/", added that --- Rust.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Rust.gitignore b/Rust.gitignore index 088ba6ba..ff47c2d7 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -1,6 +1,7 @@ # Generated by Cargo # will have compiled files and executables -/target/ +debug/ +target/ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html From 6eff882467cbde7b4e293b4dd6abd7685fc67844 Mon Sep 17 00:00:00 2001 From: Justin Gregory Date: Fri, 3 Jul 2020 15:15:33 -0500 Subject: [PATCH 051/121] Fix false positives on Coverage*.cs files (#3454) I added this .gitignore to a project that included a file named CoverageSearchModel.cs, and the file was wrongly ignored. This change fixes the incorrect use of the range operator on the Coverlet rules. --- VisualStudio.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 83ba0814..1ee53850 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -142,7 +142,9 @@ _TeamCity* !.axoCover/settings.json # Coverlet is a free, cross platform Code Coverage Tool -coverage*[.json, .xml, .info] +coverage*.json +coverage*.xml +coverage*.info # Visual Studio code coverage results *.coverage From c9fab68db3d854d1482fb566f521989b4506fd7f Mon Sep 17 00:00:00 2001 From: ZhengYuan Loo Date: Sat, 4 Jul 2020 04:17:35 +0800 Subject: [PATCH 052/121] Update stale heading anchor (#3445) Co-authored-by: ZhengYuan Loo --- Global/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/README.md b/Global/README.md index 06b6649b..6e57d87f 100644 --- a/Global/README.md +++ b/Global/README.md @@ -4,7 +4,7 @@ This directory contains globally useful gitignores, e.g. OS-specific and editor specific. For more on global gitignores: - + And a good blog post about 'em: From 5cf393421db855df42b64e081a916d054f6c5ecc Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Sat, 4 Jul 2020 04:19:48 +0800 Subject: [PATCH 053/121] ignore *~ files in the po directory (#3453) Common IME for `gettext` utilities like `tools::update_pkg_po('.')` to create these temp files (at least on Mac) --- R.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/R.gitignore b/R.gitignore index e2101077..da10c745 100644 --- a/R.gitignore +++ b/R.gitignore @@ -40,3 +40,6 @@ vignettes/*.pdf # pkgdown site docs/ + +# translation temp files +po/*~ From eea28935df555ba6cdc373bec7d5212272d49bfa Mon Sep 17 00:00:00 2001 From: Maher Zaidoune Date: Sat, 4 Jul 2020 17:35:59 +0100 Subject: [PATCH 054/121] ignore HPROF files (#3456) --- Android.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index 56cc6425..23de6e20 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -83,3 +83,6 @@ lint/generated/ lint/outputs/ lint/tmp/ # lint/reports/ + +# Android Profiling +*.hprof From 36ce3a894d9ddff2916bc98d71380aa7167ff1d7 Mon Sep 17 00:00:00 2001 From: Kevin Cochran <40193276+kevincloud@users.noreply.github.com> Date: Mon, 6 Jul 2020 20:36:25 -0400 Subject: [PATCH 055/121] Exclude *.tfvars files (#3452) Co-authored-by: Kevin Cochran --- Terraform.gitignore | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Terraform.gitignore b/Terraform.gitignore index 8778d48f..beb38d84 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -8,11 +8,12 @@ # Crash log files crash.log -# Ignore any .tfvars files that are generated automatically for each Terraform run. Most -# .tfvars files are managed as part of configuration and so should be included in -# version control. +# 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 +# to change depending on the environment. # -# example.tfvars +*.tfvars # Ignore override files as they are usually used to override resources locally and so # are not checked in From f44d83083e2b0438d557279d8047d1dff8607882 Mon Sep 17 00:00:00 2001 From: Michael Alexsander Date: Sun, 12 Jul 2020 12:04:53 -0300 Subject: [PATCH 056/121] Remove pointless blank line from the beginning of the Godot file (#3466) --- Godot.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Godot.gitignore b/Godot.gitignore index 122aab1c..4f48ad79 100644 --- a/Godot.gitignore +++ b/Godot.gitignore @@ -1,4 +1,3 @@ - # Godot-specific ignores .import/ export.cfg From 218a941be92679ce67d0484547e3e142b2f5f6f0 Mon Sep 17 00:00:00 2001 From: Diego Herranz Date: Sun, 12 Jul 2020 16:07:13 +0100 Subject: [PATCH 057/121] KiCad: add *.kicad_sch-bak and *.kicad_prl (#3427) * KiCad: add *.kicad_sch-bak As used by the new file formats for KiCad 6.0 See https://kicad-pcb.org/blog/2020/05/Development-Highlight-New-schematic-and-symbol-library-file-formats-are-now-the-default/ * Add *.kicad_prl to KiCad.gitignore More info: https://forum.kicad.info/t/new-project-file-format/23705 --- KiCad.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/KiCad.gitignore b/KiCad.gitignore index 853ee63f..bd70969a 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -6,6 +6,8 @@ *.bak *.bck *.kicad_pcb-bak +*.kicad_sch-bak +*.kicad_prl *.sch-bak *~ _autosave-* From bb28a8ce82effdb5990155a13f3eed9e063d9245 Mon Sep 17 00:00:00 2001 From: James Kerrane Date: Tue, 9 Feb 2021 18:32:09 -0700 Subject: [PATCH 058/121] 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 059/121] 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 060/121] 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 061/121] 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 062/121] 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 063/121] 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 064/121] 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 065/121] 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 066/121] 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 067/121] 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 068/121] 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 069/121] 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 070/121] 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 071/121] 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 072/121] 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 073/121] 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 074/121] 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 075/121] 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 076/121] 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 077/121] 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 078/121] 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 079/121] 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 080/121] 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 081/121] 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 082/121] 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 083/121] 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 084/121] 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 085/121] 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 086/121] 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 087/121] 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 088/121] 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 089/121] 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 090/121] 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 091/121] 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 092/121] 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 093/121] 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 094/121] 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 095/121] 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 096/121] 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 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 097/121] 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 098/121] 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 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 099/121] 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 100/121] 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 1a84870ad77a665460fd1504d18c384954e3cc1e Mon Sep 17 00:00:00 2001 From: GrpeApple Date: Sun, 11 Jul 2021 13:03:23 +0800 Subject: [PATCH 101/121] 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 9c6c78a47295f69c30b62bec9ff0cfb170e00bca Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Mon, 16 Oct 2017 11:47:57 +0800 Subject: [PATCH 102/121] 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 103/121] 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 104/121] 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 105/121] [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 106/121] 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 107/121] 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 108/121] 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 e77ef81b1bf41eb12b6080e82dbc350f5d09f0c1 Mon Sep 17 00:00:00 2001 From: Daniel Libanori Date: Thu, 28 Oct 2021 04:52:49 -0300 Subject: [PATCH 109/121] Ignore Rails .env according recomendations Reasons for making this change: Rails dotenv ignore is not following dotenv recommendations as stated in its documentation Links to documentation supporting these rule changes: https://github.com/bkeepers/dotenv#what-other-env-files-can-i-use --- Rails.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rails.gitignore b/Rails.gitignore index ae9df644..c55bb713 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -27,7 +27,7 @@ config/master.key # dotenv, dotenv-rails # TODO Comment out these rules if environment variables can be committed .env -.env.* +.env*.local ## Environment normalization: /.bundle From 14ef93721432b85196b402ff9c438e41a28c96c2 Mon Sep 17 00:00:00 2001 From: Benjamin Altpeter Date: Tue, 2 Nov 2021 11:10:35 +0000 Subject: [PATCH 110/121] Hugo: Add new .hugo_build.lock Version 0.89.0 of Hugo creates a new `.hugo_build.lock` lock file when building the site. The release notes suggest adding this to the `.gitignore`: https://github.com/gohugoio/hugo/releases/tag/v0.89.0 --- community/Golang/Hugo.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/community/Golang/Hugo.gitignore b/community/Golang/Hugo.gitignore index 37fa330e..996959a3 100644 --- a/community/Golang/Hugo.gitignore +++ b/community/Golang/Hugo.gitignore @@ -6,3 +6,6 @@ hugo.exe hugo.darwin hugo.linux + +# Temporary lock file while building +/.hugo_build.lock From b705152d98c301a4f9ee1e49865bce0ffbb7bc71 Mon Sep 17 00:00:00 2001 From: Josh Gadeken Date: Mon, 8 Nov 2021 03:50:27 -0700 Subject: [PATCH 111/121] 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 112/121] 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 113/121] 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 114/121] 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 115/121] 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 116/121] 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 117/121] 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 118/121] 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 119/121] 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 120/121] 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 121/121] 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