From 2db444014ba2c3f7ad308f1d95d1ede309e8eaa4 Mon Sep 17 00:00:00 2001 From: Kazuyuki SUZUKI Date: Mon, 8 Dec 2014 21:05:58 +0900 Subject: [PATCH 01/33] update FuelPHP.gitignore --- FuelPHP.gitignore | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/FuelPHP.gitignore b/FuelPHP.gitignore index 7804d8d2..d69f71f4 100644 --- a/FuelPHP.gitignore +++ b/FuelPHP.gitignore @@ -1,2 +1,21 @@ -fuel/app/logs/*/*/* -fuel/app/cache/*/* +# the composer package lock file and install directory +# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +# /composer.lock +/fuel/vendor + +# the fuelphp document +/docs/ + +# you may install these packages with `oil package`. +# http://fuelphp.com/docs/packages/oil/package.html +# /fuel/packages/auth/ +# /fuel/packages/email/ +# /fuel/packages/oil/ +# /fuel/packages/orm/ +# /fuel/packages/parser/ + +# dynamically generated files +/fuel/app/logs/*/*/* +/fuel/app/cache/*/* +/fuel/app/config/crypt.php From 62cc93e6f57b41d0ae7d1654ebfebd12c8bd2d23 Mon Sep 17 00:00:00 2001 From: Nuno Rafael Rocha Date: Wed, 25 Mar 2015 18:58:08 +0000 Subject: [PATCH 02/33] Add spool folder to Symfony --- Symfony.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Symfony.gitignore b/Symfony.gitignore index c68377d1..a72d1bda 100644 --- a/Symfony.gitignore +++ b/Symfony.gitignore @@ -4,6 +4,9 @@ !app/cache/.gitkeep !app/logs/.gitkeep +# Email spool folder +/app/spool/* + # Cache and logs (Symfony3) /var/cache/* /var/logs/* From 433fcebbc30dca53203cc06924eacd5de66ddd2b Mon Sep 17 00:00:00 2001 From: Capi Etheriel Date: Fri, 5 Jun 2015 12:43:20 -0300 Subject: [PATCH 03/33] Add scrapy stuff to .gitignore --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index a65d0466..94c05b4a 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -51,6 +51,9 @@ coverage.xml # Django stuff: *.log +# Scrapy stuff: +.scrapy + # Sphinx documentation docs/_build/ From 56a9cff48352eacc3bf0cdc3a5f57eb273b2ef7d Mon Sep 17 00:00:00 2001 From: photodude Date: Thu, 11 Jun 2015 15:41:08 -0600 Subject: [PATCH 04/33] Add the other Dreamweaver added files --- Global/Dreamweaver.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Global/Dreamweaver.gitignore b/Global/Dreamweaver.gitignore index 6a33373b..0621a3d5 100644 --- a/Global/Dreamweaver.gitignore +++ b/Global/Dreamweaver.gitignore @@ -1,3 +1,7 @@ # DW Dreamweaver added files _notes +_compareTemp +configs/ dwsync.xml +dw_php_codehinting.config +*.mno From 146fef70cbf07c790a28086ed39fb5fc63f921bc Mon Sep 17 00:00:00 2001 From: TJ Rana Date: Thu, 18 Jun 2015 18:56:54 -0400 Subject: [PATCH 05/33] Add Dropbox.gitignore --- Global/Dropbox.gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Global/Dropbox.gitignore diff --git a/Global/Dropbox.gitignore b/Global/Dropbox.gitignore new file mode 100644 index 00000000..40f4a469 --- /dev/null +++ b/Global/Dropbox.gitignore @@ -0,0 +1,4 @@ +# Dropbox settings and caches +.dropbox +.dropbox.attr +.dropbox.cache From 0a93e406c01ed01452f6a78d03b775fdbcdcf8ad Mon Sep 17 00:00:00 2001 From: rdalkire Date: Wed, 22 Jul 2015 15:00:32 -0400 Subject: [PATCH 06/33] Update CVS.gitignore I added and tested another leading asterisk to deal with the CVS directories further down the tree. --- Global/CVS.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/CVS.gitignore b/Global/CVS.gitignore index 01ba8634..1695352e 100644 --- a/Global/CVS.gitignore +++ b/Global/CVS.gitignore @@ -1,4 +1,4 @@ /CVS/* -*/CVS/* +**/CVS/* .cvsignore */.cvsignore From 9906b969e8f650803690aa90a29f06c8428babe7 Mon Sep 17 00:00:00 2001 From: newapplesho Date: Sat, 22 Aug 2015 10:00:29 +0900 Subject: [PATCH 07/33] Add Smalltalk gitignore --- Smalltalk.gitignore | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Smalltalk.gitignore diff --git a/Smalltalk.gitignore b/Smalltalk.gitignore new file mode 100644 index 00000000..75272b23 --- /dev/null +++ b/Smalltalk.gitignore @@ -0,0 +1,18 @@ +# changes file +*.changes + +# system image +*.image + +# Pharo Smalltalk Debug log file +PharoDebug.log + +# Squeak Smalltalk Debug log file +SqueakDebug.log + +# Monticello package cache +/package-cache + +# Metacello-github cache +/github-cache +github-*.zip From acba43a590ae4619b9e07bb95651826054b5d10e Mon Sep 17 00:00:00 2001 From: wikibootup Date: Sat, 22 Aug 2015 20:56:50 +0900 Subject: [PATCH 08/33] Add Scheme.gitignore --- Scheme.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Scheme.gitignore diff --git a/Scheme.gitignore b/Scheme.gitignore new file mode 100644 index 00000000..cbb89d78 --- /dev/null +++ b/Scheme.gitignore @@ -0,0 +1,7 @@ +*.ss~ +*.ss#* +.#*.ss + +*.scm~ +*.scm#* +.#*.scm From fb86177e9a2e770ad41e7d95d799807337de6c3b Mon Sep 17 00:00:00 2001 From: Mike Pretzlaw Date: Fri, 11 Sep 2015 06:54:59 +0200 Subject: [PATCH 09/33] WordPress: Only ignore files in root to support other plugins Most files are ignores without defining the directory. This caused trouble with several plugins. To fix that some files should only be ignored in the root directory. - .htaccess is only ignored in the root directory due to some plugins or devs that need and create the htaccess for security issues in subfolders - sitemap.xml and sitemap.xml.gz is only ignored in the root directory due to plugins that have an equal name and are therefor ignored - Those files are ordered alphabetically --- WordPress.gitignore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/WordPress.gitignore b/WordPress.gitignore index 56032878..97923503 100644 --- a/WordPress.gitignore +++ b/WordPress.gitignore @@ -1,7 +1,4 @@ *.log -.htaccess -sitemap.xml -sitemap.xml.gz wp-config.php wp-content/advanced-cache.php wp-content/backup-db/ @@ -13,6 +10,9 @@ wp-content/uploads/ wp-content/wp-cache-config.php wp-content/plugins/hello.php -/readme.html +/.htaccess /license.txt +/readme.html +/sitemap.xml +/sitemap.xml.gz From 1f32ad368b292e0c103d99cabbe2a83850238253 Mon Sep 17 00:00:00 2001 From: littleibex Date: Sun, 20 Sep 2015 12:18:58 +0400 Subject: [PATCH 10/33] Added .htaccess to concrete5 gitignore --- Concrete5.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Concrete5.gitignore b/Concrete5.gitignore index 9aa215ad..1fe53611 100644 --- a/Concrete5.gitignore +++ b/Concrete5.gitignore @@ -1,3 +1,4 @@ config/site.php files/cache/* files/tmp/* +.htaccess From 7830ef7b5965ad47293e9325ea98fe66cd30ca93 Mon Sep 17 00:00:00 2001 From: Jim Hester Date: Fri, 2 Oct 2015 08:45:11 -0400 Subject: [PATCH 11/33] Ignore output from R CMD build and R CMD check Both rules are restricted to the top level only, so `*.tar.gz` files in data directories for instance will _not_ be ignored. --- R.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/R.gitignore b/R.gitignore index 49037a0b..ffef9f8f 100644 --- a/R.gitignore +++ b/R.gitignore @@ -5,6 +5,12 @@ # Example code in package build process *-Ex.R +# Output files from R CMD build +/*.tar.gz + +# Output files from R CMD check +/*.Rcheck/ + # RStudio files .Rproj.user/ From c02577acb0390a82a55f404a60fa73771beb111f Mon Sep 17 00:00:00 2001 From: Honza Dvorsky Date: Sat, 3 Oct 2015 01:15:22 +0100 Subject: [PATCH 12/33] Update Swift.gitignore --- Swift.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/Swift.gitignore b/Swift.gitignore index d571cb2c..b2db4deb 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -18,10 +18,8 @@ DerivedData xcuserdata ## Other -*.xccheckout *.moved-aside *.xcuserstate -*.xcscmblueprint ## Obj-C/Swift specific *.hmap From 74aa37bfa4582d4f81a6ab74483953092bf6d3e9 Mon Sep 17 00:00:00 2001 From: Honza Dvorsky Date: Sat, 3 Oct 2015 01:15:46 +0100 Subject: [PATCH 13/33] Update Objective-C.gitignore --- Objective-C.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 05096f66..3567a65a 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -18,10 +18,8 @@ DerivedData xcuserdata ## Other -*.xccheckout *.moved-aside *.xcuserstate -*.xcscmblueprint ## Obj-C/Swift specific *.hmap From daffb4f6bfe47857238f57ad122e736a5b0fbd13 Mon Sep 17 00:00:00 2001 From: Honza Dvorsky Date: Sat, 3 Oct 2015 01:17:02 +0100 Subject: [PATCH 14/33] Update Xcode.gitignore --- Global/Xcode.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index d07b7894..34d0d9c3 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -18,6 +18,5 @@ DerivedData xcuserdata ## Other -*.xccheckout *.moved-aside *.xcuserstate From ad5179127ed5b3ac33e5cce7b2d0999f03f4fbe2 Mon Sep 17 00:00:00 2001 From: Jean Carlo Machado Date: Mon, 19 Oct 2015 13:10:11 -0200 Subject: [PATCH 15/33] added doctrine 2 orm default cache and proxy locations --- ZendFramework.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ZendFramework.gitignore b/ZendFramework.gitignore index 3fbc9733..80adb154 100644 --- a/ZendFramework.gitignore +++ b/ZendFramework.gitignore @@ -15,6 +15,11 @@ data/sessions/ data/tmp/ temp/ +#Doctrine 2 +data/DoctrineORMModule/Proxy/ +data/DoctrineORMModule/cache/ + + # Legacy ZF1 demos/ extras/documentation From af4b2ae6f488f06e08944831e890a4cf291492e0 Mon Sep 17 00:00:00 2001 From: Dany Maillard Date: Wed, 4 Nov 2015 10:31:36 +0100 Subject: [PATCH 16/33] Update Prestashop.gitignore --- Prestashop.gitignore | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Prestashop.gitignore b/Prestashop.gitignore index 1e7a58d3..7c6ae1e3 100644 --- a/Prestashop.gitignore +++ b/Prestashop.gitignore @@ -7,7 +7,14 @@ config/settings.*.php # The following files are generated by PrestaShop. admin-dev/autoupgrade/ -/cache/* +/cache/ +!/cache/index.php +!/cache/cachefs/index.php +!/cache/purifier/index.php +!/cache/push/index.php +!/cache/sandbox/index.php +!/cache/smarty/index.php +!/cache/tcpdf/index.php config/xml/*.xml /log/* *sitemap.xml From 0022763f1493e247c69d4fe441b398cca23bc464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patr=C3=ADcio=20dos=20Santos?= Date: Fri, 20 Nov 2015 18:14:33 +0100 Subject: [PATCH 17/33] Update CakePHP.gitignore Ignore all tmp and log files but preserve the directory structure --- CakePHP.gitignore | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CakePHP.gitignore b/CakePHP.gitignore index 55a665e4..c6597e4e 100644 --- a/CakePHP.gitignore +++ b/CakePHP.gitignore @@ -2,8 +2,20 @@ /vendor/* /config/app.php -/tmp/* + +/tmp/cache/models/* +!/tmp/cache/models/empty +/tmp/cache/persistent/* +!/tmp/cache/persistent/empty +/tmp/cache/views/* +!/tmp/cache/views/empty +/tmp/sessions/* +!/tmp/sessions/empty +/tmp/tests/* +!/tmp/tests/empty + /logs/* +!/logs/empty # CakePHP 2 From f527652d3035f33ae7af96fddb88c933a67f6e31 Mon Sep 17 00:00:00 2001 From: Mateusz Kutyba Date: Thu, 3 Dec 2015 07:28:05 +0100 Subject: [PATCH 18/33] new files added in 1.9.2.x --- Magento.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Magento.gitignore b/Magento.gitignore index e2ea0133..882e3554 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -43,10 +43,13 @@ app/etc/local.xml.additional app/etc/local.xml.template app/etc/local.xml app/.htaccess +app/bootstrap.php app/locale/ app/Mage.php /cron.php cron.sh +dev/.htaccess +dev/tests/functional/ downloader/ errors/ favicon.ico @@ -105,6 +108,7 @@ pear/ php.ini.sample pkginfo/ RELEASE_NOTES.txt +shell/.htaccess shell/abstract.php shell/compiler.php shell/indexer.php From 2aa9f9215f0ba6a0886917d72555f02397da0d69 Mon Sep 17 00:00:00 2001 From: Mateusz Kutyba Date: Thu, 3 Dec 2015 07:28:27 +0100 Subject: [PATCH 19/33] simplified rules for media dir --- Magento.gitignore | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Magento.gitignore b/Magento.gitignore index 882e3554..7f220e9c 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -93,14 +93,7 @@ LICENSE.html LICENSE.txt LICENSE_EE* /mage -media/customer/ -media/dhl/ -media/downloadable/ -media/.htaccess -media/import/ -media/xmlconnect/ -media/catalog/product/cache/ -media/catalog/product/placeholder/default/ +media/ /api.php nbproject/ pear From 5552f5e36094a97b158481b32e8e624df55c7bf0 Mon Sep 17 00:00:00 2001 From: Mateusz Kutyba Date: Thu, 3 Dec 2015 07:29:12 +0100 Subject: [PATCH 20/33] simplified rules for Mage* module files --- Magento.gitignore | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/Magento.gitignore b/Magento.gitignore index 7f220e9c..30663f17 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -14,26 +14,7 @@ app/design/frontend/default/modern/ app/design/frontend/enterprise/default app/design/install/ app/etc/modules/Enterprise_* -app/etc/modules/Mage_All.xml -app/etc/modules/Mage_Api.xml -app/etc/modules/Mage_Api2.xml -app/etc/modules/Mage_Authorizenet.xml -app/etc/modules/Mage_Bundle.xml -app/etc/modules/Mage_Captcha.xml -app/etc/modules/Mage_Centinel.xml -app/etc/modules/Mage_Compiler.xml -app/etc/modules/Mage_ConfigurableSwatches.xml -app/etc/modules/Mage_Connect.xml -app/etc/modules/Mage_CurrencySymbol.xml -app/etc/modules/Mage_Downloadable.xml -app/etc/modules/Mage_ImportExport.xml -app/etc/modules/Mage_LoadTest.xml -app/etc/modules/Mage_Oauth.xml -app/etc/modules/Mage_PageCache.xml -app/etc/modules/Mage_Persistent.xml -app/etc/modules/Mage_Weee.xml -app/etc/modules/Mage_Widget.xml -app/etc/modules/Mage_XmlConnect.xml +app/etc/modules/Mage_*.xml app/etc/modules/Phoenix_Moneybookers.xml app/etc/modules/Cm_RedisSession.xml app/etc/applied.patches.list From 571118925dcd1db1952a8b0e71229e0b09548a0d Mon Sep 17 00:00:00 2001 From: Mateusz Kutyba Date: Thu, 3 Dec 2015 07:29:41 +0100 Subject: [PATCH 21/33] exclude only locale en_US --- Magento.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Magento.gitignore b/Magento.gitignore index 30663f17..236d81ce 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -25,7 +25,7 @@ app/etc/local.xml.template app/etc/local.xml app/.htaccess app/bootstrap.php -app/locale/ +app/locale/en_US/ app/Mage.php /cron.php cron.sh From b6e56775b5ea1dda9f5d77411cb5ecd6a113eaba Mon Sep 17 00:00:00 2001 From: Mateusz Kutyba Date: Thu, 3 Dec 2015 07:30:11 +0100 Subject: [PATCH 22/33] exclude only community code that is shipped with Magento --- Magento.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Magento.gitignore b/Magento.gitignore index 236d81ce..195c9b7a 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -1,8 +1,8 @@ .htaccess.sample .modgit/ .modman/ -app/code/community/Phoenix/ -app/code/community/Cm/ +app/code/community/Phoenix/Moneybookers/ +app/code/community/Cm/RedisSession/ app/code/core/ app/design/adminhtml/default/default/ app/design/frontend/base/ From 9d02ed63c91c605c03a2c999812ad554d97ec14a Mon Sep 17 00:00:00 2001 From: rlee287 Date: Fri, 18 Dec 2015 08:27:49 +1030 Subject: [PATCH 23/33] Added Eclipse Recommenders to Eclipse gitignore --- Global/Eclipse.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 880dd928..90d0cbc0 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -10,6 +10,7 @@ tmp/ local.properties .settings/ .loadpath +.recommenders # Eclipse Core .project From 413049c2830df7ec05fcad6a991e7c616b2c0377 Mon Sep 17 00:00:00 2001 From: Etienne Bazin Date: Fri, 19 Feb 2016 10:12:44 +0100 Subject: [PATCH 24/33] add .projectile file to emacs .gitignore --- Global/Emacs.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index 43632ff1..e2f51c0b 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -36,3 +36,6 @@ flycheck_*.el # server auth directory /server/ + +# projectiles files +.projectile \ No newline at end of file From 504f444dfa447e39e0205d3db784e31c2698b397 Mon Sep 17 00:00:00 2001 From: Mario Guenterberg Date: Mon, 22 Feb 2016 17:50:16 +0100 Subject: [PATCH 25/33] Update Vim.gitignore Added auto-generated tag files. --- Global/Vim.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/Vim.gitignore b/Global/Vim.gitignore index 1099aaab..bdc04a0b 100644 --- a/Global/Vim.gitignore +++ b/Global/Vim.gitignore @@ -6,3 +6,5 @@ Session.vim # temporary .netrwhist *~ +# auto-generated tag files +tags From 2141c823b44d181824dc045e4cd62ed481a5adef Mon Sep 17 00:00:00 2001 From: Raman Gupta Date: Thu, 25 Feb 2016 11:57:01 -0500 Subject: [PATCH 26/33] Update Jetbrains .gitignore dataSources.local.xml --- Global/JetBrains.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index b9ed92cb..ea83a5eb 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -11,6 +11,7 @@ # Sensitive or high-churn files: .idea/dataSources.ids .idea/dataSources.xml +.idea/dataSources.local.xml .idea/sqlDataSources.xml .idea/dynamic.xml .idea/uiDesigner.xml From 221f974e808184253f9bb3ac87668943d97ced7f Mon Sep 17 00:00:00 2001 From: aaron caito Date: Fri, 26 Feb 2016 11:54:57 -0500 Subject: [PATCH 27/33] adding terraform state files --- Terraform.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Terraform.gitignore diff --git a/Terraform.gitignore b/Terraform.gitignore new file mode 100644 index 00000000..7868d16d --- /dev/null +++ b/Terraform.gitignore @@ -0,0 +1,3 @@ +# Compiled files +*.tfstate +*.tfstate.backup From 9b890f90e9ce58023d733d9525b60781df6973e4 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 27 Feb 2016 12:48:40 +1100 Subject: [PATCH 28/33] adding a template to help streamline review process --- .github/PULL_REQUEST_TEMPLATE.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..058f0144 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,11 @@ +**Reasons for making this change:** + +_TODO_ + +**Links to documentation supporting these rule changes:** + +_TODO_ + +If this is a new template: + + - **Link to application or project’s homepage**: _TODO_ From b37d30f19455382cb18fa0d32745686ece52a704 Mon Sep 17 00:00:00 2001 From: roll Date: Sun, 28 Feb 2016 19:57:21 +0300 Subject: [PATCH 29/33] added dotenv to python gitignore --- Python.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index cf332868..9a4bb620 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -68,3 +68,5 @@ target/ # pyenv .python-version +# dotenv +.env From b2bacc5184025503d99072486a4be4a0a8e5f300 Mon Sep 17 00:00:00 2001 From: Aaron Holmes Date: Fri, 4 Mar 2016 13:07:34 -0800 Subject: [PATCH 30/33] Remote ApplicationInsights.config from VisualStudio.gitignore Commit a25589c92187674f68dcfafe8433e0c1e6069159 introduced an ignore line for ApplicationInsights.config. This change breaks builds on certain systems, namely VSTS. The current ASP.NET 4 template adds ApplicationInsights.config to the project's .csproj file. When VSTS attempts to build the project, it will fail if it cannot find ApplicationInsights.config. ApplicationInsights.config is a required application file and should not be ignored. --- VisualStudio.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 6d3b6e5d..ef007c15 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -163,9 +163,6 @@ csx/ ecf/ rcf/ -# Microsoft Azure ApplicationInsights config file -ApplicationInsights.config - # Windows Store app package directories and files AppPackages/ BundleArtifacts/ From 49a480951e1811445fcd8f0514025e3b3cf2b18a Mon Sep 17 00:00:00 2001 From: hippo91 Date: Sun, 6 Mar 2016 12:30:45 +0100 Subject: [PATCH 31/33] No need to push .spyderproject file in a python project --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 100efbcf..4f823c47 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -73,3 +73,6 @@ target/ # dotenv .env + +# Spyder project settings +.spyderproject From 17a0db246681594e4d6d47e3aa5e2c6b216f3471 Mon Sep 17 00:00:00 2001 From: Martin d'Allens Date: Fri, 18 Dec 2015 19:07:50 +0100 Subject: [PATCH 32/33] KiCAD: ignore more temp files and generated data --- KiCad.gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/KiCad.gitignore b/KiCad.gitignore index 24cddf9b..1b3bb8d9 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -5,9 +5,19 @@ *.bak *.bck *.kicad_pcb-bak +*~ +_autosave-* +*.tmp # Netlist files (exported from Eeschema) *.net # Autorouter files (exported from Pcbnew) .dsn + +# Exported BOM files +*.xml +*.csv + +# Other system files +.DS_Store From 4db34a4cb9d2d88f28adede8a42b8c20610b0c7a Mon Sep 17 00:00:00 2001 From: Martin d'Allens Date: Sun, 6 Mar 2016 17:20:41 +0100 Subject: [PATCH 33/33] Remove OSX specific rule --- KiCad.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/KiCad.gitignore b/KiCad.gitignore index 1b3bb8d9..606ed1c7 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -18,6 +18,3 @@ _autosave-* # Exported BOM files *.xml *.csv - -# Other system files -.DS_Store