aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbhishek Kumar Singh <abhishek4bhopati@gmail.com>2016-03-07 11:51:09 +0530
committerAbhishek Kumar Singh <abhishek4bhopati@gmail.com>2016-03-07 11:51:09 +0530
commit83656adb097d1e5fb674918287c2af3459ed7fce (patch)
tree5b72a8087a79fa8c35edd8f68efdfbedb0ec2bc9
parenta623e9e6d4a52163b705826ff27e7999159a47e1 (diff)
parent028ed4e1b12b21c533be67180b6aefbbba072717 (diff)
downloadgitignore-83656adb097d1e5fb674918287c2af3459ed7fce.tar.gz
gitignore-83656adb097d1e5fb674918287c2af3459ed7fce.zip
Merge branch 'master' of github.com:github/gitignore into patch-1
Conflicts: Python.gitignore
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md11
-rw-r--r--CakePHP.gitignore14
-rw-r--r--Concrete5.gitignore1
-rw-r--r--FuelPHP.gitignore23
-rw-r--r--Global/CVS.gitignore2
-rw-r--r--Global/Dreamweaver.gitignore4
-rw-r--r--Global/Dropbox.gitignore4
-rw-r--r--Global/Eclipse.gitignore1
-rw-r--r--Global/Emacs.gitignore3
-rw-r--r--Global/JetBrains.gitignore1
-rw-r--r--Global/Vim.gitignore2
-rw-r--r--KiCad.gitignore7
-rw-r--r--Magento.gitignore40
-rw-r--r--Objective-C.gitignore3
-rw-r--r--Prestashop.gitignore9
-rw-r--r--Python.gitignore9
-rw-r--r--R.gitignore6
-rw-r--r--Scheme.gitignore7
-rw-r--r--Smalltalk.gitignore18
-rw-r--r--Swift.gitignore3
-rw-r--r--Symfony.gitignore3
-rw-r--r--Terraform.gitignore3
-rw-r--r--VisualStudio.gitignore3
-rw-r--r--WordPress.gitignore8
-rw-r--r--ZendFramework.gitignore5
25 files changed, 143 insertions, 47 deletions
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_
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
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
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
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
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
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
diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore
index 53236b63..31c9fb31 100644
--- a/Global/Eclipse.gitignore
+++ b/Global/Eclipse.gitignore
@@ -9,6 +9,7 @@ tmp/
local.properties
.settings/
.loadpath
+.recommenders
# Eclipse Core
.project
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
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
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
diff --git a/KiCad.gitignore b/KiCad.gitignore
index 24cddf9b..606ed1c7 100644
--- a/KiCad.gitignore
+++ b/KiCad.gitignore
@@ -5,9 +5,16 @@
*.bak
*.bck
*.kicad_pcb-bak
+*~
+_autosave-*
+*.tmp
# Netlist files (exported from Eeschema)
*.net
# Autorouter files (exported from Pcbnew)
.dsn
+
+# Exported BOM files
+*.xml
+*.csv
diff --git a/Magento.gitignore b/Magento.gitignore
index e2ea0133..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/
@@ -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
@@ -43,10 +24,13 @@ app/etc/local.xml.additional
app/etc/local.xml.template
app/etc/local.xml
app/.htaccess
-app/locale/
+app/bootstrap.php
+app/locale/en_US/
app/Mage.php
/cron.php
cron.sh
+dev/.htaccess
+dev/tests/functional/
downloader/
errors/
favicon.ico
@@ -90,14 +74,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
@@ -105,6 +82,7 @@ pear/
php.ini.sample
pkginfo/
RELEASE_NOTES.txt
+shell/.htaccess
shell/abstract.php
shell/compiler.php
shell/indexer.php
diff --git a/Objective-C.gitignore b/Objective-C.gitignore
index 08b55ac6..1201b5de 100644
--- a/Objective-C.gitignore
+++ b/Objective-C.gitignore
@@ -19,8 +19,7 @@ xcuserdata/
## Other
*.moved-aside
-*.xccheckout
-*.xcscmblueprint
+*.xcuserstate
## Obj-C/Swift specific
*.hmap
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
diff --git a/Python.gitignore b/Python.gitignore
index 59678313..908a064b 100644
--- a/Python.gitignore
+++ b/Python.gitignore
@@ -56,6 +56,9 @@ local_settings.py
# Flask instance folder
instance/
+# Scrapy stuff:
+.scrapy
+
# Sphinx documentation
docs/_build/
@@ -70,3 +73,9 @@ target/
# celery beat schedule file
celerybeat-schedule
+
+# dotenv
+.env
+
+# Spyder project settings
+.spyderproject
diff --git a/R.gitignore b/R.gitignore
index 8eff68f7..60e037a8 100644
--- a/R.gitignore
+++ b/R.gitignore
@@ -8,6 +8,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/
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
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
diff --git a/Swift.gitignore b/Swift.gitignore
index 9724b3c6..aa5b516c 100644
--- a/Swift.gitignore
+++ b/Swift.gitignore
@@ -19,8 +19,7 @@ xcuserdata/
## Other
*.moved-aside
-*.xccheckout
-*.xcscmblueprint
+*.xcuserstate
## Obj-C/Swift specific
*.hmap
diff --git a/Symfony.gitignore b/Symfony.gitignore
index 6fac1be4..371e48fe 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/*
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
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/
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
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