From 42b5cf3ced345720d0201e2234c0895dabfc6746 Mon Sep 17 00:00:00 2001 From: Thomas Christoph Mueller Date: Mon, 2 Nov 2015 18:49:06 +0100 Subject: [PATCH 001/127] Initial gitignore file for [Cadence Virtuoso](http://www.cadence.com/products/cic/Pages/default.aspx) Cadence Virtuoso is a commercial EDA tool used for custom IC (ASIC) design. This gitignore file blacklists database lock files, the contents of run directories for layout versus schematic and design rule checks as well as log files for a selection of tools inside the package. --- Global/Virtuoso.gitignore | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Global/Virtuoso.gitignore diff --git a/Global/Virtuoso.gitignore b/Global/Virtuoso.gitignore new file mode 100644 index 00000000..2de03673 --- /dev/null +++ b/Global/Virtuoso.gitignore @@ -0,0 +1,18 @@ +# Gitignore for Cadence Virtuoso +################################################################ + +# Log files +*.log +panic*.log.* + +# OpenAccess database lock files +*.cdslck* + +# Run directories for layout vs. schematic and design rule check +lvsRunDir/* +drcRunDir/* + +# Abstract generation tool +abstract.log* +abstract.record* + From 236e6d0af085ec1f4852ad00d5cdeb3db8a5c930 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Juan=20Rico=20Mendoza?= Date: Tue, 28 Jun 2016 20:19:15 -0300 Subject: [PATCH 002/127] Add support for Dolphin Smalltalk --- Smalltalk.gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Smalltalk.gitignore b/Smalltalk.gitignore index 75272b23..e56e539e 100644 --- a/Smalltalk.gitignore +++ b/Smalltalk.gitignore @@ -1,8 +1,11 @@ # changes file *.changes +*.chg # system image *.image +*.img7 +*.img # Pharo Smalltalk Debug log file PharoDebug.log @@ -10,6 +13,12 @@ PharoDebug.log # Squeak Smalltalk Debug log file SqueakDebug.log +# Dolphin Smalltalk source file +*.sml + +# Dolphin Smalltalk error file +*.errors + # Monticello package cache /package-cache From 5a355ed010640b689e06c589e38019bff81c9a15 Mon Sep 17 00:00:00 2001 From: Alexander Brevig Date: Tue, 30 Aug 2016 22:12:31 +0200 Subject: [PATCH 003/127] Add gitignore for Cypress Semiconductor IDE The PSoC is a popular microcontroller and the PSoC Creator is a great IDE that deserves a .gitignore so it's easier for people to share the _neccessary_ files for collaboration. >not affiliated --- Global/PSoCCreator.gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Global/PSoCCreator.gitignore diff --git a/Global/PSoCCreator.gitignore b/Global/PSoCCreator.gitignore new file mode 100644 index 00000000..84f0236e --- /dev/null +++ b/Global/PSoCCreator.gitignore @@ -0,0 +1,16 @@ +# Project Settings +*.cywrk.* +*.cyprj.* + +# Generated Assets and Resources +Debug/ +Release/ +Export/ +*/codegentemp +*/Generated_Source +*_datasheet.pdf +*_timing.html +*.cycdx +*.cyfit +*.rpt +*.svd From d5724e4198dcc486c029e446d22e3fd4893edaae Mon Sep 17 00:00:00 2001 From: marcrocny Date: Thu, 2 Mar 2017 17:14:45 -0500 Subject: [PATCH 004/127] VS15 bower - default config In VS15 (2017) the default .bowerrc repoints the default location to wwwroot/lib, and bower package restore is ON. --- VisualStudio.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index a752eacc..fa891f11 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -205,6 +205,9 @@ orleans.codegen.cs # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) #bower_components/ +# VS15: by default bower location is moved, bower restore is true +**/wwwroot/lib/ + # RIA/Silverlight projects Generated_Code/ @@ -284,4 +287,4 @@ __pycache__/ *.btp.cs *.btm.cs *.odx.cs -*.xsd.cs \ No newline at end of file +*.xsd.cs From 6686e52dbee808c0eab4d4197ff080363657853d Mon Sep 17 00:00:00 2001 From: Marc Lewandowski Date: Mon, 6 Mar 2017 13:14:55 -0500 Subject: [PATCH 005/127] update wwwroot/lib description; revert EOF --- VisualStudio.gitignore | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index fa891f11..4a20d44c 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -204,8 +204,7 @@ orleans.codegen.cs # Since there are multiple workflows, uncomment next line to ignore bower_components # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) #bower_components/ - -# VS15: by default bower location is moved, bower restore is true +# ASP.NET Core default setup: bower directory is configured as wwwroot/lib/ and bower restore is true **/wwwroot/lib/ # RIA/Silverlight projects @@ -287,4 +286,4 @@ __pycache__/ *.btp.cs *.btm.cs *.odx.cs -*.xsd.cs +*.xsd.cs \ No newline at end of file From 1da4978fc81ab9c7f0dff471bfd201400cffe21a Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Wed, 10 May 2017 10:00:35 +0200 Subject: [PATCH 006/127] Create PuTTY.gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Reasons for making this change:** PuTTYgen is a widely used alternative to OpenSSH under Windows. This rule allows private keys ignoring. If this is a new template: - **Link to application or project’s homepage**: https://www.chiark.greenend.org.uk/~sgtatham/putty/ --- Global/PuTTY.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Global/PuTTY.gitignore diff --git a/Global/PuTTY.gitignore b/Global/PuTTY.gitignore new file mode 100644 index 00000000..c37466b1 --- /dev/null +++ b/Global/PuTTY.gitignore @@ -0,0 +1,2 @@ +# Private key +*.ppk From 430b19e374f2cc292b962dcc63774c8ae2413bf4 Mon Sep 17 00:00:00 2001 From: Justin Hartman Date: Thu, 4 Jan 2018 04:57:41 +0200 Subject: [PATCH 007/127] New template file for Images --- Global/Images.gitignore | 63 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 Global/Images.gitignore diff --git a/Global/Images.gitignore b/Global/Images.gitignore new file mode 100644 index 00000000..97dcdbe6 --- /dev/null +++ b/Global/Images.gitignore @@ -0,0 +1,63 @@ +# JPEG +*.jpg +*.jpeg +*.jpe +*.jif +*.jfif +*.jfi + +# JPEG 2000 +*.jp2 +*.j2k +*.jpf +*.jpx +*.jpm +*.mj2 + +# JPEG XR +*.jxr +*.hdp +*.wdp + +# Graphics Interchange Format +*.gif + +# RAW +*.raw + +# Web P +*.webp + +# Portable Network Graphics +*.png + +# Animated Portable Network Graphics +*.apng + +# Multiple-image Network Graphics +*.mng + +# Tagged Image File Format +*.tiff +*.tif + +# Scalable Vector Graphics +*.svg +*.svgz + +# Portable Document Format +*.pdf + +# X BitMap +*.xbm + +# BMP +*.bmp +*.dib + +# ICO +*.ico + +# 3D Images +*.3dm +*.max From f6fa01ee0dc4ca02db01cc730a9c798fa5dd256a Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Mon, 18 Jun 2018 11:33:48 +0700 Subject: [PATCH 008/127] New file for diff files --- Global/Diff.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Global/Diff.gitignore diff --git a/Global/Diff.gitignore b/Global/Diff.gitignore new file mode 100644 index 00000000..59491b44 --- /dev/null +++ b/Global/Diff.gitignore @@ -0,0 +1,2 @@ +*.patch +*.diff From 12f63fc752a858627485f2d1483ad310c9826d51 Mon Sep 17 00:00:00 2001 From: Fidel Esteban Morales Cifuentes Date: Sat, 30 Jun 2018 20:18:50 -0600 Subject: [PATCH 009/127] Update Swift.gitignore Adding Code Injection --- Swift.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Swift.gitignore b/Swift.gitignore index b8e04d98..7b0d62bc 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -69,3 +69,10 @@ fastlane/report.xml fastlane/Preview.html fastlane/screenshots/**/*.png fastlane/test_output + +# Code Injection +# +# After new code Injection tools there's a generated folder /iOSInjectionProject +# https://github.com/johnno1962/injectionforxcode + +iOSInjectionProject/ From f19d2a5171c0a7573d3d00e6ca91c8bc0a18e77e Mon Sep 17 00:00:00 2001 From: Fidel Esteban Morales Cifuentes Date: Sat, 30 Jun 2018 20:19:22 -0600 Subject: [PATCH 010/127] Update Xcode.gitignore Updating file to match the one for swift and objective c. --- Global/Xcode.gitignore | 74 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 65 insertions(+), 9 deletions(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index cd0c7d3e..b01314d3 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -2,17 +2,11 @@ # # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore -## User settings -xcuserdata/ - -## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) -*.xcscmblueprint -*.xccheckout - -## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) +## Build generated build/ DerivedData/ -*.moved-aside + +## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -21,3 +15,65 @@ DerivedData/ !default.mode2v3 *.perspectivev3 !default.perspectivev3 +xcuserdata/ + +## Other +*.moved-aside +*.xccheckout +*.xcscmblueprint + +## Obj-C/Swift specific +*.hmap +*.ipa +*.dSYM.zip +*.dSYM + +## Playgrounds +timeline.xctimeline +playground.xcworkspace + +# Swift Package Manager +# +# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. +# Packages/ +# Package.pins +# Package.resolved +.build/ + +# CocoaPods +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# +# Pods/ +# +# Add this line if you want to avoid checking in source code from the Xcode workspace +# *.xcworkspace + +# Carthage +# +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/#source-control + +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots/**/*.png +fastlane/test_output + +# Code Injection +# +# After new code Injection tools there's a generated folder /iOSInjectionProject +# https://github.com/johnno1962/injectionforxcode + +iOSInjectionProject/ + From e9abf595a3f0a1c8cf00cadcb223f037a73273a0 Mon Sep 17 00:00:00 2001 From: "Muhannad Ajjan (INACTIVE)" Date: Wed, 4 Jul 2018 15:11:37 +0200 Subject: [PATCH 011/127] updated jetbrains gitignore to ignore contentModel contentModel.xml is automatically generated and can be safely ignored. Source: https://rider-support.jetbrains.com/hc/en-us/community/posts/115000661950-A-lot-of-files-in-contentModel-xml?page=1#community_comment_115000538984 --- Global/JetBrains.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 0d95b087..343be1a3 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -8,6 +8,9 @@ .idea/**/dictionaries .idea/**/shelf +# Generated files +.idea/**/contentModel.xml + # Sensitive or high-churn files .idea/**/dataSources/ .idea/**/dataSources.ids From 394704b6a75db08c70e050217f5b54e44cb0fdad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Santos?= <8303937+fabiofdsantos@users.noreply.github.com> Date: Mon, 6 Aug 2018 14:51:56 +0100 Subject: [PATCH 012/127] Update Laravel.gitignore --- Laravel.gitignore | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Laravel.gitignore b/Laravel.gitignore index a4854bef..67e2146f 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -1,6 +1,7 @@ vendor/ node_modules/ npm-debug.log +yarn-error.log # Laravel 4 specific bootstrap/compiled.php @@ -10,11 +11,7 @@ app/storage/ public/storage public/hot storage/*.key -.env.*.php -.env.php .env Homestead.yaml Homestead.json - -# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer -.rocketeer/ +/.vagrant From 4274a6d32dd5451b3cbe835e37004d2eb351682b Mon Sep 17 00:00:00 2001 From: Stefan Krnajski Date: Wed, 8 Aug 2018 22:39:04 +0200 Subject: [PATCH 013/127] Ignore logs for Symfony4 Source: https://symfony.com/doc/master/logging.html Under Where Logs are Stored, added since Symfony 4.0 --- Symfony.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Symfony.gitignore b/Symfony.gitignore index d098259f..3dab634c 100644 --- a/Symfony.gitignore +++ b/Symfony.gitignore @@ -15,6 +15,10 @@ !var/logs/.gitkeep !var/sessions/.gitkeep +# Logs (Symfony4) +/var/log/* +!var/log/.gitkeep + # Parameters /app/config/parameters.yml /app/config/parameters.ini From cbdbe97c965e6447d8ac5d1ed5f4591e3d413890 Mon Sep 17 00:00:00 2001 From: YCH Date: Tue, 14 Aug 2018 12:50:32 +0800 Subject: [PATCH 014/127] Removed Microsoft Word 2016 Auto Backuped File on macOS If checked the option "Always create backup copy" under Settings -> Save within Microsoft Word 2016 on macOS, when editing a docx file, a folder named as same as docx file name(without ext) will be created and placed a docx backup file named "Backup of DOCX_ORIGINAL_FILENAME.docx". --- Global/MicrosoftOffice.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/MicrosoftOffice.gitignore b/Global/MicrosoftOffice.gitignore index 0c203662..ddcc9cf6 100644 --- a/Global/MicrosoftOffice.gitignore +++ b/Global/MicrosoftOffice.gitignore @@ -3,6 +3,9 @@ # Word temporary ~$*.doc* +# Word Auto Backup File +Backup of *.doc* + # Excel temporary ~$*.xls* From b7477e9c1b403686c7f55b66ad7cade1eab33d17 Mon Sep 17 00:00:00 2001 From: Peter Date: Thu, 16 Aug 2018 04:25:13 +0200 Subject: [PATCH 015/127] KiCad .gitignore library fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We shouldn't ignore -cache.lib files, because it causes missing components in your schema http://kicad-pcb.org/help/file-formats/ specifically mentions this: > `-cache.lib`: …​ a local copy of all the symbols used in the corresponding schematic, so that when the folder containing a KiCad project is copied to a different PC, the schematic can still be opened and printed and will still look the same as the original draughtsperson intended - even if that other PC does not have those symbols in its main libraries (or has symbols that coincidentally have the same name but are completely different). --- KiCad.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/KiCad.gitignore b/KiCad.gitignore index 198392e5..15fdf72e 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -9,7 +9,6 @@ *~ _autosave-* *.tmp -*-cache.lib *-rescue.lib *-save.pro *-save.kicad_pcb From 07a1dd6b99fa52b43811fa1447ecc83cb1a4bee4 Mon Sep 17 00:00:00 2001 From: Gabriel Curio Date: Sat, 18 Aug 2018 12:08:55 -0500 Subject: [PATCH 016/127] add .dmypy.json to Python.gitignore. MyPy includes a daemon server that creates a file named .dmypy.json to manage socket connection data. --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 894a44cc..8cd91f3c 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -102,3 +102,4 @@ venv.bak/ # mypy .mypy_cache/ +.dmypy.json From eb4ff424fdcc78b4f431745aa1417a0d265e301f Mon Sep 17 00:00:00 2001 From: Gabriel Curio Date: Sat, 18 Aug 2018 12:21:30 -0500 Subject: [PATCH 017/127] add dmypy.json - without initial '.', to Python.gitignore. Older versions of dmypy used 'dmypy.json' without the initial '.'. This should be added to Python.gitignore for those using older versions of MyPy. --- Python.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 8cd91f3c..87b0d983 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -103,3 +103,5 @@ venv.bak/ # mypy .mypy_cache/ .dmypy.json +dmypy.json + From 7bc8780913997b713469898b31b247acc69e26c4 Mon Sep 17 00:00:00 2001 From: Gabriel Curio Date: Sat, 18 Aug 2018 12:25:43 -0500 Subject: [PATCH 018/127] Remove newline at end of Python.gitignore. My preference is for files to have a terminal newline, however that doesn't seem to be how this repo is doing things. --- Python.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 87b0d983..ce9487fc 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -104,4 +104,3 @@ venv.bak/ .mypy_cache/ .dmypy.json dmypy.json - From 70be586ce09cbdecee734d018803b4b52b3f1c3d Mon Sep 17 00:00:00 2001 From: Oussama BOUNAIM Date: Sun, 19 Aug 2018 09:55:53 +0200 Subject: [PATCH 019/127] Update Terraform.gitignore Ignore override files as they are usually used locally to override resources or variables without changing the code More info: https://www.terraform.io/docs/configuration/override.html --- Terraform.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Terraform.gitignore b/Terraform.gitignore index d9397e2d..e699fc27 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -13,3 +13,9 @@ crash.log # version control. # # example.tfvars + +# Ignore override files as they are usually used to override ressources locally +override.tf +override.tf.json +*_override.tf +*_override.tf.json From e98611a3446267684f36327d045ef0f7481b08db Mon Sep 17 00:00:00 2001 From: muzimuzhi Date: Wed, 22 Aug 2018 01:26:44 +0800 Subject: [PATCH 020/127] Added *.listing extension to TeX.gitignore This is the default extension the package "tcolorbox" may generate. The actual extension may be changed by key "listing file" provided by "tcolorbox". --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 79a66f9e..ff87d483 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -188,6 +188,9 @@ sympy-plots-for-*.tex/ *.pytxcode pythontex-files-*/ +# tcolorbox +*.listing + # thmtools *.loe From c04384de495ee11fe16e091a447cd0e04182da29 Mon Sep 17 00:00:00 2001 From: amigcamel Date: Wed, 22 Aug 2018 17:33:41 +0800 Subject: [PATCH 021/127] ignore ipython profile --- Python.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 894a44cc..796d7df0 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -72,6 +72,10 @@ target/ # Jupyter Notebook .ipynb_checkpoints +# IPython +default_profile/ +ipython_config.py + # pyenv .python-version From a92d6088abb7b2be6b05aaf75122288fb5e33fc7 Mon Sep 17 00:00:00 2001 From: Niels NTG Poldervaart Date: Sat, 25 Aug 2018 14:46:05 +0200 Subject: [PATCH 022/127] Add ignore rules for Linux ARM exports Since Processing version 3.0.1 you can compile Linux ARM versions of your Processing sketch, distinct from the regular 32 and 64 bit Linux exports. --- Processing.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Processing.gitignore b/Processing.gitignore index 85f269a8..333c0e08 100644 --- a/Processing.gitignore +++ b/Processing.gitignore @@ -1,5 +1,7 @@ .DS_Store applet +application.linux-arm64 +application.linux-armv6hf application.linux32 application.linux64 application.windows32 From e675c00b8cbfa6121001a8c76309adb6326c62d8 Mon Sep 17 00:00:00 2001 From: amigcamel Date: Mon, 27 Aug 2018 00:35:37 +0800 Subject: [PATCH 023/127] fix typo: should be profile_default instead of default_profile --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 796d7df0..a16ece1f 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -73,7 +73,7 @@ target/ .ipynb_checkpoints # IPython -default_profile/ +profile_default/ ipython_config.py # pyenv From 3db98a37a4af86709683c2039d672721499b69c1 Mon Sep 17 00:00:00 2001 From: Gurvir Cheema Date: Sun, 2 Sep 2018 23:24:10 -0700 Subject: [PATCH 024/127] Add storage and yarn related entries for rails 5.2 --- Rails.gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Rails.gitignore b/Rails.gitignore index e62f78e1..78eb74fd 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -47,3 +47,15 @@ bower.json # Ignore node_modules node_modules/ +# Ignore precompiled javascript packs +/public/packs +/public/packs-test + +# Ignore yarn files +/yarn-error.log +yarn-debug.log* +.yarn-integrity + +# Ignore uploaded files in development +/storage/* +!/storage/.keep \ No newline at end of file From a06382dcf8f15076b5f329ac4170189556c994b6 Mon Sep 17 00:00:00 2001 From: Alastair Crabtree Date: Tue, 4 Sep 2018 12:19:32 +0100 Subject: [PATCH 025/127] Minor imporvements to terraform ignore file * Fix Typo * Add example to include overrides --- Terraform.gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Terraform.gitignore b/Terraform.gitignore index e699fc27..a8935803 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -14,8 +14,13 @@ crash.log # # example.tfvars -# Ignore override files as they are usually used to override ressources locally +# Ignore override files as they are usually used to override resources locally and so +# are not checked in override.tf override.tf.json *_override.tf *_override.tf.json + +# Include override files you do wish to add to version control using negated pattern +# +# !example_override.tf From 34e8d3e204d057b01b660ca449c9d213bface678 Mon Sep 17 00:00:00 2001 From: "Seth M. Larson" Date: Sun, 9 Sep 2018 15:39:02 -0500 Subject: [PATCH 026/127] Add .nox directory for the nox testing tool See: https://github.com/theacodes/nox --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 0d6cd81a..6f7a6d9c 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -38,6 +38,7 @@ pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ +.nox/ .coverage .coverage.* .cache From ab098d26951ebffbd5faaa41c168e2349ff363cd Mon Sep 17 00:00:00 2001 From: Adam Gauthier Date: Tue, 11 Sep 2018 23:54:41 -0400 Subject: [PATCH 027/127] Use https for gruntjs link in Node gitignore --- Node.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 3a4c8581..c221276e 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -20,7 +20,7 @@ coverage # nyc test coverage .nyc_output -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) .grunt # Bower dependency directory (https://bower.io/) From 67aa0dca06ecfda4aa760003c92d551231d0fcb8 Mon Sep 17 00:00:00 2001 From: Lake Robin <42895793+lakerobin@users.noreply.github.com> Date: Wed, 12 Sep 2018 15:16:16 +0530 Subject: [PATCH 028/127] Only ignore root vendor directory In Laravel, we often use `artisan vendor:publish` to copy views, notifications etc from dependencies so that they can be customized. These views are created in /vendor/ directory. When using the current gitignore for Laravel, vendor is inserted like vendor/ which ignores all the directories named vendor anywhere in the source tree, including the customized views. The proposed file change tries to fix this problem by ensuring only the root vendor directory is ignored by git. --- Laravel.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Laravel.gitignore b/Laravel.gitignore index 67e2146f..6552ddf8 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -1,4 +1,4 @@ -vendor/ +/vendor/ node_modules/ npm-debug.log yarn-error.log From 8025c331fdf741d8bd4c640231f1ac55ae80b2f9 Mon Sep 17 00:00:00 2001 From: Caleb Chiesa Date: Wed, 12 Sep 2018 10:40:54 -0700 Subject: [PATCH 029/127] Added wildcard ignore for .keystore files Keystore files with an extension of `.keystore` are also valid and commonly used. --- Android.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Android.gitignore b/Android.gitignore index 39b6783c..dc903197 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -43,8 +43,9 @@ captures/ .idea/caches # Keystore files -# Uncomment the following line if you do not want to check your keystore files in. +# Uncomment the following lines if you do not want to check your keystore files in. #*.jks +#*.keystore # External native build folder generated in Android Studio 2.2 and later .externalNativeBuild From 8e9a976642709c516fbf5dae2eba14dfd78ed0d0 Mon Sep 17 00:00:00 2001 From: Jonathan Stucklen Date: Fri, 14 Sep 2018 15:46:02 -0400 Subject: [PATCH 030/127] Ignore build cache file for Android Studio 3.1+ See this SO post: https://stackoverflow.com/questions/49557737/should-i-add-idea-caches-build-file-checksums-ser-to-gitignore and this Google issue tracker ticket: https://issuetracker.google.com/issues/77544553 for justification. --- Global/JetBrains.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 343be1a3..72f4d988 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -61,3 +61,6 @@ fabric.properties # Editor-based Rest Client .idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser From a89e5e146498f85d6ec34e7c89632f48e9049d5f Mon Sep 17 00:00:00 2001 From: Jeff Cyr Date: Fri, 14 Sep 2018 16:10:52 -0400 Subject: [PATCH 031/127] Added *_wpftmp.csproj ignore --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 94b41b91..d7a6ca2a 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -76,6 +76,7 @@ StyleCopReport.xml *.tlh *.tmp *.tmp_proj +*_wpftmp.csproj *.log *.vspscc *.vssscc From b0b1b525438283e714e12e01bbc83b3236df06d7 Mon Sep 17 00:00:00 2001 From: Andrew Date: Tue, 18 Sep 2018 10:10:17 +0300 Subject: [PATCH 032/127] No need to fully exclude CodeRush settings Currently, CodeRush provides the capability to store team settings and images used in Rich Comments and they should be shared among all team members. I have corrected the gitignore file to exclude only personal settings. --- VisualStudio.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d7a6ca2a..18dd5113 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -291,8 +291,8 @@ paket-files/ .idea/ *.sln.iml -# CodeRush -.cr/ +# CodeRush personal settings +.cr/personal # Python Tools for Visual Studio (PTVS) __pycache__/ From 7ffe05303d632f226d091f46079f1aa9cff933e9 Mon Sep 17 00:00:00 2001 From: Alexander Brevig Date: Tue, 18 Sep 2018 16:07:13 +0200 Subject: [PATCH 033/127] Add .log and .zip to ignores, Thanks Alex Bustos --- Global/PSoCCreator.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/PSoCCreator.gitignore b/Global/PSoCCreator.gitignore index 84f0236e..15ae040b 100644 --- a/Global/PSoCCreator.gitignore +++ b/Global/PSoCCreator.gitignore @@ -14,3 +14,5 @@ Export/ *.cyfit *.rpt *.svd +*.log +*.zip From a77aaae89d62bc31a8b9d19c34d2626080471896 Mon Sep 17 00:00:00 2001 From: Whisperity Date: Fri, 21 Sep 2018 14:39:06 +0200 Subject: [PATCH 034/127] [TeX] Ignore generated files by 'comment' and 'xcolor' package --- TeX.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index ff87d483..753f2b95 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -64,6 +64,9 @@ acs-*.bib # changes *.soc +# comment +*.cut + # cprotect *.cpt @@ -205,6 +208,9 @@ pythontex-files-*/ # easy-todo *.lod +# xcolor +*.xcp + # xmpincl *.xmpi From d6af9594d8657ea1ffba32ac911fce6a878a1678 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Lavorel?= Date: Tue, 25 Sep 2018 16:26:00 +0200 Subject: [PATCH 035/127] Remove patch files from repo --- Magento.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Magento.gitignore b/Magento.gitignore index 6f1fa223..abe6d79f 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -2,6 +2,8 @@ # Magento Default Files # #--------------------------# +/PATCH_*.sh + /app/etc/local.xml /media/* From 3f0a607c118994652b3e1d26791a75817cda6205 Mon Sep 17 00:00:00 2001 From: "Kevin R. Raney" Date: Thu, 27 Sep 2018 11:27:56 -0600 Subject: [PATCH 036/127] Update VisualStudio.gitignore This will ignore SQL Server Reporting Services user files --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 18dd5113..4d13c548 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -4,6 +4,7 @@ ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore # User-specific files +*.rsuser *.suo *.user *.userosscache From 5002becff2cd4cd0b327f1944a9f78b758a45df4 Mon Sep 17 00:00:00 2001 From: Rodrigo Bernardi Date: Tue, 2 Oct 2018 17:03:59 -0300 Subject: [PATCH 037/127] New dependency manager delphi for delphi [boss](https://github.com/HashLoad/boss) use the module folder for the download dependencies and it is not necessary --- Delphi.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Delphi.gitignore b/Delphi.gitignore index 000ee5f1..9967302f 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -64,3 +64,6 @@ __recovery/ # Castalia statistics file (since XE7 Castalia is distributed with Delphi) *.stat + +#Boss dependency manager vendor folder +modules/ From 4fff0ee8bdb5a67f50b8ea03f745b21932d67710 Mon Sep 17 00:00:00 2001 From: Rodrigo Bernardi Date: Tue, 2 Oct 2018 23:16:08 -0300 Subject: [PATCH 038/127] Update Delphi.gitignore --- Delphi.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Delphi.gitignore b/Delphi.gitignore index 9967302f..976cee44 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -65,5 +65,5 @@ __recovery/ # Castalia statistics file (since XE7 Castalia is distributed with Delphi) *.stat -#Boss dependency manager vendor folder +#Boss dependency manager vendor folder https://github.com/HashLoad/boss modules/ From 86fdc7009664aac293291e3191eee4f2c16b8098 Mon Sep 17 00:00:00 2001 From: Valentine C Date: Sat, 6 Oct 2018 13:28:22 +0800 Subject: [PATCH 039/127] Ignore public/assets in Rails .gitignore --- Rails.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Rails.gitignore b/Rails.gitignore index 78eb74fd..38ba1b5b 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -50,6 +50,7 @@ node_modules/ # Ignore precompiled javascript packs /public/packs /public/packs-test +/public/assets # Ignore yarn files /yarn-error.log From 372d6fd79b62d0d0bc66116672523a7c8849933f Mon Sep 17 00:00:00 2001 From: Kevin Ruscoe Date: Sun, 7 Oct 2018 14:26:19 +0100 Subject: [PATCH 040/127] Update README.md 'project specific' should really be hyphenated. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 55483568..adb59664 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ the following resources are a great place to start: ## Folder structure The files in the root directory are for `.gitignore` templates that are -project specific, such as language or framework specific templates. +project-specific, such as language or framework specific templates. Global (operating system or editor specific) templates should go into the [`Global/`](./Global) directory. From 95ba18cee67e196c5c4e02a1e94f3d22167570f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Durey=20Ingenier=C3=ADa?= Date: Fri, 12 Oct 2018 00:14:12 +0100 Subject: [PATCH 041/127] Ignore the new Android Bundle generated files --- Android.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.gitignore b/Android.gitignore index 39b6783c..9ecbc407 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -1,6 +1,7 @@ # Built application files *.apk *.ap_ +*.aab # Files for the ART/Dalvik VM *.dex From 46f20037c251cebead04c53ff6f6fd09d2cea5a8 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 12 Oct 2018 10:12:55 -0300 Subject: [PATCH 042/127] Update Delphi.gitignore --- Delphi.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Delphi.gitignore b/Delphi.gitignore index 976cee44..9532800b 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -65,5 +65,5 @@ __recovery/ # Castalia statistics file (since XE7 Castalia is distributed with Delphi) *.stat -#Boss dependency manager vendor folder https://github.com/HashLoad/boss +# Boss dependency manager vendor folder https://github.com/HashLoad/boss modules/ From 6af983185a8ecfb5d1c220edba10dcb60923414c Mon Sep 17 00:00:00 2001 From: Dmitry Avtonomov Date: Sat, 13 Oct 2018 13:00:04 -0700 Subject: [PATCH 043/127] Ignoring multi-directory a path without ** is not enough for nested projects --- Global/NetBeans.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/NetBeans.gitignore b/Global/NetBeans.gitignore index 254108cd..863bc7fa 100644 --- a/Global/NetBeans.gitignore +++ b/Global/NetBeans.gitignore @@ -1,4 +1,4 @@ -nbproject/private/ +**/nbproject/private/ build/ nbbuild/ dist/ From a2e5aea9171bda7cc8efdfcd1623b907504c6528 Mon Sep 17 00:00:00 2001 From: Clemens Scharfen Date: Thu, 18 Oct 2018 11:54:13 +0200 Subject: [PATCH 044/127] Added *.VC.db to Unity.gitignore, which is an auto generated IntelliSense file from VS2015 Update 2 (replacing the .sdf file). --- Unity.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Unity.gitignore b/Unity.gitignore index 0210746b..833e6d42 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -23,6 +23,7 @@ ExportedObj/ *.svd *.pdb *.opendb +*.VC.db # Unity3D generated meta files *.pidb.meta From 5e89a9825ff7290ef5bdf561d06eab4bab499a4f Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 20 Oct 2018 01:09:08 -0400 Subject: [PATCH 045/127] Add support for FuseBox Project site: [link](https://fuse-box.org/) Corroboration: [link](https://fuse-box.org/docs/development/configuration#cache) Reason: Don't VC cache Hopefully, I did this correctly! --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index c221276e..e1da6ae8 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -71,3 +71,6 @@ typings/ # Serverless directories .serverless + +# FuseBox cache +.fusebox/ From b75ca869f060669b2827883b4104c54855e395e1 Mon Sep 17 00:00:00 2001 From: Houssem Hajlaoui Date: Tue, 23 Oct 2018 00:54:09 +0100 Subject: [PATCH 046/127] vscode, dynamodb, serverless folders --- Node.gitignore | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index e1da6ae8..96a1fce4 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -70,7 +70,13 @@ typings/ .vuepress/dist # Serverless directories -.serverless +.serverless/ # FuseBox cache .fusebox/ + +#DynamoDB Local files +.dynamodb/ + +#VS Code editor files +.vscode/ From e970e56c9f2fa22f14d608686b3db18d31587b09 Mon Sep 17 00:00:00 2001 From: kitsuyui Date: Tue, 23 Oct 2018 22:25:12 +0900 Subject: [PATCH 047/127] Add .pyre directory for Pyre type checker Pyre is a new type-checker for Python developed by facebook in May 2018. https://pyre-check.org/ It makes .pyre directory for storing result or cache for type checking. This directory is environment dependent. So it should be ignored from Git. --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 6f7a6d9c..510c73d0 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -109,3 +109,6 @@ venv.bak/ .mypy_cache/ .dmypy.json dmypy.json + +# Pyre type checker +.pyre/ From ee2ae04a57415709061ae5e343521104e6dbafcd Mon Sep 17 00:00:00 2001 From: Houssem Hajlaoui Date: Sat, 27 Oct 2018 13:32:15 +0100 Subject: [PATCH 048/127] No need for .vscode line --- Node.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index 96a1fce4..ebfe4395 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -77,6 +77,3 @@ typings/ #DynamoDB Local files .dynamodb/ - -#VS Code editor files -.vscode/ From db1d52b2dd1ed897408eb7ac856418743891b507 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Oct 2018 10:08:57 -0300 Subject: [PATCH 049/127] Move current Drupal into ecosystem directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Luís Pedro Algarvio --- ecosystem/Python/Drupal7.gitignore | 39 ++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ecosystem/Python/Drupal7.gitignore diff --git a/ecosystem/Python/Drupal7.gitignore b/ecosystem/Python/Drupal7.gitignore new file mode 100644 index 00000000..072b6831 --- /dev/null +++ b/ecosystem/Python/Drupal7.gitignore @@ -0,0 +1,39 @@ +# Ignore configuration files that may contain sensitive information. +sites/*/*settings*.php +sites/example.sites.php + +# Ignore paths that contain generated content. +files/ +sites/*/files +sites/*/private +sites/*/translations + +# Ignore default text files +robots.txt +/CHANGELOG.txt +/COPYRIGHT.txt +/INSTALL*.txt +/LICENSE.txt +/MAINTAINERS.txt +/UPGRADE.txt +/README.txt +sites/README.txt +sites/all/libraries/README.txt +sites/all/modules/README.txt +sites/all/themes/README.txt + +# Ignore everything but the "sites" folder ( for non core developer ) +.htaccess +web.config +authorize.php +cron.php +index.php +install.php +update.php +xmlrpc.php +/includes +/misc +/modules +/profiles +/scripts +/themes From 344e52b5efed9aa725a14b79fdc4e768c4239564 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Oct 2018 10:09:11 -0300 Subject: [PATCH 050/127] Update default template to Drupal 8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Luís Pedro Algarvio --- Drupal.gitignore | 77 ++++++++++++++++++++++++++---------------------- 1 file changed, 42 insertions(+), 35 deletions(-) diff --git a/Drupal.gitignore b/Drupal.gitignore index 072b6831..5e907072 100644 --- a/Drupal.gitignore +++ b/Drupal.gitignore @@ -1,39 +1,46 @@ -# Ignore configuration files that may contain sensitive information. -sites/*/*settings*.php -sites/example.sites.php +# gitignore template for Drupal 8 projects +# +# earlier versions of Drupal are tracked in `ecosystem/Python/` -# Ignore paths that contain generated content. -files/ -sites/*/files -sites/*/private -sites/*/translations +# Ignore configuration files that may contain sensitive information +/sites/*/*settings*.php +/sites/*/*services*.yml -# Ignore default text files -robots.txt -/CHANGELOG.txt -/COPYRIGHT.txt -/INSTALL*.txt +# Ignore paths that may contain user-generated content +/sites/*/files +/sites/*/public +/sites/*/private +/sites/*/files-public +/sites/*/files-private + +# Ignore paths that may contain temporary files +/sites/*/translations +/sites/*/tmp +/sites/*/cache + +# Ignore drupal core (if not versioning drupal sources) +/core +/modules/README.txt +/profiles/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 +/.htaccess +/autoload.php +/composer.json +/composer.lock +/example.gitignore +/index.php /LICENSE.txt -/MAINTAINERS.txt -/UPGRADE.txt /README.txt -sites/README.txt -sites/all/libraries/README.txt -sites/all/modules/README.txt -sites/all/themes/README.txt - -# Ignore everything but the "sites" folder ( for non core developer ) -.htaccess -web.config -authorize.php -cron.php -index.php -install.php -update.php -xmlrpc.php -/includes -/misc -/modules -/profiles -/scripts -/themes +/robots.txt +/update.php +/web.config \ No newline at end of file From 7af655e423f88737e67cb99f0674aa36ab59041b Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Oct 2018 10:26:24 -0300 Subject: [PATCH 051/127] add a better header to the old template --- ecosystem/Python/Drupal7.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ecosystem/Python/Drupal7.gitignore b/ecosystem/Python/Drupal7.gitignore index 072b6831..da61e4a5 100644 --- a/ecosystem/Python/Drupal7.gitignore +++ b/ecosystem/Python/Drupal7.gitignore @@ -1,3 +1,7 @@ +# gitignore template for Drupal 7 projects +# +# It is recommended that you use `Drupal.gitignore` as this is the latest version + # Ignore configuration files that may contain sensitive information. sites/*/*settings*.php sites/example.sites.php From 663ff83ba7ad73d631bcca79918a8491398db165 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Oct 2018 10:27:38 -0300 Subject: [PATCH 052/127] Move Magento v1 into ecosystem Co-Authored-By: Nolwennig --- ecosystem/PHP/Magento1.gitignore | 45 ++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 ecosystem/PHP/Magento1.gitignore diff --git a/ecosystem/PHP/Magento1.gitignore b/ecosystem/PHP/Magento1.gitignore new file mode 100644 index 00000000..aac92ca7 --- /dev/null +++ b/ecosystem/PHP/Magento1.gitignore @@ -0,0 +1,45 @@ +# gitignore template for Magento v1 projects +# +# It is recommended that you use `Magento.gitignore` as this is the latest version + +/PATCH_*.sh + +/app/etc/local.xml + +/media/* +!/media/.htaccess + +!/media/customer +/media/customer/* +!/media/customer/.htaccess + +!/media/dhl +/media/dhl/* +!/media/dhl/logo.jpg + +!/media/downloadable +/media/downloadable/* +!/media/downloadable/.htaccess + +!/media/xmlconnect +/media/xmlconnect/* + +!/media/xmlconnect/custom +/media/xmlconnect/custom/* +!/media/xmlconnect/custom/ok.gif + +!/media/xmlconnect/original +/media/xmlconnect/original/* +!/media/xmlconnect/original/ok.gif + +!/media/xmlconnect/system +/media/xmlconnect/system/* +!/media/xmlconnect/system/ok.gif + +/var/* +!/var/.htaccess + +!/var/package +/var/package/* +!/var/package/*.xml + From 37ec8ba529097314ea1707b36317c6f71fc98dea Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Oct 2018 10:41:57 -0300 Subject: [PATCH 053/127] add section about updated folder structure --- README.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index adb59664..77018198 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,17 @@ the following resources are a great place to start: ## Folder structure -The files in the root directory are for `.gitignore` templates that are -project-specific, such as language or framework specific templates. -Global (operating system or editor specific) templates should go into the -[`Global/`](./Global) directory. +We support a collection of templates, organized in this way: + +- [`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) + or merge these rules into your project-specific templates if you want to use + them permanently. +- [`ecosystem`](./ecosystem) contains specialized templates coalescing around + popular programming languages, but don't make sense to live in the mainstream + templates. These should be added to your project-specific templates when you + decide to adopt the framework or tool. ## Contributing guidelines From 1980e4f1ea31f79378eb4c955675ffb1be9c6da6 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Oct 2018 10:42:08 -0300 Subject: [PATCH 054/127] prettify things --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 77018198..5a136de0 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ high quality, we request that contributions adhere to the following guidelines. - **Explain why you’re making a change**. Even if it seems self-evident, please take a sentence or two to tell us why your change or addition should happen. - It’s especially helpful to articulate why this change applies to *everyone* + It’s especially helpful to articulate why this change applies to _everyone_ who works with the applicable technology, rather than just you or your team. - **Please consider the scope of your change**. If your change is specific to a @@ -54,7 +54,7 @@ high quality, we request that contributions adhere to the following guidelines. template for that language or framework, rather than to the template for an editor, tool, or operating system. -- **Please only modify *one template* per pull request**. This helps keep pull +- **Please only modify _one template_ per pull request**. This helps keep pull requests and feedback focused on a specific project or technology. In general, the more you can do to help us understand the change you’re making, @@ -66,7 +66,7 @@ helpful than a simple `ls`. If it's not possible to curate a small set of useful rules, then the template might not be a good fit for this collection. Please also understand that we can’t list every tool that ever existed. -Our aim is to curate a collection of the *most common and helpful* templates, +Our aim is to curate a collection of the _most common and helpful_ templates, not to make sure we cover every project possible. If we choose not to include your language, tool, or project, it’s not because it’s not awesome. From 1abbddba2100fdf50ac742d0b2875d6be3018a86 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Oct 2018 11:02:38 -0300 Subject: [PATCH 055/127] expanded new sections --- README.md | 71 ++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 63 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 5a136de0..31f13a7b 100644 --- a/README.md +++ b/README.md @@ -20,6 +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 + 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 - [`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) @@ -30,6 +34,23 @@ We support a collection of templates, organized in this way: templates. These should be added to your project-specific templates when you decide to adopt the framework or tool. +## What makes a good template? + +A template should contain a set of rules to help Git repositories work with a +specific programming language, framework, tool or environment. + +If it's not possible to curate a small set of useful rules for this situation, +then the template is not a good fit for this collection. + +If a template is mostly a list of files installed by a particular version of +some software (e.g. a PHP framework), it should live under the `ecosystem` +directory. See [versioned templates]() for a guide to this setup. + +Please also understand that we can’t list every tool that ever existed. +Our aim is to curate a collection of the _most common and helpful_ templates, +not to make sure we cover every project possible. If we choose not to +include your language, tool, or project, it’s not because it’s not awesome. + ## Contributing guidelines We’d love for you to help us improve this project. To help us keep this collection @@ -60,15 +81,49 @@ high quality, we request that contributions adhere to the following guidelines. In general, the more you can do to help us understand the change you’re making, the more likely we’ll be to accept your contribution quickly. -If a template is mostly a list of files installed by a particular version of -some software (e.g. a PHP framework) then it's brittle and probably no more -helpful than a simple `ls`. If it's not possible to curate a small set of -useful rules, then the template might not be a good fit for this collection. +## Versioned templates -Please also understand that we can’t list every tool that ever existed. -Our aim is to curate a collection of the _most common and helpful_ templates, -not to make sure we cover every project possible. If we choose not to -include your language, tool, or project, it’s not because it’s not awesome. +Some templates can change greatly between versions, and if you wish to contribute +to this repository we need to follow this specific flow: + +- the template at the root should be the current supported version +- the template at the root should not have a version in the filename (i.e. + "evergreen") +- previous versions of templates should live under `ecosystem` +- previous versions of the template should embed the version in the filename, + for readability + +This helps ensure users get the latest version (because they'll use whatever is +at the root) but helps maintainers support older versions still in the wild. + +## Specialized templates + +If you have a template that you would like to contribute, but it isn't quite +mainstream, please consider adding this to the `ecosystem` directory under a +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 + +For example + +``` +# gitignore template for InforCRM (formerly SalesLogix) +# +# Recommended: VisualStudio.gitignore + +# Ignore model files that are auto-generated +ModelIndex.xml +ExportedFiles.xml + +# Ignore deployment files +[Mm]odel/[Dd]eployment + +# Force include portal SupportFiles +!Model/Portal/*/SupportFiles/[Bb]in/ +!Model/Portal/PortalTemplates/*/SupportFiles/[Bb]in +``` ## Contributing workflow From ded1daba15e8a62c4abf6f915c1ea46b4fff1d3f Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Oct 2018 11:07:36 -0300 Subject: [PATCH 056/127] a bit more edits --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 31f13a7b..0da26805 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,16 @@ then the template is not a good fit for this collection. If a template is mostly a list of files installed by a particular version of some software (e.g. a PHP framework), it should live under the `ecosystem` -directory. See [versioned templates]() for a guide to this setup. +directory. See [versioned templates](#versioned-templates) for more details. + +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 +may not accept it immediately, but we can promote it to the root at a later date +based on demand. Please also understand that we can’t list every tool that ever existed. Our aim is to curate a collection of the _most common and helpful_ templates, From 3641b16bef48964f4613f9f9b2f073027a890aa2 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Oct 2018 11:13:16 -0300 Subject: [PATCH 057/127] tweaks to example template --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0da26805..c3f62cf7 100644 --- a/README.md +++ b/README.md @@ -115,10 +115,11 @@ 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 -For example +For example, this template might live at `ecosystem/DotNet/InforCRM.gitignore`: ``` # gitignore template for InforCRM (formerly SalesLogix) +# website: https://www.infor.com/product-summary/cx/infor-crm/ # # Recommended: VisualStudio.gitignore From c440ae4d9c9171e04cedc41043353217bacabaa0 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Oct 2018 12:07:44 -0300 Subject: [PATCH 058/127] stub an example Vue gitignore template --- ecosystem/JavaScript/Vue.gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ecosystem/JavaScript/Vue.gitignore diff --git a/ecosystem/JavaScript/Vue.gitignore b/ecosystem/JavaScript/Vue.gitignore new file mode 100644 index 00000000..4538951c --- /dev/null +++ b/ecosystem/JavaScript/Vue.gitignore @@ -0,0 +1,9 @@ +# gitignore template for Vue.js projects +# +# Recommended template: Node.gitignore + +# TODO: where does this rule come from? +docs/_book + +# TODO: where does this rule come from? +test/ From eda6ba515be0ec77f462953d125cc197724d639e Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 08:58:24 -0300 Subject: [PATCH 059/127] rename ecosystem to community --- README.md | 10 +++++----- {ecosystem => community}/JavaScript/Vue.gitignore | 0 {ecosystem => community}/PHP/Magento1.gitignore | 0 {ecosystem => community}/Python/Drupal7.gitignore | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename {ecosystem => community}/JavaScript/Vue.gitignore (100%) rename {ecosystem => community}/PHP/Magento1.gitignore (100%) rename {ecosystem => community}/Python/Drupal7.gitignore (100%) diff --git a/README.md b/README.md index c3f62cf7..422056e5 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ If it's not possible to curate a small set of useful rules for this situation, then the template is not a good fit for this collection. If a template is mostly a list of files installed by a particular version of -some software (e.g. a PHP framework), it should live under the `ecosystem` +some software (e.g. a PHP framework), it should live under the `community` directory. See [versioned templates](#versioned-templates) for more details. If you have a small set of rules, or want to support a technology that is not @@ -53,7 +53,7 @@ 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 may not accept it immediately, but we can promote it to the root at a later date -based on demand. +based on interest. Please also understand that we can’t list every tool that ever existed. Our aim is to curate a collection of the _most common and helpful_ templates, @@ -98,7 +98,7 @@ to this repository we need to follow this specific flow: - the template at the root should be the current supported version - the template at the root should not have a version in the filename (i.e. "evergreen") -- previous versions of templates should live under `ecosystem` +- previous versions of templates should live under `community` - previous versions of the template should embed the version in the filename, for readability @@ -108,14 +108,14 @@ at the root) but helps maintainers support older versions still in the wild. ## Specialized templates If you have a template that you would like to contribute, but it isn't quite -mainstream, please consider adding this to the `ecosystem` directory under a +mainstream, please consider adding this to the `community` directory under a 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 -For example, this template might live at `ecosystem/DotNet/InforCRM.gitignore`: +For example, this template might live at `community/DotNet/InforCRM.gitignore`: ``` # gitignore template for InforCRM (formerly SalesLogix) diff --git a/ecosystem/JavaScript/Vue.gitignore b/community/JavaScript/Vue.gitignore similarity index 100% rename from ecosystem/JavaScript/Vue.gitignore rename to community/JavaScript/Vue.gitignore diff --git a/ecosystem/PHP/Magento1.gitignore b/community/PHP/Magento1.gitignore similarity index 100% rename from ecosystem/PHP/Magento1.gitignore rename to community/PHP/Magento1.gitignore diff --git a/ecosystem/Python/Drupal7.gitignore b/community/Python/Drupal7.gitignore similarity index 100% rename from ecosystem/Python/Drupal7.gitignore rename to community/Python/Drupal7.gitignore From 1ab24a3be37e96e8019ac213e3d76eb203ebf253 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 09:08:04 -0300 Subject: [PATCH 060/127] add support for Nuxt.js Co-Authored-By: FURUKAWA,Daisuke --- community/JavaScript/Nuxt.gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 community/JavaScript/Nuxt.gitignore diff --git a/community/JavaScript/Nuxt.gitignore b/community/JavaScript/Nuxt.gitignore new file mode 100644 index 00000000..cd6c77a3 --- /dev/null +++ b/community/JavaScript/Nuxt.gitignore @@ -0,0 +1,9 @@ +# gitignore template for Nuxt.js projects +# +# Recommended template: Node.gitignore + +# Nuxt build +.nuxt + + # Nuxt generate +dist From 05c5eacc7a4e62cacc1197e3506431a811a4edbb Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 09:11:02 -0300 Subject: [PATCH 061/127] add a template for Phoenix projects Co-Authored-By: JuanPablo Co-Authored-By: Sean Callan --- community/Elixir/Phoenix.gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 community/Elixir/Phoenix.gitignore diff --git a/community/Elixir/Phoenix.gitignore b/community/Elixir/Phoenix.gitignore new file mode 100644 index 00000000..522c8d56 --- /dev/null +++ b/community/Elixir/Phoenix.gitignore @@ -0,0 +1,22 @@ +# gitignore template for Phoenix projects +# website: http://www.phoenixframework.org/ +# +# Recommended template: Elixir.gitignore + +# Temporary files +/tmp + +# Static artifacts +/node_modules +/assets/node_modules + +# Since we are building assets from web/static, +# we ignore priv/static. You may want to comment +# this depending on your deployment strategy. +/priv/static/ + +# Installer-related files +/installer/_build +/installer/tmp +/installer/doc +/installer/deps From bd97b795f158f5ef9cee4e7d8549a7a1bbea1124 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 09:28:30 -0300 Subject: [PATCH 062/127] added community Pimcore template Co-Authored-By: Martin Kuric --- community/PHP/Pimcore.gitignore | 53 +++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 community/PHP/Pimcore.gitignore diff --git a/community/PHP/Pimcore.gitignore b/community/PHP/Pimcore.gitignore new file mode 100644 index 00000000..549e7a8f --- /dev/null +++ b/community/PHP/Pimcore.gitignore @@ -0,0 +1,53 @@ +# gitignore template for Pimcore CMS + +# pimcore source files +/pimcore + +# asset files +/website/var/assets/* + +# backups +/website/var/backup/* + +# file cache +/website/var/cache/* + +# generated PHP classes, keep definition files (.psf) +/website/var/classes/Object* +!/website/var/classes/objectbricks + +# various configuration files +/website/var/config/system.xml +/website/var/config/cache.xml +/website/var/config/robots.txt +/website/var/config/Geo* +/website/var/config/object/* +/website/var/config/portal/* +/website/var/config/sqlreport/* + +# sent e-mail log files +/website/var/email/* + +# log files +/website/var/log/*.log + +# serialized recyclebin files +/website/var/recyclebin/* + +# search plugin +/website/var/search/* + +# various temp files +/website/var/system/* +/website/var/tmp/* + +# serialized version files +/website/var/versions/asset/* +/website/var/versions/document/* +/website/var/versions/object/* + +# user profile images +/website/var/user-image/* + +# keep .dummy files +!.dummy \ No newline at end of file From 2055dc101026b338cec2922ff41e1e6ae0054ba0 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 09:29:06 -0300 Subject: [PATCH 063/127] Added community template for ThinkPHP Co-Authored-By: Parallel --- community/PHP/ThinkPHP.gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 community/PHP/ThinkPHP.gitignore diff --git a/community/PHP/ThinkPHP.gitignore b/community/PHP/ThinkPHP.gitignore new file mode 100644 index 00000000..348ebf05 --- /dev/null +++ b/community/PHP/ThinkPHP.gitignore @@ -0,0 +1,8 @@ +# gitignore template for ThinkPHP v3.2.3 +# website: http://www.thinkphp.cn/ + +# Logs and Cache files +/Application/Runtime/ + +# Common configure file +/Application/Common/Conf/config.php \ No newline at end of file From bbd34a4472535e7d00f050879fc1768781c8e788 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 09:55:44 -0300 Subject: [PATCH 064/127] add community Snap template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: 林博仁(Buo-ren Lin) Co-Authored-By: Marius Gripsgard --- community/Linux/Snap.gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 community/Linux/Snap.gitignore diff --git a/community/Linux/Snap.gitignore b/community/Linux/Snap.gitignore new file mode 100644 index 00000000..ea38c6dd --- /dev/null +++ b/community/Linux/Snap.gitignore @@ -0,0 +1,14 @@ +# gitginore template for creating Snap packages +# website: https://snapcraft.io/ + +parts/ +prime/ +stage/ +*.snap + +# Snapcraft global state tracking data(automatically generated) +# https://forum.snapcraft.io/t/location-to-save-global-state/768 +/snap/.snapcraft/ + +# Source archive packed by `snapcraft cleanbuild` before pushing to the LXD container +/*_source.tar.bz2 From d298644fc3026a4c16db211e6bd9d4b13d14d9eb Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 10:00:39 -0300 Subject: [PATCH 065/127] added Hugo community template Co-Authored-By: Julien Liabeuf Co-Authored-By: Ricardo N Feliciano --- community/Golang/Hugo.gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 community/Golang/Hugo.gitignore diff --git a/community/Golang/Hugo.gitignore b/community/Golang/Hugo.gitignore new file mode 100644 index 00000000..23f43cbe --- /dev/null +++ b/community/Golang/Hugo.gitignore @@ -0,0 +1,8 @@ +# gitginore template for Hugo projects +# website: https://gohugo.io + +# generated files by hugo +/public/ + +# executable may be added to repository +hugo.exe \ No newline at end of file From e67a985416e4c516b4134d721966e2ec469e7441 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 10:06:42 -0300 Subject: [PATCH 066/127] Add community template for Red language Co-Authored-By: SouthWolf Co-Authored-By: Trent Patterson Co-Authored-By: PeterWAWood --- community/Red.gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 community/Red.gitignore diff --git a/community/Red.gitignore b/community/Red.gitignore new file mode 100644 index 00000000..b78a06fc --- /dev/null +++ b/community/Red.gitignore @@ -0,0 +1,16 @@ +# gitignore template for Red programming language +# website: http://www.red-lang.org/ + +# Red Compiled code +*.red + +# Libraries +crush.dll +crush.dylib +crush.so + +# Files generated during test +quick-test/quick-test.log +quick-test/runnable/ +system/tests/source/units/auto-tests/ +tests/source/units/auto-tests/ From 8a2fae7d6cb2882630b7878063c8b685375cc8ea Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 10:55:32 -0300 Subject: [PATCH 067/127] add templates for older JBoss versions Co-Authored-By: Marcos Estevam --- community/Java/JBoss4.gitignore | 19 +++++++++++++++++++ community/Java/JBoss6.gitignore | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 community/Java/JBoss4.gitignore create mode 100644 community/Java/JBoss6.gitignore diff --git a/community/Java/JBoss4.gitignore b/community/Java/JBoss4.gitignore new file mode 100644 index 00000000..d416538c --- /dev/null +++ b/community/Java/JBoss4.gitignore @@ -0,0 +1,19 @@ +# gitignore for JBoss v4 projects + +/server/all/data +/server/all/log +/server/all/tmp +/server/all/work +/server/default/data +/server/default/log +/server/default/tmp +/server/default/work +/server/minimal/data +/server/minimal/log +/server/minimal/tmp +/server/minimal/work + +# Note: +# there may be other directories that contain *.xml.failed or *.war.failed files +/server/default/deploy/*.xml.failed +/server/default/deploy/*.war.failed diff --git a/community/Java/JBoss6.gitignore b/community/Java/JBoss6.gitignore new file mode 100644 index 00000000..dc7dce76 --- /dev/null +++ b/community/Java/JBoss6.gitignore @@ -0,0 +1,33 @@ +# gitignore for JBoss v6 projects +# +# Note: to ensure empty directories remain part of the repository, like +# `/server/minimal/lib`, you should add an empty `.gitignore` or `.gitkeep` file +# to the directory - otherwise you may have issues when starting the service. + +/server/all/data +/server/all/log +/server/all/tmp +/server/all/work +/server/default/data +/server/default/log +/server/default/tmp +/server/default/work +/server/minimal/data +/server/minimal/log +/server/minimal/tmp +/server/minimal/work +/server/jbossweb-standalone/data +/server/jbossweb-standalone/log +/server/jbossweb-standalone/tmp +/server/jbossweb-standalone/work +/server/standard/data +/server/standard/log +/server/standard/tmp +/server/standard/work +/server/default/deploy/*.jar.failed +/server/default/deploy/*.jar.dodeploy +/server/default/deploy/*.xml.failed +/server/default/deploy/*.xml.dodeploy +/server/default/deploy/*.war.failed +/server/default/deploy/*.war.dodeploy + From 991accab3f0ed16a51397a280fbe372e93c2b543 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 11:39:03 -0300 Subject: [PATCH 068/127] add community template for KenticoCMS Co-Authored-By: Christopher Jennings --- community/DotNet/Kentico.gitignore | 64 ++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 community/DotNet/Kentico.gitignore diff --git a/community/DotNet/Kentico.gitignore b/community/DotNet/Kentico.gitignore new file mode 100644 index 00000000..6c6d8d63 --- /dev/null +++ b/community/DotNet/Kentico.gitignore @@ -0,0 +1,64 @@ +# gitignore template for using Kentico CMS +# website: http://www.kentico.com/ +# +# Recommended template: VisualStudio.gitignore + +# Include some Kentico folders excluded by Visual Studio rules +!CMS/CMSAdminControls/*/ +!CMS/CMSModules/System/*/ +!CMS/App_Data/CIRepository/** + +# Kentico temporary/environment files +CMS/App_Data/AzureCache +CMS/App_Data/AzureTemp +CMS/App_Data/CMSModules/DeviceProfile/logFiftyOne.txt +CMS/App_Data/CMSModules/DeviceProfiles/logFiftyOne.txt +CMS/App_Data/CMSModules/WebFarm/webfarm.sync +CMS/App_Data/CMSTemp +CMS/App_Data/Persistent +CMS/CMSSiteUtils/Export +CMS/CMSSiteUtils/Import + +# Ignore all smart search indexes, but not the other system folder contents +CMS/App_Data/CMSModules/SmartSearch/** +!CMS/App_Data/CMSModules/SmartSearch/*/ +!CMS/App_Data/CMSModules/SmartSearch/_StopWords/** +!CMS/App_Data/CMSModules/SmartSearch/_Synonyms/** + +## Kentico Starter Sites +# Starter site resource Files +CMS/App_Data/DancingGoat + +# Starter site web templates +CMS/App_Data/Templates/CommunitySite +CMS/App_Data/Templates/CorporateSite +CMS/App_Data/Templates/DancingGoat +CMS/App_Data/Templates/EcommerceSite +CMS/App_Data/Templates/IntranetPortal +CMS/App_Data/Templates/PersonalSite + +# Starter site app themes +CMS/App_Themes/CommunitySite +CMS/App_Themes/CorporateSite +CMS/App_Themes/EcommerceSite +CMS/App_Themes/IntranetPortal* +CMS/App_Themes/PersonalSite + +# Starter site ASPX templates +CMS/CMSTemplates/CorporateSite + +# Starter site media libraries +CMS/CommunitySite +CMS/CorporateSite +CMS/DancingGoat +CMS/EcommerceSite +CMS/IntranetPortal +CMS/PersonalSite + +## Project specific ignores +# Sensitive settings +AppSettings.config +ConnectionStrings.config + +# Project media libraries (recommend shared file storage) +# e.g. CMS/{SiteCodeName} \ No newline at end of file From eff87b9c8bc028de8b85b2afe8b00d8862cd7f3f Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 11:39:57 -0300 Subject: [PATCH 069/127] added community template for InforCRM Co-Authored-By: Customer FX Development --- community/DotNet/InforCMS.gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 community/DotNet/InforCMS.gitignore diff --git a/community/DotNet/InforCMS.gitignore b/community/DotNet/InforCMS.gitignore new file mode 100644 index 00000000..6f4d951e --- /dev/null +++ b/community/DotNet/InforCMS.gitignore @@ -0,0 +1,15 @@ +# gitignore template for InforCRM (formerly SalesLogix) +# website: https://www.infor.com/product-summary/cx/infor-crm/ +# +# Recommended: VisualStudio.gitignore + +# Ignore model files that are auto-generated +ModelIndex.xml +ExportedFiles.xml + +# Ignore deployment files +[Mm]odel/[Dd]eployment + +# Force include portal SupportFiles +!Model/Portal/*/SupportFiles/[Bb]in/ +!Model/Portal/PortalTemplates/*/SupportFiles/[Bb]in \ No newline at end of file From 7637178dd21c8a903b2eefcc5dfec7208a061a20 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 18:07:39 -0300 Subject: [PATCH 070/127] add community template for Meteor Co-Authored-By: CodeHunter --- community/JavaScript/Meteor.gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 community/JavaScript/Meteor.gitignore diff --git a/community/JavaScript/Meteor.gitignore b/community/JavaScript/Meteor.gitignore new file mode 100644 index 00000000..7194fd0e --- /dev/null +++ b/community/JavaScript/Meteor.gitignore @@ -0,0 +1,12 @@ +# gitignore template for the Meteor framework +# website: https://www.meteor.com/ +# +# Recommended template: Node.gitignore + +# protect api keys in setting json +settings-production.json +settings.json + +# protect your mup.json settings +mup.json +mup.js From 213a053ce7bec535974598c2f5699050ee6a2953 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 18:16:14 -0300 Subject: [PATCH 071/127] added community template for PHP CodeSniffer Co-Authored-By: moltra --- community/PHP/CodeSniffer.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 community/PHP/CodeSniffer.gitignore diff --git a/community/PHP/CodeSniffer.gitignore b/community/PHP/CodeSniffer.gitignore new file mode 100644 index 00000000..e2d9e306 --- /dev/null +++ b/community/PHP/CodeSniffer.gitignore @@ -0,0 +1,7 @@ +# gitignore for the PHP Codesniffer framework +# website: https://github.com/squizlabs/PHP_CodeSniffer +# +# Recommended template: PHP.gitignore + +/vendor/* +/wpcs/* \ No newline at end of file From e5c5a2bb9c96a86e75c9543ceedd466fae1f27a8 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 18:16:51 -0300 Subject: [PATCH 072/127] add community template for Racket Co-Authored-By: Will Price Co-Authored-By: Stefan --- community/Racket.gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 community/Racket.gitignore diff --git a/community/Racket.gitignore b/community/Racket.gitignore new file mode 100644 index 00000000..c97e0899 --- /dev/null +++ b/community/Racket.gitignore @@ -0,0 +1,15 @@ +# gitignore template for the Racket language +# website: http://www.racket-lang.org/ + +# DrRacket autosave files +*.rkt~ +*.rkt.bak +\#*.rkt# +\#*.rkt#*# + +# Compiled racket bytecode +compiled/ +*.zo + +# Dependency tracking files +*.dep \ No newline at end of file From f29f4047a03c0981706d92f5458aa73499e1ce47 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 18:24:05 -0300 Subject: [PATCH 073/127] add community template for LogTalk Co-Authored-By: Paulo Moura --- community/Logtalk.gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 community/Logtalk.gitignore diff --git a/community/Logtalk.gitignore b/community/Logtalk.gitignore new file mode 100644 index 00000000..d02dd2e1 --- /dev/null +++ b/community/Logtalk.gitignore @@ -0,0 +1,19 @@ +# gitignore template for LogTalk, a programming language that builds upon Prolog +# website: https://logtalk.org/ + +# Logtalk temporary file directories +.lgt_tmp/ +lgt_tmp/ + +# Logtalk default unit testing and doclet results and logs directories +logtalk_tester_logs/ +logtalk_doclet_logs/ + +# backend Prolog compiler temporary files +.pl-history +*.out +*.xwam +*.qo +*.ql +*.itf +*.po \ No newline at end of file From d9977d1bdffaacb697f8e3db5094f5bb8c79c8e7 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 18:28:43 -0300 Subject: [PATCH 074/127] add community template for Cordova Co-Authored-By: Andre Christoga S Co-Authored-By: Chaoyi Zha --- community/JavaScript/Cordova.gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 community/JavaScript/Cordova.gitignore diff --git a/community/JavaScript/Cordova.gitignore b/community/JavaScript/Cordova.gitignore new file mode 100644 index 00000000..4bd87859 --- /dev/null +++ b/community/JavaScript/Cordova.gitignore @@ -0,0 +1,10 @@ +# gitignore template for the Cordova framework +# website: https://cordova.apache.org/ +# +# Recommended template: Node.gitignore + +# App platform binaries and built files +/platforms + +# Optional to ignore plugin Git clones +#/plugins From 227764535c0404960e6b6f20d8abff74fc4bf5b5 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 28 Oct 2018 18:30:27 -0300 Subject: [PATCH 075/127] add community template for NW.js Co-Authored-By: Josh Plant --- community/JavaScript/NWjs.gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 community/JavaScript/NWjs.gitignore diff --git a/community/JavaScript/NWjs.gitignore b/community/JavaScript/NWjs.gitignore new file mode 100644 index 00000000..f006b08b --- /dev/null +++ b/community/JavaScript/NWjs.gitignore @@ -0,0 +1,29 @@ +# gitignore template for NW.js projects +# website: https://nwjs.io/ + +# Seen in standard and sdk versions +credits.html +locales/ +libEGL.dll +libGLEv2.dll +node.dll +nw.dll +nw.exe +natives_blob.bin +nw_100_percent.pak +nw_200_percent.pak +nw_elf.dll +snapshot_blob.bin +resources.pak + +# Seen only in standard +d3dcompiler_47.dll +ffmpeg.dll +icudtl.dat + +# Seen only in sdk +pnacl/ +chromedriver.exe +nacl_irt_x86_64.nexe +nwjc.exe +payload.exe From 0a23ed588dd0d59dbc2b356133fe87364265b45a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20C=C5=93ur?= Date: Mon, 29 Oct 2018 13:56:28 +0800 Subject: [PATCH 076/127] Revert "Update Xcode.gitignore" --- Global/Xcode.gitignore | 74 +++++------------------------------------- 1 file changed, 9 insertions(+), 65 deletions(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index b01314d3..cd0c7d3e 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -2,11 +2,17 @@ # # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore -## Build generated +## User settings +xcuserdata/ + +## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) +*.xcscmblueprint +*.xccheckout + +## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) build/ DerivedData/ - -## Various settings +*.moved-aside *.pbxuser !default.pbxuser *.mode1v3 @@ -15,65 +21,3 @@ DerivedData/ !default.mode2v3 *.perspectivev3 !default.perspectivev3 -xcuserdata/ - -## Other -*.moved-aside -*.xccheckout -*.xcscmblueprint - -## Obj-C/Swift specific -*.hmap -*.ipa -*.dSYM.zip -*.dSYM - -## Playgrounds -timeline.xctimeline -playground.xcworkspace - -# Swift Package Manager -# -# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. -# Packages/ -# Package.pins -# Package.resolved -.build/ - -# CocoaPods -# -# We recommend against adding the Pods directory to your .gitignore. However -# you should judge for yourself, the pros and cons are mentioned at: -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control -# -# Pods/ -# -# Add this line if you want to avoid checking in source code from the Xcode workspace -# *.xcworkspace - -# Carthage -# -# Add this line if you want to avoid checking in source code from Carthage dependencies. -# Carthage/Checkouts - -Carthage/Build - -# fastlane -# -# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the -# screenshots whenever they are needed. -# For more information about the recommended setup visit: -# https://docs.fastlane.tools/best-practices/source-control/#source-control - -fastlane/report.xml -fastlane/Preview.html -fastlane/screenshots/**/*.png -fastlane/test_output - -# Code Injection -# -# After new code Injection tools there's a generated folder /iOSInjectionProject -# https://github.com/johnno1962/injectionforxcode - -iOSInjectionProject/ - From b3d1e72efb400157927b0f7c419f1a09b01e0f3e Mon Sep 17 00:00:00 2001 From: Chris Gunn Date: Fri, 2 Nov 2018 14:17:40 -0700 Subject: [PATCH 077/127] Add `ARM` and `ARM64` to Visual Studio's ignore file. --- VisualStudio.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 4d13c548..b8f4cbca 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -20,6 +20,8 @@ [Rr]eleases/ x64/ x86/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ bld/ [Bb]in/ [Oo]bj/ From 1cdba03c57380285fdbdb424b925be7a6f842254 Mon Sep 17 00:00:00 2001 From: Rhys Powell Date: Tue, 6 Nov 2018 11:28:54 +1100 Subject: [PATCH 078/127] ignore files generated by ElixirLS --- Elixir.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Elixir.gitignore b/Elixir.gitignore index 86e4c3f3..b263cd10 100644 --- a/Elixir.gitignore +++ b/Elixir.gitignore @@ -7,3 +7,4 @@ erl_crash.dump *.ez *.beam /config/*.secret.exs +.elixir_ls/ From 58f322cfbc0aefc3026310e39eaed742ecdb61ec Mon Sep 17 00:00:00 2001 From: 1nfinite9 Date: Wed, 7 Nov 2018 10:15:02 +0900 Subject: [PATCH 079/127] Update Unity.gitignore Add ignore for Crashlytics generated file --- Unity.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 833e6d42..93c9ce52 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -35,3 +35,7 @@ sysinfo.txt # Builds *.apk *.unitypackage + +# Crashlytics generated file +Assets/StreamingAssets/crashlytics-build.properties + From 87ec1bd86480dcc618291b2271fe365880915ce2 Mon Sep 17 00:00:00 2001 From: Daijiro Wachi Date: Thu, 8 Nov 2018 10:59:36 +0900 Subject: [PATCH 080/127] Add "network-security.data" Refs: http://network-security.data --- Global/Emacs.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index 3ac7904d..d40e8659 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -43,3 +43,7 @@ flycheck_*.el # directory configuration .dir-locals.el + +# network security +/network-security.data + From 36ea81b07f6b95c0767a74cce5b7b0c82d040e55 Mon Sep 17 00:00:00 2001 From: Skident Date: Thu, 8 Nov 2018 12:09:18 +0200 Subject: [PATCH 081/127] Added CMakeLists.txt.user file to a CMake .gitignore --- CMake.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/CMake.gitignore b/CMake.gitignore index 9ea395f1..7e25564f 100644 --- a/CMake.gitignore +++ b/CMake.gitignore @@ -1,3 +1,4 @@ +CMakeLists.txt.user CMakeCache.txt CMakeFiles CMakeScripts From da37cecbd45e101d311229946f4cb02c659cb70a Mon Sep 17 00:00:00 2001 From: Arnaud Rocher Date: Fri, 9 Nov 2018 10:42:08 +0100 Subject: [PATCH 082/127] [TeX] Ignore generated files by 'vhistory' package The `vhistory` package generates two files, with `.hst` and `.ver` extensions. --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 753f2b95..edd1f60b 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -205,6 +205,10 @@ pythontex-files-*/ # todonotes *.tdo +# vhistory +*.hst +*.ver + # easy-todo *.lod From 926a6cba3d7bb626143e6caf0b06d47033c4b569 Mon Sep 17 00:00:00 2001 From: "J. Kevin Bay" Date: Fri, 9 Nov 2018 19:59:44 -0700 Subject: [PATCH 083/127] Hide wheels directory used on Debian-like systems (Ubuntu) See https://www.debian.org/doc/packaging-manuals/python-policy/ch-module_packages.html tl;dr Debian Policy requires wheels to be installed here and thus issuing python3 -m venv . on a Debian-like system creates this directory --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 510c73d0..11614af2 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -20,6 +20,7 @@ parts/ sdist/ var/ wheels/ +share/python-wheels/ *.egg-info/ .installed.cfg *.egg From 9c477781eba9d571c11c002fdec00d2943e7400d Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 22 Nov 2018 15:17:51 -0400 Subject: [PATCH 084/127] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 422056e5..db171347 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ We support a collection of templates, organized in this way: that you either [add these to your global template](https://help.github.com/articles/ignoring-files/#create-a-global-gitignore) or merge these rules into your project-specific templates if you want to use them permanently. -- [`ecosystem`](./ecosystem) contains specialized templates coalescing around - popular programming languages, but don't make sense to live in the mainstream +- [`community`](./community) contains specialized templates for other popular + languages, tools and project, which don't currently belong in the mainstream templates. These should be added to your project-specific templates when you decide to adopt the framework or tool. @@ -43,7 +43,7 @@ If it's not possible to curate a small set of useful rules for this situation, then the template is not a good fit for this collection. If a template is mostly a list of files installed by a particular version of -some software (e.g. a PHP framework), it should live under the `community` +some software (e.g. a PHP framework), it could live under the `community` directory. See [versioned templates](#versioned-templates) for more details. If you have a small set of rules, or want to support a technology that is not @@ -98,7 +98,7 @@ to this repository we need to follow this specific flow: - the template at the root should be the current supported version - the template at the root should not have a version in the filename (i.e. "evergreen") -- previous versions of templates should live under `community` +- previous versions of templates should live under `community/` - previous versions of the template should embed the version in the filename, for readability From b7dc63aa1bb2536dd7f316eada0efd9e92f26b98 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 22 Nov 2018 15:33:56 -0400 Subject: [PATCH 085/127] added bitrix community template --- community/PHP/Bitrix.gitignore | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 community/PHP/Bitrix.gitignore diff --git a/community/PHP/Bitrix.gitignore b/community/PHP/Bitrix.gitignore new file mode 100644 index 00000000..d288916f --- /dev/null +++ b/community/PHP/Bitrix.gitignore @@ -0,0 +1,23 @@ +# gitignore template for 1C-Bitrix, a PHP-based CMS +# website: https://www.1c-bitrix.ru + +#Exclude all of core files +/bitrix/* + +#But not the templates and non bitrix components +!/bitrix/templates +!/bitrix/components +/bitrix/components/bitrix + +#Exclude bitrix gadgets +!/bitrix/gadgets +/bitrix/gadgets/bitrix + +#User can use that directory to store some stuff, but it's not really recommended, just use /local instead of this +!/bitrix/php_interface/ + +#Exclude database configs +/bitrix/php_interface/dbconn.php + +#Exclude default file storage directory +/upload/ From e9883e5f27a5e38b452675efacbe4b0176532c18 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 22 Nov 2018 15:34:14 -0400 Subject: [PATCH 086/127] update header for Drupal template --- Drupal.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Drupal.gitignore b/Drupal.gitignore index 5e907072..50d3eef8 100644 --- a/Drupal.gitignore +++ b/Drupal.gitignore @@ -1,6 +1,6 @@ # gitignore template for Drupal 8 projects # -# earlier versions of Drupal are tracked in `ecosystem/Python/` +# earlier versions of Drupal are tracked in `community/Python/` # Ignore configuration files that may contain sensitive information /sites/*/*settings*.php @@ -43,4 +43,4 @@ /README.txt /robots.txt /update.php -/web.config \ No newline at end of file +/web.config From f7c4f2e4e95460cfc93384dc66155bcaf8c3d930 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 22 Nov 2018 15:38:46 -0400 Subject: [PATCH 087/127] line endings --- community/DotNet/InforCMS.gitignore | 2 +- community/DotNet/Kentico.gitignore | 2 +- community/Golang/Hugo.gitignore | 2 +- community/Logtalk.gitignore | 2 +- community/PHP/CodeSniffer.gitignore | 2 +- community/PHP/Pimcore.gitignore | 2 +- community/Racket.gitignore | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/community/DotNet/InforCMS.gitignore b/community/DotNet/InforCMS.gitignore index 6f4d951e..29c7d8e5 100644 --- a/community/DotNet/InforCMS.gitignore +++ b/community/DotNet/InforCMS.gitignore @@ -12,4 +12,4 @@ ExportedFiles.xml # Force include portal SupportFiles !Model/Portal/*/SupportFiles/[Bb]in/ -!Model/Portal/PortalTemplates/*/SupportFiles/[Bb]in \ No newline at end of file +!Model/Portal/PortalTemplates/*/SupportFiles/[Bb]in diff --git a/community/DotNet/Kentico.gitignore b/community/DotNet/Kentico.gitignore index 6c6d8d63..3b278b6a 100644 --- a/community/DotNet/Kentico.gitignore +++ b/community/DotNet/Kentico.gitignore @@ -61,4 +61,4 @@ AppSettings.config ConnectionStrings.config # Project media libraries (recommend shared file storage) -# e.g. CMS/{SiteCodeName} \ No newline at end of file +# e.g. CMS/{SiteCodeName} diff --git a/community/Golang/Hugo.gitignore b/community/Golang/Hugo.gitignore index 23f43cbe..acccf884 100644 --- a/community/Golang/Hugo.gitignore +++ b/community/Golang/Hugo.gitignore @@ -5,4 +5,4 @@ /public/ # executable may be added to repository -hugo.exe \ No newline at end of file +hugo.exe diff --git a/community/Logtalk.gitignore b/community/Logtalk.gitignore index d02dd2e1..c680e647 100644 --- a/community/Logtalk.gitignore +++ b/community/Logtalk.gitignore @@ -16,4 +16,4 @@ logtalk_doclet_logs/ *.qo *.ql *.itf -*.po \ No newline at end of file +*.po diff --git a/community/PHP/CodeSniffer.gitignore b/community/PHP/CodeSniffer.gitignore index e2d9e306..d4b37684 100644 --- a/community/PHP/CodeSniffer.gitignore +++ b/community/PHP/CodeSniffer.gitignore @@ -4,4 +4,4 @@ # Recommended template: PHP.gitignore /vendor/* -/wpcs/* \ No newline at end of file +/wpcs/* diff --git a/community/PHP/Pimcore.gitignore b/community/PHP/Pimcore.gitignore index 549e7a8f..4090b4ad 100644 --- a/community/PHP/Pimcore.gitignore +++ b/community/PHP/Pimcore.gitignore @@ -50,4 +50,4 @@ /website/var/user-image/* # keep .dummy files -!.dummy \ No newline at end of file +!.dummy diff --git a/community/Racket.gitignore b/community/Racket.gitignore index c97e0899..962478a1 100644 --- a/community/Racket.gitignore +++ b/community/Racket.gitignore @@ -12,4 +12,4 @@ compiled/ *.zo # Dependency tracking files -*.dep \ No newline at end of file +*.dep From d6d2a41fdfb9f309cdcb267c829ebf92e41c6a44 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 22 Nov 2018 17:11:28 -0400 Subject: [PATCH 088/127] added template for Bazel Co-Authored-By: Carmi Grushko --- community/Bazel.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 community/Bazel.gitignore diff --git a/community/Bazel.gitignore b/community/Bazel.gitignore new file mode 100644 index 00000000..a08ff486 --- /dev/null +++ b/community/Bazel.gitignore @@ -0,0 +1,6 @@ +# gitignore template for Bazel build system +# website: https://bazel.build/ + +# Ignore all bazel-* symlinks. There is no full list since this can change +# based on the name of the directory bazel is cloned into. +/bazel-* From 2ee0576b39a8b50d459cbeea1e902d5eb4e5ba4d Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 22 Nov 2018 17:12:56 -0400 Subject: [PATCH 089/127] added template for Exercism project Co-Authored-By: Yosef Benny Widyokarsono --- community/Exercism.gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 community/Exercism.gitignore diff --git a/community/Exercism.gitignore b/community/Exercism.gitignore new file mode 100644 index 00000000..b74882c8 --- /dev/null +++ b/community/Exercism.gitignore @@ -0,0 +1,5 @@ +# gitignore template for Exercism project +# website: https://exercism.io/ + +# Ignore .exercism folder which contain sensitive data +.exercism From db803b4c8755e219c3e5568b5afce6c5573fce8d Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 22 Nov 2018 17:14:54 -0400 Subject: [PATCH 090/127] add template for Jupyter Notebooks Co-Authored-By: Lin Kao-Yuan --- community/Python/JupyterNotebooks.gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 community/Python/JupyterNotebooks.gitignore diff --git a/community/Python/JupyterNotebooks.gitignore b/community/Python/JupyterNotebooks.gitignore new file mode 100644 index 00000000..7727feac --- /dev/null +++ b/community/Python/JupyterNotebooks.gitignore @@ -0,0 +1,9 @@ +# gitignore template for Jupyter Notebooks +# website: http://jupyter.org/ + +.ipynb_checkpoints +*/.ipynb_checkpoints/* + +# Remove previous ipynb_checkpoints +# git rm -r .ipynb_checkpoints/ +# From 45aaaf2b739579d9906bb5b8618b4c9fa5117de0 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 22 Nov 2018 17:16:22 -0400 Subject: [PATCH 091/127] added template for Nikola framework Co-Authored-By: Lenz Grimmer --- community/Python/Nikola.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 community/Python/Nikola.gitignore diff --git a/community/Python/Nikola.gitignore b/community/Python/Nikola.gitignore new file mode 100644 index 00000000..dac64b41 --- /dev/null +++ b/community/Python/Nikola.gitignore @@ -0,0 +1,7 @@ +# gitignore template for Nikola static site generator +# website: https://getnikola.com/ + +.doit.db +*.py[cod] +cache/ +output/ From 40522d5bf730c47f3449577c80d1820dcc2e4d47 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 22 Nov 2018 19:30:25 -0400 Subject: [PATCH 092/127] added template for Puppet modules Co-Authored-By: Mario Finelli --- community/Puppet.gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 community/Puppet.gitignore diff --git a/community/Puppet.gitignore b/community/Puppet.gitignore new file mode 100644 index 00000000..4fcdca7d --- /dev/null +++ b/community/Puppet.gitignore @@ -0,0 +1,16 @@ +# gitignore template for Puppet modules +# website: https://forge.puppet.com/ + +# Built packages +pkg/* + +# Should run on multiple platforms so don't check in +Gemfile.lock + +# Tests +spec/fixtures/* +coverage/* + +# Third-party +vendor/* +.bundle/* From 056eea8e97bfb9057bf912788c243fc9ec390912 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 22 Nov 2018 19:30:49 -0400 Subject: [PATCH 093/127] added template for Splunk apps Co-Authored-By: Edward Courtemanche --- community/Splunk.gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 community/Splunk.gitignore diff --git a/community/Splunk.gitignore b/community/Splunk.gitignore new file mode 100644 index 00000000..d063da0e --- /dev/null +++ b/community/Splunk.gitignore @@ -0,0 +1,8 @@ +# gitignore template for Splunk apps +# documentation: http://docs.splunk.com/Documentation/Splunk/6.2.3/admin/Defaultmetaconf + +# Splunk local meta file +local.meta + +# Splunk local folder +local From 541a7aec34f3414cb4bc5f07345c60f84a448f30 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 23 Nov 2018 15:46:33 -0400 Subject: [PATCH 094/127] added template for Xilinx Co-Authored-By: lkxajd Co-Authored-By: Shamim Keshani Co-Authored-By: Stephen --- community/Xilinx.gitignore | 105 +++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 community/Xilinx.gitignore diff --git a/community/Xilinx.gitignore b/community/Xilinx.gitignore new file mode 100644 index 00000000..afe5e821 --- /dev/null +++ b/community/Xilinx.gitignore @@ -0,0 +1,105 @@ +# gitignore template for Xilinx Vivado Design Suite +# website: https://www.xilinx.com/support/download.html + +# [home] +*.jou +*.log +*.debug +*.str +*.zip +*.tmp +*.rst +*.os +*.js +*.pb +*.dcp +*.hwdef +*.vds +*.veo +*.wdf +*.vdi +*.dmp +*.rpx +*.rpt +*_stub.v +*_stub.vhdl +*_funcsim.v +*_funcsim.vhdl +.project + +# [dir] +*.cache +.metadata +*.data +*.ipdefs +.Xil +*.sdk +*.hw +*.ip_user_files + +### IP synth +*_synth_* + +.jobs + +### project synth +*/*.runs/synth*/*.xml +*/*.runs/synth*/*.txt +*/*.runs/synth*/*.sh +*/*.runs/synth*/*.tcl +*/*.runs/synth*/*.bat +*/*.runs/synth*/*.xdc +!*/*.runs/synth*/*utilization*.rpt + +*.runs/synth*/*.xml +*.runs/synth*/*.txt +*.runs/synth*/*.sh +*.runs/synth*/*.tcl +*.runs/synth*/*.bat +*.runs/synth*/*.xdc +!*.runs/synth*/*utilization*.rpt + +### project impl +*/*.runs/impl*/*.xml +*/*.runs/impl*/*.html +*/*.runs/impl*/*.txt +*/*.runs/impl*/*.sh +*/*.runs/impl*/*.tcl +*/*.runs/impl*/*.bat +!*/*.runs/impl*/*utilization*.rpt + +*.runs/impl*/*.xml +*.runs/impl*/*.html +*.runs/impl*/*.txt +*.runs/impl*/*.sh +*.runs/impl*/*.tcl +*.runs/impl*/*.bat +!*.runs/impl*/*utilization*.rpt + +### block design +*/*/bd/*/hdl +*/*/*/bd/*/hdl + +*/*/bd/*/*.xdc +*/*/*/bd/*/*.xdc + +*/*/bd/*/ip/*/*.xdc +*/*/*/bd/*/ip/*/*.xdc + +*/*/bd/*/ip/*/*/ +*/*/*/bd/*/ip/*/*/ + +*/*/bd/*/ip/*/*.vhd +*/*/*/bd/*/ip/*/*.vhd + +*/*/bd/*/ip/*/*.xml +*/*/*/bd/*/ip/*/*.xml + +*.c +*.h +*.vho +*.html +*/*/bd/*/ip/*/*.tcl +*/*/*/bd/*/ip/*/*.tcl +hw_handoff +ipshared From 8b335ee4099333b11fa02170f23998996dba899e Mon Sep 17 00:00:00 2001 From: Christopher McClellan Date: Sat, 8 Aug 2015 09:34:42 -0400 Subject: [PATCH 095/127] Create AtmelStudio.gitignore Added a new .gitignore for Atmel Studio. https://www.microchip.com/mplab/avr-support/atmel-studio-7 --- community/embedded/AtmelStudio.gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 community/embedded/AtmelStudio.gitignore diff --git a/community/embedded/AtmelStudio.gitignore b/community/embedded/AtmelStudio.gitignore new file mode 100644 index 00000000..5dfc4696 --- /dev/null +++ b/community/embedded/AtmelStudio.gitignore @@ -0,0 +1,22 @@ +## Ignore Atmel Studio temporary files and build results +# https://www.microchip.com/mplab/avr-support/atmel-studio-7 + +# Atmel Studio is powered by an older version of Visual Studio, +# so most of the project and solution files are the same as VS files, +# only prefixed by an `at`. + +#Build Directories +[Dd]ebug/ +[Rr]elease/ + +#Build Results +*.o +*.d +*.eep +*.elf +*.hex +*.map +*.srec + +#User Specific Files +*.atsuo From 941ea22c96ad34a981bed6c13c1239649cfbd78e Mon Sep 17 00:00:00 2001 From: Steven Lee Date: Mon, 26 Nov 2018 22:02:40 +1100 Subject: [PATCH 096/127] correct capitalization problems and add Octave which link to MATLAB --- Global/{Matlab.gitignore => MATLAB.gitignore} | 0 Global/{macOS.gitignore => MacOS.gitignore} | 0 Global/Octave.gitignore | 1 + Jboss.gitignore => JBoss.gitignore | 0 4 files changed, 1 insertion(+) rename Global/{Matlab.gitignore => MATLAB.gitignore} (100%) rename Global/{macOS.gitignore => MacOS.gitignore} (100%) create mode 120000 Global/Octave.gitignore rename Jboss.gitignore => JBoss.gitignore (100%) diff --git a/Global/Matlab.gitignore b/Global/MATLAB.gitignore similarity index 100% rename from Global/Matlab.gitignore rename to Global/MATLAB.gitignore diff --git a/Global/macOS.gitignore b/Global/MacOS.gitignore similarity index 100% rename from Global/macOS.gitignore rename to Global/MacOS.gitignore diff --git a/Global/Octave.gitignore b/Global/Octave.gitignore new file mode 120000 index 00000000..b1d60544 --- /dev/null +++ b/Global/Octave.gitignore @@ -0,0 +1 @@ +MATLAB.gitignore \ No newline at end of file diff --git a/Jboss.gitignore b/JBoss.gitignore similarity index 100% rename from Jboss.gitignore rename to JBoss.gitignore From 9771d5c8d1788702c3ec5c33941c2508a99d7446 Mon Sep 17 00:00:00 2001 From: Cole Arendt Date: Tue, 27 Nov 2018 14:33:43 -0500 Subject: [PATCH 097/127] remove rsconnect folder from R.gitignore --- R.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/R.gitignore b/R.gitignore index 26fad6fa..fcff087a 100644 --- a/R.gitignore +++ b/R.gitignore @@ -31,6 +31,3 @@ vignettes/*.pdf # Temporary files created by R markdown *.utf8.md *.knit.md - -# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html -rsconnect/ From 512393f97db9216f57c319859ffbd961876113cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Corr=C3=AAa=20Gomes?= Date: Tue, 27 Nov 2018 15:51:23 -0500 Subject: [PATCH 098/127] Create Magento2.gitignore --- community/PHP/Magento2.gitignore | 54 ++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 community/PHP/Magento2.gitignore diff --git a/community/PHP/Magento2.gitignore b/community/PHP/Magento2.gitignore new file mode 100644 index 00000000..b6b7860a --- /dev/null +++ b/community/PHP/Magento2.gitignore @@ -0,0 +1,54 @@ +/sitemap +/sitemap.xml +/pub/sitemap +/pub/sitemap.xml +/app/config_sandbox +/app/etc/config.php +/app/etc/env.php +/app/code/Magento/TestModule* +/lib/internal/flex/uploader/.actionScriptProperties +/lib/internal/flex/uploader/.flexProperties +/lib/internal/flex/uploader/.project +/lib/internal/flex/uploader/.settings +/lib/internal/flex/varien/.actionScriptProperties +/lib/internal/flex/varien/.flexLibProperties +/lib/internal/flex/varien/.project +/lib/internal/flex/varien/.settings +/.grunt +/.php_cs.cache +/grunt-config.json +/dev/tools/grunt/configs/local-themes.js + +/pub/media/*.* +!/pub/media/.htaccess +/pub/media/attribute/* +!/pub/media/attribute/.htaccess +/pub/media/analytics/* +/pub/media/catalog/* +!/pub/media/catalog/.htaccess +/pub/media/customer/* +!/pub/media/customer/.htaccess +/pub/media/downloadable/* +!/pub/media/downloadable/.htaccess +/pub/media/favicon/* +/pub/media/import/* +!/pub/media/import/.htaccess +/pub/media/logo/* +/pub/media/theme/* +/pub/media/theme_customization/* +!/pub/media/theme_customization/.htaccess +/pub/media/wysiwyg/* +!/pub/media/wysiwyg/.htaccess +/pub/media/tmp/* +!/pub/media/tmp/.htaccess +/pub/media/captcha/* +!/pub/media/captcha/.htaccess +/pub/static/* +!/pub/static/.htaccess + +/var/* +!/var/.htaccess +/vendor/* +!/vendor/.htaccess +/generated/* +!/generated/.htaccess From 15736d477bd0c6e893f623407f8d58900f97ece2 Mon Sep 17 00:00:00 2001 From: Tej Chajed Date: Thu, 29 Nov 2018 07:58:06 -0500 Subject: [PATCH 099/127] [Go] Fix typo in comment --- Go.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Go.gitignore b/Go.gitignore index f1c181ec..f2dd9554 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -5,7 +5,7 @@ *.so *.dylib -# Test binary, build with `go test -c` +# Test binary, built with `go test -c` *.test # Output of the go coverage tool, specifically when used with LiteIDE From fd3fe5838a68a8d9518ae498604045584f9b8634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erdal=20TA=C5=9EKESEN?= Date: Thu, 29 Nov 2018 18:26:50 +0300 Subject: [PATCH 100/127] feat: Add missing executables and generated --- community/Golang/Hugo.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/community/Golang/Hugo.gitignore b/community/Golang/Hugo.gitignore index acccf884..3718de7b 100644 --- a/community/Golang/Hugo.gitignore +++ b/community/Golang/Hugo.gitignore @@ -1,8 +1,12 @@ +### Hugo ### # gitginore template for Hugo projects # website: https://gohugo.io # generated files by hugo /public/ +/resources/_gen/ # executable may be added to repository hugo.exe +hugo.darwin +hugo.linux From 8e6fda27d1e635d49b300defce46b522f7ecc1a4 Mon Sep 17 00:00:00 2001 From: johnsoncodehk Date: Sun, 2 Dec 2018 00:18:35 +0800 Subject: [PATCH 101/127] Ignore Logs/Packages-Update.log --- Unity.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Unity.gitignore b/Unity.gitignore index 93c9ce52..b1d1a9a7 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -3,6 +3,7 @@ [Oo]bj/ [Bb]uild/ [Bb]uilds/ +[Ll]ogs/ Assets/AssetStoreTools* # Visual Studio cache directory From 47d29f35dceaf6ebd456c78772b0ead100fa6e9c Mon Sep 17 00:00:00 2001 From: "David C. Drake" Date: Sat, 1 Dec 2018 16:36:06 -0800 Subject: [PATCH 102/127] Improve comment capitalization consistency --- Unity.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Unity.gitignore b/Unity.gitignore index 93c9ce52..f4945c1a 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -29,7 +29,7 @@ ExportedObj/ *.pidb.meta *.pdb.meta -# Unity3D Generated File On Crash Reports +# Unity3D generated file on crash reports sysinfo.txt # Builds From 38b9fdf4fb1850caecc0f2ea19bbf99c0cb9ed3c Mon Sep 17 00:00:00 2001 From: Wouter de Vries Date: Thu, 6 Dec 2018 10:17:16 +0100 Subject: [PATCH 103/127] Only unignore directories that have at least a character ending with .cache --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 4ba92b04..d1fc54de 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -211,7 +211,7 @@ _pkginfo.txt # files ending in .cache can be ignored *.[Cc]ache # but keep track of directories ending in .cache -!*.[Cc]ache/ +!?*.[Cc]ache/ # Others ClientBin/ From 2731b70f4f07cf30fbc62c3a6b67f0c935887df0 Mon Sep 17 00:00:00 2001 From: Mark Nicolini <36858276+marcusolini@users.noreply.github.com> Date: Thu, 6 Dec 2018 09:19:35 -0500 Subject: [PATCH 104/127] Ignore Generated Files Netbeans Linux and Windows Makefile-*.mk and Package-*.bash files in nbproject directories are automatically generated during compile. These files are continually updated, which can cause a long list of unnecessary files to add, commit, and push (or that are Untracked). This has been experienced for Linux and Windows C++ projects. Helpful supporting link: https://stackoverflow.com/questions/27490608/netbeans-c-and-git --- Global/NetBeans.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/NetBeans.gitignore b/Global/NetBeans.gitignore index 863bc7fa..45112875 100644 --- a/Global/NetBeans.gitignore +++ b/Global/NetBeans.gitignore @@ -1,4 +1,6 @@ **/nbproject/private/ +**/nbproject/Makefile-*.mk +**/nbproject/Package-*.bash build/ nbbuild/ dist/ From 2e5099d72ff367116141f2131369863e34fa3140 Mon Sep 17 00:00:00 2001 From: Steven Lee Date: Mon, 10 Dec 2018 23:01:10 +1100 Subject: [PATCH 105/127] macOS low cap m --- Global/{MacOS.gitignore => macOS.gitignore} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Global/{MacOS.gitignore => macOS.gitignore} (100%) diff --git a/Global/MacOS.gitignore b/Global/macOS.gitignore similarity index 100% rename from Global/MacOS.gitignore rename to Global/macOS.gitignore From 32fa57bc6122a4e33e037e9fd8fe69b58eb0c9e1 Mon Sep 17 00:00:00 2001 From: Kyle Smith Date: Wed, 12 Dec 2018 19:47:32 +1000 Subject: [PATCH 106/127] [Unity] Ignore .gradle/ build cache --- Unity.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 93c9ce52..6c45d9ee 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -8,6 +8,9 @@ Assets/AssetStoreTools* # Visual Studio cache directory .vs/ +# Gradle cache directory +.gradle/ + # Autogenerated VS/MD/Consulo solution and project files ExportedObj/ .consulo/ From b2310e0ddc9ad688445e28d72f11c7c85f8776f5 Mon Sep 17 00:00:00 2001 From: Hassan Hashemi Date: Thu, 13 Dec 2018 06:53:53 -0800 Subject: [PATCH 107/127] Ignore health check temp database Ignore liveness db which belongs to: https://github.com/Xabaril/BeatPulse --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 4ba92b04..9711d5dc 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -223,6 +223,7 @@ ClientBin/ *.pfx *.publishsettings orleans.codegen.cs +livenessdb # Including strong name files can present a security risk # (https://github.com/github/gitignore/pull/2483#issue-259490424) From f966096f4072f73dcc8f7004062176e7954dffed Mon Sep 17 00:00:00 2001 From: lmedson Date: Thu, 13 Dec 2018 21:32:38 -0300 Subject: [PATCH 108/127] Add ignorer to .env.test variable --- Node.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Node.gitignore b/Node.gitignore index ebfe4395..cf36b87a 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -56,6 +56,7 @@ typings/ # dotenv environment variables file .env +.env.test # parcel-bundler cache (https://parceljs.org/) .cache From c2d0605e69b1d2bf541ca8f86cccd3b9d10379a8 Mon Sep 17 00:00:00 2001 From: Kenji Sakurada Date: Sun, 16 Dec 2018 14:50:40 +0900 Subject: [PATCH 109/127] fix wsp --- Node.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index ebfe4395..c5f3e449 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -75,5 +75,5 @@ typings/ # FuseBox cache .fusebox/ -#DynamoDB Local files -.dynamodb/ +# DynamoDB Local files +.dynamodb/ From 2861abc28c5206c0304fc762cc6e59b89023f631 Mon Sep 17 00:00:00 2001 From: Hassan Hashemi Date: Sun, 16 Dec 2018 09:51:36 -0800 Subject: [PATCH 110/127] Add BeatPulse specific section --- VisualStudio.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 9711d5dc..581c7af6 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -223,7 +223,7 @@ ClientBin/ *.pfx *.publishsettings orleans.codegen.cs -livenessdb + # Including strong name files can present a security risk # (https://github.com/github/gitignore/pull/2483#issue-259490424) @@ -337,3 +337,6 @@ ASALocalRun/ # Local History for Visual Studio .localhistory/ + +#BeatPulse healthcheck temp database +livenessdb From 5abe1395f1357054f9b69d420cdb20960b88eba9 Mon Sep 17 00:00:00 2001 From: Hassan Hashemi Date: Sun, 16 Dec 2018 09:52:34 -0800 Subject: [PATCH 111/127] Remove empty line --- VisualStudio.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 581c7af6..5acd18b8 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -224,7 +224,6 @@ ClientBin/ *.publishsettings orleans.codegen.cs - # Including strong name files can present a security risk # (https://github.com/github/gitignore/pull/2483#issue-259490424) #*.snk From f3d0de03518f2fa35c0d35bf5e416236e6a1309a Mon Sep 17 00:00:00 2001 From: Clemens Scharfen Date: Tue, 18 Dec 2018 15:59:59 +0100 Subject: [PATCH 112/127] Added Logs to Unity.gitignore, which is automatically generated in Unity 2018.3 to log package updates. --- Unity.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Unity.gitignore b/Unity.gitignore index b22564d1..7f48d9ac 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -3,6 +3,7 @@ [Oo]bj/ [Bb]uild/ [Bb]uilds/ +[Ll]ogs/ Assets/AssetStoreTools* # Visual Studio cache directory From 6cc207982edea1c93121e32b2d4654fd63e2d391 Mon Sep 17 00:00:00 2001 From: Hassan Hashemi Date: Tue, 18 Dec 2018 11:27:45 -0800 Subject: [PATCH 113/127] Add * wildcard --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 5acd18b8..42811060 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -338,4 +338,4 @@ ASALocalRun/ .localhistory/ #BeatPulse healthcheck temp database -livenessdb +*livenessdb From ade77e5dffd6109896712ac7b89a3fa07cde31d9 Mon Sep 17 00:00:00 2001 From: Daniel Gullberg Date: Mon, 2 May 2016 09:14:13 +0200 Subject: [PATCH 114/127] Adding .gitignore for IAR EWARM IDE (https://www.iar.com/iar-embedded-workbench/) --- IAR_EWARM.gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 IAR_EWARM.gitignore diff --git a/IAR_EWARM.gitignore b/IAR_EWARM.gitignore new file mode 100644 index 00000000..f3ad7324 --- /dev/null +++ b/IAR_EWARM.gitignore @@ -0,0 +1,16 @@ +# All build-directories inside an EWARM subdirectory +# EWARM will put its build files under a subdirectory +# with the same name as the configuration. +# Example +# EWARM/Config1/Obj /List /Exe +# EWARM/Config2/Obj /List /Exe +EWARM/**/Obj +EWARM/**/List +EWARM/**/Exe + +# Autogenerated project files +*.dep +*.ewt + +# Autogenerated folder for debugger +EWARM/settings From c5557ee1104864f67de85b2528abe963b1ae683e Mon Sep 17 00:00:00 2001 From: Daniel Gullberg Date: Sun, 25 Nov 2018 00:32:40 +0100 Subject: [PATCH 115/127] Move to the community directory --- IAR_EWARM.gitignore => community/IAR_EWARM.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename IAR_EWARM.gitignore => community/IAR_EWARM.gitignore (100%) diff --git a/IAR_EWARM.gitignore b/community/IAR_EWARM.gitignore similarity index 100% rename from IAR_EWARM.gitignore rename to community/IAR_EWARM.gitignore From 718f4f53733d2144868a745b3da4c9ce910d8c1c Mon Sep 17 00:00:00 2001 From: Daniel Gullberg Date: Sun, 25 Nov 2018 00:38:17 +0100 Subject: [PATCH 116/127] Move IAR_EWARM to a new directory Embedded --- community/{ => Embedded}/IAR_EWARM.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename community/{ => Embedded}/IAR_EWARM.gitignore (100%) diff --git a/community/IAR_EWARM.gitignore b/community/Embedded/IAR_EWARM.gitignore similarity index 100% rename from community/IAR_EWARM.gitignore rename to community/Embedded/IAR_EWARM.gitignore From c7d07188d6be8433c5879869397222572d76369c Mon Sep 17 00:00:00 2001 From: Daniel Gullberg Date: Sun, 25 Nov 2018 00:42:29 +0100 Subject: [PATCH 117/127] Update info for IAR EWARM --- community/Embedded/IAR_EWARM.gitignore | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/community/Embedded/IAR_EWARM.gitignore b/community/Embedded/IAR_EWARM.gitignore index f3ad7324..13ed9a0b 100644 --- a/community/Embedded/IAR_EWARM.gitignore +++ b/community/Embedded/IAR_EWARM.gitignore @@ -1,6 +1,9 @@ -# All build-directories inside an EWARM subdirectory -# EWARM will put its build files under a subdirectory -# with the same name as the configuration. +# gitignore template for the IAR EWARM +# website: https://www.iar.com/ + +# Some tools will put the EWARM files +# under a subdirectory with the same name +# as the configuration. # Example # EWARM/Config1/Obj /List /Exe # EWARM/Config2/Obj /List /Exe From 1afdbc0a13d62402d75b1cb3a5b85dfc6283cf74 Mon Sep 17 00:00:00 2001 From: Daniel Gullberg Date: Tue, 18 Dec 2018 22:50:39 +0100 Subject: [PATCH 118/127] Move to community/embedded --- community/{Embedded => embedded}/IAR_EWARM.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename community/{Embedded => embedded}/IAR_EWARM.gitignore (100%) diff --git a/community/Embedded/IAR_EWARM.gitignore b/community/embedded/IAR_EWARM.gitignore similarity index 100% rename from community/Embedded/IAR_EWARM.gitignore rename to community/embedded/IAR_EWARM.gitignore From db53e8cfc93eba718edecbc75cb5fd8d1344462b Mon Sep 17 00:00:00 2001 From: Hassan Hashemi Date: Wed, 19 Dec 2018 09:52:00 +0330 Subject: [PATCH 119/127] Changed the rule to healthchecksdb --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 42811060..03ca7797 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -338,4 +338,4 @@ ASALocalRun/ .localhistory/ #BeatPulse healthcheck temp database -*livenessdb +*healthchecksdb From 5bbde8f927722951caf5bba95c5ae5d121a47150 Mon Sep 17 00:00:00 2001 From: Hassan Hashemi Date: Wed, 19 Dec 2018 09:52:27 +0330 Subject: [PATCH 120/127] Update the rule --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 03ca7797..06cd2669 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -338,4 +338,4 @@ ASALocalRun/ .localhistory/ #BeatPulse healthcheck temp database -*healthchecksdb +healthchecksdb From 98a3e85f01ed46b2371f26a87c582a7a6d2d4d41 Mon Sep 17 00:00:00 2001 From: Hassan Hashemi Date: Wed, 19 Dec 2018 08:56:20 -0800 Subject: [PATCH 121/127] cleanup --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 06cd2669..edfa9040 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -337,5 +337,5 @@ ASALocalRun/ # Local History for Visual Studio .localhistory/ -#BeatPulse healthcheck temp database +# BeatPulse healthcheck temp database healthchecksdb From 81923b128e5a534085c3a1fd70d59c4be6dab346 Mon Sep 17 00:00:00 2001 From: johnsoncodehk Date: Mon, 31 Dec 2018 17:39:27 +0800 Subject: [PATCH 122/127] Unified base folder name format --- Unity.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Unity.gitignore b/Unity.gitignore index 7f48d9ac..e59f3c27 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -4,7 +4,7 @@ [Bb]uild/ [Bb]uilds/ [Ll]ogs/ -Assets/AssetStoreTools* +[Aa]ssets/AssetStoreTools* # Visual Studio cache directory .vs/ From 584dd34b9d96f2fb847103ea8c355169212b6442 Mon Sep 17 00:00:00 2001 From: Aslam Anver Date: Thu, 3 Jan 2019 14:27:44 +0530 Subject: [PATCH 123/127] google-services.json google-services.json file should be commented on default if they want they will change otherwise it'll destroy the project --- Android.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.gitignore b/Android.gitignore index 69eda014..33838ea5 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -52,7 +52,7 @@ captures/ .externalNativeBuild # Google Services (e.g. APIs or Firebase) -google-services.json +# google-services.json # Freeline freeline.py From 2b2b61395f368ffa47cbf5acb08d23a65887f916 Mon Sep 17 00:00:00 2001 From: Nicholas <39665412+wRorsjakz@users.noreply.github.com> Date: Sat, 5 Jan 2019 17:24:13 +0800 Subject: [PATCH 124/127] Add version control ignore vcs.xml can be considered for gitignore as per this [stackoverflow discussion](https://stackoverflow.com/questions/16736856/what-should-be-in-my-gitignore-for-an-android-studio-project/18454251#18454251) --- Android.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index 69eda014..f7d1ba4b 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -65,3 +65,6 @@ fastlane/Preview.html fastlane/screenshots fastlane/test_output fastlane/readme.md + +# Version control +vcs.xml From 240dd3f3213b53f96932a8d92dfb523ccb51c099 Mon Sep 17 00:00:00 2001 From: jiakaiyang Date: Tue, 8 Jan 2019 14:53:04 +0800 Subject: [PATCH 125/127] add android lint files --- Android.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index d24356d8..f0c20a1c 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -68,3 +68,10 @@ fastlane/readme.md # Version control vcs.xml + +# lint +lint/intermediates/ +lint/generated/ +lint/outputs/ +lint/tmp/ +# lint/reports/ From 24f6734840548fb0b7bbc23b617941f452cc28a6 Mon Sep 17 00:00:00 2001 From: Andreia Gaita Date: Tue, 8 Jan 2019 15:00:46 +0000 Subject: [PATCH 126/127] Unity: ignore mdb files and fix path to crashlytics file (it can be in other places) Unity projects targeting the 2.0/3.5 runtime or built with mono < v5.0 generate `mdb` files, not `pdb` files. Looks like the `crashlytics-build.properties` gets around in more than just the `StreamingAssets` folder, looking at [examples around the internets](https://github.com/auth0/sharelock-android/blob/master/app/src/main/assets/crashlytics-build.properties), so it should probably just be ignored as a filename. --- Unity.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Unity.gitignore b/Unity.gitignore index e59f3c27..2959acb6 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -26,12 +26,14 @@ ExportedObj/ *.booproj *.svd *.pdb +*.mdb *.opendb *.VC.db # Unity3D generated meta files *.pidb.meta *.pdb.meta +*.mdb.meta # Unity3D generated file on crash reports sysinfo.txt @@ -41,5 +43,5 @@ sysinfo.txt *.unitypackage # Crashlytics generated file -Assets/StreamingAssets/crashlytics-build.properties +crashlytics-build.properties From 152f419973461706e30f4f7701baf7434da95a9b Mon Sep 17 00:00:00 2001 From: Andreia Gaita Date: Tue, 8 Jan 2019 15:12:43 +0000 Subject: [PATCH 127/127] Unity: Do not blanket-ignore specific plugins, that's a user choice Only people building Unity plugins will need to import the asset store tools plugin into their project, and it's a toss up whether they want to commit the tooling into their repo (they might or they might not want to, it highly depends on their workflow). The default .gitignore shouldn't be making this choice for these users. --- Unity.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Unity.gitignore b/Unity.gitignore index 2959acb6..59580361 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -4,7 +4,9 @@ [Bb]uild/ [Bb]uilds/ [Ll]ogs/ -[Aa]ssets/AssetStoreTools* + +# Uncomment this line if you wish to ignore the asset store tools plugin +# [Aa]ssets/AssetStoreTools* # Visual Studio cache directory .vs/