From 66a13f2e1591e1ef3626c3dabe2d4c18d3f6b732 Mon Sep 17 00:00:00 2001 From: Jota Junior Date: Tue, 12 Nov 2013 19:36:17 -0200 Subject: [PATCH 01/46] Gitignore file for Phalcon Framework, a fast-growing framework developed in C for PHP. Excluding here: - Cache files - Development config files More information available in phalconphp.com --- Phalcon.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Phalcon.gitignore diff --git a/Phalcon.gitignore b/Phalcon.gitignore new file mode 100644 index 00000000..1cfc0c9d --- /dev/null +++ b/Phalcon.gitignore @@ -0,0 +1,2 @@ +*/cache/* +*/config/development/* From 8f2db01f1d12df0f6d426c85aef1dc1cb1749350 Mon Sep 17 00:00:00 2001 From: Jota Junior Date: Mon, 2 Dec 2013 19:15:00 -0200 Subject: [PATCH 02/46] Remove astherisk before trailing slash --- Phalcon.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Phalcon.gitignore b/Phalcon.gitignore index 1cfc0c9d..5eab0c56 100644 --- a/Phalcon.gitignore +++ b/Phalcon.gitignore @@ -1,2 +1,2 @@ -*/cache/* -*/config/development/* +/cache/* +/config/development/* From d79a88b29f279d9b6614f790d1d2217350777b46 Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Thu, 2 Jan 2014 20:02:57 -0500 Subject: [PATCH 03/46] Refactor Node.gitignore with comments The "build" directory is lost in this refactor, as many JS projects do wish to include a minified/concatenated version of their source in the "build" folder in source control. --- Node.gitignore | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index c84ba258..31237481 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -1,15 +1,28 @@ -lib-cov -*.seed +# Semi-general patterns + +## Logs +logs *.log + +## Runtime data +pids +*.pid +*.seed + +## Run / build output +results *.csv *.dat *.out -*.pid *.gz -pids -logs -results -build +# JS-specific patterns +## Directory for files generated by jscoverage/JSCover +lib-cov + +# Node-specific patterns + +## You may want to comment this out in certain scenarios: +## see http://www.futurealoof.com/posts/nodemodules-in-git.html node_modules From 935e9b456077ad38e681aac78bfbe4dfbc2c1c13 Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Tue, 7 Jan 2014 01:37:13 -0800 Subject: [PATCH 04/46] Clarify node_modules comment Now linking to the official npm FAQ entry (with tl;dr) rather than straight to mikeal's blog post --- Node.gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index 31237481..565755e9 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -23,6 +23,7 @@ lib-cov # Node-specific patterns -## You may want to comment this out in certain scenarios: -## see http://www.futurealoof.com/posts/nodemodules-in-git.html +## Dependency directory +## Deployed apps should consider commenting this line out: +## see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git node_modules From b0440f97cc6660181cb014f4c994a9868774106b Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Tue, 7 Jan 2014 01:49:40 -0800 Subject: [PATCH 05/46] Add build/Release to Node gitignore This re-covers the http://nodejs.org/api/addons.html case for which the "build" directory was added in 00686415c4, but doesn't break cross-environment projects that use the build directory for including concatenated/minified source. Mazel tov! --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index 565755e9..f23872f6 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -23,6 +23,9 @@ lib-cov # Node-specific patterns +## Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + ## Dependency directory ## Deployed apps should consider commenting this line out: ## see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git From 8845a345c0d325b2cdd33c5b10b7cacb3a152cea Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Tue, 7 Jan 2014 02:27:32 -0800 Subject: [PATCH 06/46] Add `coverage` directory, rename coverage heading --- Node.gitignore | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index f23872f6..faa648a6 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -16,11 +16,14 @@ results *.out *.gz -# JS-specific patterns +# Code coverage patterns -## Directory for files generated by jscoverage/JSCover +## Directory for coverage-hooked libs generated by jscoverage/JSCover lib-cov +## Coverage directory used by tools like istanbul +coverage + # Node-specific patterns ## Compiled binary addons (http://nodejs.org/api/addons.html) From bdf8aec8f9844efc53910fea78db69370d1533a3 Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Tue, 7 Jan 2014 02:33:15 -0800 Subject: [PATCH 07/46] Add .grunt directory --- Node.gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index faa648a6..f391c619 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -24,7 +24,12 @@ lib-cov ## Coverage directory used by tools like istanbul coverage -# Node-specific patterns +# Other popular tool patterns + +## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# NodeJS patterns ## Compiled binary addons (http://nodejs.org/api/addons.html) build/Release From f3f11fb2f1e77eb4ec22bf933239830090ff933e Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Tue, 7 Jan 2014 02:52:27 -0800 Subject: [PATCH 08/46] Node.gitignore: correct term for instrumentation --- Node.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index f391c619..d5003b93 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -18,7 +18,7 @@ results # Code coverage patterns -## Directory for coverage-hooked libs generated by jscoverage/JSCover +## Directory for instrumented libs generated by jscoverage/JSCover lib-cov ## Coverage directory used by tools like istanbul From 503bde5d249374a35ea9296ba707af66b03451db Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Wed, 12 Feb 2014 22:09:34 +1100 Subject: [PATCH 09/46] Merge Sass and Compass templates --- Global/SASS.gitignore | 2 -- Compass.gitignore => Sass.gitignore | 0 2 files changed, 2 deletions(-) delete mode 100644 Global/SASS.gitignore rename Compass.gitignore => Sass.gitignore (100%) diff --git a/Global/SASS.gitignore b/Global/SASS.gitignore deleted file mode 100644 index c1df001e..00000000 --- a/Global/SASS.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -### Sass Ignores - "Sassy CSS" http://sass-lang.com/ -*.sass-cache diff --git a/Compass.gitignore b/Sass.gitignore similarity index 100% rename from Compass.gitignore rename to Sass.gitignore From 553033ff2f89c1fcb4cad90dfef15c614ca7324f Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Wed, 12 Feb 2014 22:09:54 +1100 Subject: [PATCH 10/46] Remove old sass-cache rule for Rails --- Rails.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/Rails.gitignore b/Rails.gitignore index 56454403..1a2c94dc 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -1,6 +1,4 @@ *.rbc -*.sassc -.sass-cache capybara-*.html .rspec /log From b83dd2fb1eb01437bc8d61b1a5d062e2c376a59f Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Sun, 23 Feb 2014 19:22:13 -0500 Subject: [PATCH 11/46] Ignore signed pom files in leiningen projects Pom files are commonly signed before deploy as part of the build/signoff process --- Leiningen.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Leiningen.gitignore b/Leiningen.gitignore index b8d32453..4076612d 100644 --- a/Leiningen.gitignore +++ b/Leiningen.gitignore @@ -1,4 +1,5 @@ pom.xml +pom.xml.asc *jar /lib/ /classes/ From e5128246c5d67289c4e6932fb85d062ae74d6dd4 Mon Sep 17 00:00:00 2001 From: Louis M Date: Mon, 24 Feb 2014 10:19:00 -0500 Subject: [PATCH 12/46] Adding the EiffelStudio .gitingore file. --- EiffelStudio.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 EiffelStudio.gitignore diff --git a/EiffelStudio.gitignore b/EiffelStudio.gitignore new file mode 100644 index 00000000..a7ba35f8 --- /dev/null +++ b/EiffelStudio.gitignore @@ -0,0 +1,2 @@ +# The compilation directoy +EIFGENs From d61f35aa62b19c162901021dbd49d6f924aa4926 Mon Sep 17 00:00:00 2001 From: Mike Manger Date: Tue, 25 Feb 2014 11:47:19 +0000 Subject: [PATCH 13/46] Ignore log of applied patches Magento keeps a log of official patches applied in this file. --- Magento.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Magento.gitignore b/Magento.gitignore index db650756..3309871b 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -35,6 +35,7 @@ app/etc/modules/Mage_Widget.xml app/etc/modules/Mage_XmlConnect.xml app/etc/modules/Phoenix_Moneybookers.xml app/etc/modules/Cm_RedisSession.xml +app/etc/applied.patches.list app/etc/config.xml app/etc/enterprise.xml app/etc/local.xml.additional From 1f8466164330277fc8c9126ded3cc207ff3baf91 Mon Sep 17 00:00:00 2001 From: Tim Grilley Date: Thu, 27 Feb 2014 06:45:11 -0600 Subject: [PATCH 14/46] R.gitignore - Added .Rdata files --- R.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/R.gitignore b/R.gitignore index a0fd3b34..9a1509d5 100644 --- a/R.gitignore +++ b/R.gitignore @@ -3,3 +3,6 @@ # Example code in package build process *-Ex.R + +# R data files from past sessions +.Rdata From bc403c8675cc9b38d215998b50c0eae57a8aa5df Mon Sep 17 00:00:00 2001 From: Tim Grilley Date: Thu, 27 Feb 2014 07:06:43 -0600 Subject: [PATCH 15/46] TeX.gitignore - Updated to include ignores for intermediate sagetex and sympytex files --- TeX.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index f19b71f3..ee1e9f17 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -77,3 +77,14 @@ # xindy *.xdy + +# sagetex +*.sagetex.sage +*.sagetex.py +*.sagetex.scmd + +# sympy +*.sout +*.sympy +sympy-plots-for-*.tex/ + From 5efebe2ef3ad0709f299d95ce2f0cc766253921e Mon Sep 17 00:00:00 2001 From: James Chambers Date: Thu, 27 Feb 2014 14:12:05 -0500 Subject: [PATCH 16/46] Enable Ignore of NuGet Packages Folder By Default Submitting this for consideration. The first thing that I do on every new project is to go in and uncomment the packages folder. With the prevalence of NuGet and prominence of its use in the Visual Studio environment, along with how well package restore *just works* now, I believe this should be the default. While I understand that package restore isn't on by default, I would argue that the types of developers using NuGet _and_ a distributed SCM are the types of developers that would omit the binaries from source control. --- VisualStudio.gitignore => IgnorePackages | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename VisualStudio.gitignore => IgnorePackages (93%) diff --git a/VisualStudio.gitignore b/IgnorePackages similarity index 93% rename from VisualStudio.gitignore rename to IgnorePackages index 2518b002..d5ab3bec 100644 --- a/VisualStudio.gitignore +++ b/IgnorePackages @@ -123,9 +123,8 @@ publish/ *.azurePubxml # NuGet Packages Directory -## TODO: If you have NuGet Package Restore enabled, uncomment the next line -#packages/* -## TODO: If the tool you use requires repositories.config, also uncomment the next line +packages/* +## TODO: If the tool you use requires repositories.config uncomment the next line #!packages/repositories.config # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets From 3bb4e51184066f5cf60daa029c31e7f52398353b Mon Sep 17 00:00:00 2001 From: Ricky Elrod Date: Mon, 24 Feb 2014 03:07:48 -0500 Subject: [PATCH 17/46] Fix typo in haskell gitignore --- Haskell.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Haskell.gitignore b/Haskell.gitignore index cc143076..01e585ae 100644 --- a/Haskell.gitignore +++ b/Haskell.gitignore @@ -4,7 +4,7 @@ cabal-dev *.hi *.chi *.chs.h -.virthualenv +.virtualenv .hsenv .cabal-sandbox/ cabal.sandbox.config From 8ff2f7af0f1f7cbdc39728decb3148811b5e4d48 Mon Sep 17 00:00:00 2001 From: "Zhishen (Jason) Wen" Date: Thu, 27 Feb 2014 21:27:21 -0500 Subject: [PATCH 18/46] Update Leiningen.gitignore --- Leiningen.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Leiningen.gitignore b/Leiningen.gitignore index b8d32453..59b0e5ce 100644 --- a/Leiningen.gitignore +++ b/Leiningen.gitignore @@ -3,6 +3,8 @@ pom.xml /lib/ /classes/ /target/ +/checkouts/ .lein-deps-sum .lein-repl-history .lein-plugins/ +.lein-failures From 009b474870b4f5735d68807549ba3ba5a7adb1fa Mon Sep 17 00:00:00 2001 From: Louis M Date: Thu, 27 Feb 2014 21:41:28 -0500 Subject: [PATCH 19/46] Move the EiffelStudio.gitignore in the Global directory --- EiffelStudio.gitignore => Global/EiffelStudio.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename EiffelStudio.gitignore => Global/EiffelStudio.gitignore (100%) diff --git a/EiffelStudio.gitignore b/Global/EiffelStudio.gitignore similarity index 100% rename from EiffelStudio.gitignore rename to Global/EiffelStudio.gitignore From fef9e2d85d14b379f5d144451cf1d447cfdd46de Mon Sep 17 00:00:00 2001 From: Ricky Elrod Date: Mon, 24 Feb 2014 03:07:24 -0500 Subject: [PATCH 20/46] Add an Idris gitignore --- Idris.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Idris.gitignore diff --git a/Idris.gitignore b/Idris.gitignore new file mode 100644 index 00000000..c28bc7cc --- /dev/null +++ b/Idris.gitignore @@ -0,0 +1,2 @@ +*.ibc +*.o From 13c119f167ad522109bc8c378a5abc4ebfccb5d4 Mon Sep 17 00:00:00 2001 From: Dennis Xiloj Date: Fri, 28 Feb 2014 00:26:43 -0600 Subject: [PATCH 21/46] Added ignore for directory config under KDE Dolphin, the KDE file manager, writes specific directory configuration in .directory files. --- Global/Linux.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index b25c15b8..9911632b 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -1 +1,4 @@ *~ + +# KDE directory preferences +.directory From 937523ae5082e8232968665c844dd63c5ee6846c Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Fri, 28 Feb 2014 11:34:11 -0500 Subject: [PATCH 22/46] Reduce comments --- Node.gitignore | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index d5003b93..3a73dd6c 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -1,40 +1,32 @@ -# Semi-general patterns - -## Logs +# Logs logs *.log -## Runtime data +# Runtime data pids *.pid *.seed -## Run / build output +# Run / build output results *.csv *.dat *.out *.gz -# Code coverage patterns - -## Directory for instrumented libs generated by jscoverage/JSCover +# Directory for instrumented libs generated by jscoverage/JSCover lib-cov -## Coverage directory used by tools like istanbul +# Coverage directory used by tools like istanbul coverage -# Other popular tool patterns - -## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) .grunt -# NodeJS patterns - -## Compiled binary addons (http://nodejs.org/api/addons.html) +# Compiled binary addons (http://nodejs.org/api/addons.html) build/Release -## Dependency directory -## Deployed apps should consider commenting this line out: -## see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git +# Dependency directory +# Deployed apps should consider commenting this line out: +# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git node_modules From b27768efcd8d8964646495b947246c0201b5abf4 Mon Sep 17 00:00:00 2001 From: Tim Grilley Date: Fri, 28 Feb 2014 11:16:13 -0600 Subject: [PATCH 23/46] Update TeX.gitignore to be in alphabetical order --- TeX.gitignore | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/TeX.gitignore b/TeX.gitignore index ee1e9f17..24052950 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -72,12 +72,6 @@ # nomencl *.nlo -# todonotes -*.tdo - -# xindy -*.xdy - # sagetex *.sagetex.sage *.sagetex.py @@ -88,3 +82,10 @@ *.sympy sympy-plots-for-*.tex/ +# todonotes +*.tdo + +# xindy +*.xdy + + From 6b8815dc43248ad8759e975973adc96dda900506 Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Fri, 28 Feb 2014 12:46:45 -0800 Subject: [PATCH 24/46] Remove Results classes from Node gitignore These aren't really common patterns in the Node world, and if a Node project includes one of these types as files, they're as likely to want to include them in the project as not (`*.csv` is as likely to be a data source as `*.json`). --- Node.gitignore | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index 3a73dd6c..da23d0d4 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -7,13 +7,6 @@ pids *.pid *.seed -# Run / build output -results -*.csv -*.dat -*.out -*.gz - # Directory for instrumented libs generated by jscoverage/JSCover lib-cov From 36e07e8b2df830bf8cb3a61de4843d98c4ae7f36 Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Fri, 28 Feb 2014 12:51:18 -0800 Subject: [PATCH 25/46] Fix comments in Dart.gitignore .gitignore uses `#` for comments, not `//` --- Dart.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index 2914c1be..602616ce 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,11 +1,11 @@ -// Don’t commit the following files and directories created by pub and dart2js +# Don’t commit the following files and directories created by pub and dart2js packages/ *.js_ *.js.deps *.js.map -// Include when developing application packages +# Include when developing application packages pubspec.lock -// Avoid committing generated JavaScript files +# Avoid committing generated JavaScript files *.dart.js From b7ccf8bf8ab1c4f85af93c7579b5d7b51d11cd8a Mon Sep 17 00:00:00 2001 From: Steve Ziuchkovski Date: Fri, 28 Feb 2014 16:14:58 -0500 Subject: [PATCH 26/46] Rename IgnorePackages back to VisualStudio.gitignore. --- IgnorePackages => VisualStudio.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename IgnorePackages => VisualStudio.gitignore (100%) diff --git a/IgnorePackages b/VisualStudio.gitignore similarity index 100% rename from IgnorePackages rename to VisualStudio.gitignore From ef567cb6a6dae9eae20a98017e874dc04253dbad Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sun, 2 Mar 2014 12:30:20 +1100 Subject: [PATCH 27/46] Remove Windows OS rules from VS template --- VisualStudio.gitignore | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d5ab3bec..699a3fc6 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -172,17 +172,3 @@ UpgradeLog*.htm # Microsoft Fakes FakesAssemblies/ - -# ========================= -# Windows detritus -# ========================= - -# Windows image file caches -Thumbs.db -ehthumbs.db - -# Folder config file -Desktop.ini - -# Recycle Bin used on file shares -$RECYCLE.BIN/ From 0df8ab0dcfc7d9d192d0184831b6a935cd72d458 Mon Sep 17 00:00:00 2001 From: hugovk Date: Thu, 6 Mar 2014 10:07:26 +0200 Subject: [PATCH 28/46] Ignore coverage results coverage.py creates HTML reports in the htmlcov directory (this tool can also be used with coveralls.io) http://nedbatchelder.com/code/coverage/ https://pypi.python.org/pypi/coverage --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 76f2a469..51cbe852 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -27,6 +27,7 @@ pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports +htmlcov/ .tox/ .coverage .cache From 0fb0fbefa5fcd62ea5b6fe0f433588df270dcd71 Mon Sep 17 00:00:00 2001 From: Ashic Mahtab Date: Thu, 6 Mar 2014 11:25:15 +0000 Subject: [PATCH 29/46] Packages folder is ignored correctly --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d5ab3bec..55f58a11 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -123,7 +123,7 @@ publish/ *.azurePubxml # NuGet Packages Directory -packages/* +packages/ ## TODO: If the tool you use requires repositories.config uncomment the next line #!packages/repositories.config From 41feebfbd00aaa62074a94f49e989ce2b7ccc07e Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Fri, 7 Mar 2014 00:15:40 +1100 Subject: [PATCH 30/46] Merge RubyMotion into Ruby --- Ruby.gitignore | 5 +++++ RubyMotion.gitignore | 20 -------------------- 2 files changed, 5 insertions(+), 20 deletions(-) delete mode 100644 RubyMotion.gitignore diff --git a/Ruby.gitignore b/Ruby.gitignore index 99e72c12..f2c13607 100644 --- a/Ruby.gitignore +++ b/Ruby.gitignore @@ -9,6 +9,11 @@ /test/version_tmp/ /tmp/ +## Specific to RubyMotion: +.dat* +.repl_history +build/ + ## Documentation cache and generated files: /.yardoc/ /_yardoc/ diff --git a/RubyMotion.gitignore b/RubyMotion.gitignore deleted file mode 100644 index 7e395179..00000000 --- a/RubyMotion.gitignore +++ /dev/null @@ -1,20 +0,0 @@ -.dat* -.repl_history -build/ -tags - -# Editor files -.DS_Store -nbproject -.redcar -*.swp -*.swo -~ -.eprj -vendor/Pods -*.nib - -# YARD artifacts -.yardoc -_yardoc -doc/ From 1446bd004483542cc2e003cd446718518cd3c8d0 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Fri, 7 Mar 2014 00:20:51 +1100 Subject: [PATCH 31/46] Remove OSX-specific rule from ObjectiveC template --- Objective-C.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index d0ce7de7..ecb86fa7 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -1,6 +1,3 @@ -# OS X -.DS_Store - # Xcode build/ *.pbxuser From b0171ff71b7c850b3e8420bb306faf70fb05e84e Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Fri, 7 Mar 2014 00:23:40 +1100 Subject: [PATCH 32/46] Remove global rules from Chef template --- ChefCookbook.gitignore | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ChefCookbook.gitignore b/ChefCookbook.gitignore index 351201e0..91de88b4 100644 --- a/ChefCookbook.gitignore +++ b/ChefCookbook.gitignore @@ -1,11 +1,5 @@ .vagrant Berksfile.lock -*~ -*# -.#* -\#*# -.*.sw[a-z] -*.un~ /cookbooks # Bundler From ee86c8443ac00525b836e3fee763c693be715ea8 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Fri, 7 Mar 2014 00:24:00 +1100 Subject: [PATCH 33/46] Remove lockfiles from Chef template --- ChefCookbook.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/ChefCookbook.gitignore b/ChefCookbook.gitignore index 91de88b4..5ee7b7a9 100644 --- a/ChefCookbook.gitignore +++ b/ChefCookbook.gitignore @@ -1,9 +1,7 @@ .vagrant -Berksfile.lock /cookbooks # Bundler -Gemfile.lock bin/* .bundle/* From b3b6865ad3098c01d9ae69aae62146fd7256715b Mon Sep 17 00:00:00 2001 From: ssinss Date: Fri, 7 Mar 2014 00:10:38 +0900 Subject: [PATCH 34/46] Update JetBrains.gitignore --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 47e551f5..b530788b 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,4 +1,4 @@ -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm ## Directory-based project format .idea/ From 9280c7e3319685f55e92c311078cf9fb44776f01 Mon Sep 17 00:00:00 2001 From: chirag sanghavi Date: Fri, 7 Mar 2014 17:27:59 -0500 Subject: [PATCH 35/46] removed duplicate --- Global/webMethods.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/webMethods.gitignore b/Global/webMethods.gitignore index 6c9abb26..b383c25c 100644 --- a/Global/webMethods.gitignore +++ b/Global/webMethods.gitignore @@ -1,4 +1,3 @@ -**/IntegrationServer/lib/ **/IntegrationServer/datastore/ **/IntegrationServer/db/ **/IntegrationServer/DocumentStore/ From e8d7cafc16053ef564fd2e9e16e63c73c8fade76 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Sat, 8 Mar 2014 00:45:00 -0800 Subject: [PATCH 36/46] Update Dart.gitignore - add the `build/` directory to the .gitignore list (now created by pub). - add the `.dart.precompiled.js` files (created by dart2js) to the ignore list. And, sort and re-order the file. --- Dart.gitignore | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index 602616ce..74a3439f 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,11 +1,13 @@ -# Don’t commit the following files and directories created by pub and dart2js +# Don’t commit the following directories created by pub. +build/ packages/ + +# Or the files created by dart2js. +*.dart.js +*.dart.precompiled.js *.js_ *.js.deps *.js.map -# Include when developing application packages +# Include when developing application packages. pubspec.lock - -# Avoid committing generated JavaScript files -*.dart.js From 2fcafd7140770b8dc623e10d26480eea54994eff Mon Sep 17 00:00:00 2001 From: Takahiro OKUMURA Date: Sun, 9 Mar 2014 14:35:00 +0900 Subject: [PATCH 37/46] Add a support for packer http://www.packer.io/ --- Packer.gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Packer.gitignore diff --git a/Packer.gitignore b/Packer.gitignore new file mode 100644 index 00000000..1b7a03ef --- /dev/null +++ b/Packer.gitignore @@ -0,0 +1,5 @@ +# Cache objects +packer_cache/ + +# For built boxes +*.box From 7609a2eb31b0821dc025ad0159289056c284c115 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Thu, 13 Mar 2014 09:28:13 +0000 Subject: [PATCH 38/46] [Objective-C] Remove CocoaPods ignores We shouldn't be ignoring these, it's down to the user and we shouldn't enforce them to ignore the `Pods/` directory http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control? --- Objective-C.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index ecb86fa7..f0550a51 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -15,6 +15,3 @@ profile DerivedData *.hmap *.ipa - -# CocoaPods -Pods From b1c89277877bee64d08e99ba86f63dbdd077cc24 Mon Sep 17 00:00:00 2001 From: Dmitry Teslitsky Date: Sat, 15 Mar 2014 22:46:14 +0200 Subject: [PATCH 39/46] Create OpenCart.gitignore Ignore OpenCart config files, images, cache and logs. --- OpenCart.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 OpenCart.gitignore diff --git a/OpenCart.gitignore b/OpenCart.gitignore new file mode 100644 index 00000000..f3179125 --- /dev/null +++ b/OpenCart.gitignore @@ -0,0 +1,7 @@ +.htaccess +config.php +download/ +image/data/ +image/cache/ +system/cache/ +system/logs/ From f96f48347de8511600787512efcf647ee4b49fde Mon Sep 17 00:00:00 2001 From: John Munkhoff Date: Sun, 16 Mar 2014 23:04:52 -0700 Subject: [PATCH 40/46] Update Qt.gitignore - Ignore '*.moc' files (foo.moc created when foo.cpp contains a Q_OBJECT.) - Ignore '/.qmake.cache' and '/.qmake.stash' as does the official Qt Creator project. --- Qt.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Qt.gitignore b/Qt.gitignore index 29d98c9e..623e5fea 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -12,8 +12,11 @@ # Qt-es +/.qmake.cache +/.qmake.stash *.pro.user *.pro.user.* +*.moc moc_*.cpp qrc_*.cpp ui_*.h From a3fbb9bd29a03bcf0ae0dd50c6e7a9e3d72299da Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Tue, 18 Mar 2014 15:40:11 +0000 Subject: [PATCH 41/46] [Objective-C] Add a note about CocoaPod's Pods/ --- Objective-C.gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index f0550a51..fd2593dd 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -15,3 +15,12 @@ profile DerivedData *.hmap *.ipa + +# CocoaPods +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control? +# +# Pods/ + From a65b95938c393e509fd5f8cda63d094c43828947 Mon Sep 17 00:00:00 2001 From: John Munkhoff Date: Tue, 18 Mar 2014 16:21:03 -0700 Subject: [PATCH 42/46] Add Global/SlickEdit.gitignore file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds a global ignore file for SlickEdit, a commercial editor. SlickEdit will create the following files when the user sets up a workspace: *.vpw Workspace file. Contains a list of project files associated with the workspace. *.vpj Project file. Contains the project’s settings, including the list of source files. *.vpwhist Workspace history file for Windows. Contains user session information (list of open files, debugger breakpoints, etc.) *.vpwhistu Workspace history file for UNIX/Linux/MacOSX. (Same as above.) *.vtg Workspace tag file. Contains a database of source code symbols. It is assumed that GitHub users will generally not want to store their workspace and project files in a repository, so those files are ignored globally. However, those files do not contain user-specific data so they could be stored in a repository and shared among developers if desired for a particular project. This can be done by adding rules like ’!*.vpw’ and ‘!*.vpj’ to the project’s .gitignore file. The workspace history and tag files contain user-specific data, so they should not be stored in a repository. For more information, download the PDF user guide from: http://www.slickedit.com/products/slickedit/product-documentation Note: The user guide is 1400 pages long and over 13MB in size. Searching for ‘vpwhist’ will lead to the section that discusses storing these files in a repository. --- Global/SlickEdit.gitignore | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Global/SlickEdit.gitignore diff --git a/Global/SlickEdit.gitignore b/Global/SlickEdit.gitignore new file mode 100644 index 00000000..e3d960ac --- /dev/null +++ b/Global/SlickEdit.gitignore @@ -0,0 +1,20 @@ +# SlickEdit workspace and project files are ignored by default because +# typically they are considered to be developer-specific and not part of a +# project. However, if multiple SlickEdit users are collaborating on a +# project, it is possible to store these files in the repository and share +# them among all developers because they do not contain user-specific data. +# To store these files in a repository, add the following two lines to the +# project’s .gitignore file: +# ---------- +# !*.vpw +# !*.vpj +# ---------- +*.vpw +*.vpj + +# SlickEdit workspace history and tag files always contain user-specific +# data so they should not be stored in a repository. +*.vpwhistu +*.vpwhist +*.vtg + From ddcbdd6a17e2daa1584debb5b6db37921655a241 Mon Sep 17 00:00:00 2001 From: John Munkhoff Date: Tue, 18 Mar 2014 23:37:25 -0700 Subject: [PATCH 43/46] Edit comment in Global/SlickEdit.gitignore Remove unnecessary wording about negative ignore rules. --- Global/SlickEdit.gitignore | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Global/SlickEdit.gitignore b/Global/SlickEdit.gitignore index e3d960ac..9e2fdda8 100644 --- a/Global/SlickEdit.gitignore +++ b/Global/SlickEdit.gitignore @@ -1,14 +1,6 @@ # SlickEdit workspace and project files are ignored by default because # typically they are considered to be developer-specific and not part of a -# project. However, if multiple SlickEdit users are collaborating on a -# project, it is possible to store these files in the repository and share -# them among all developers because they do not contain user-specific data. -# To store these files in a repository, add the following two lines to the -# project’s .gitignore file: -# ---------- -# !*.vpw -# !*.vpj -# ---------- +# project. *.vpw *.vpj From 5bd4330b8ca3302fa43b64db629a8d6d2a624a3e Mon Sep 17 00:00:00 2001 From: "MacPro: Fabien Sanglard" Date: Wed, 19 Mar 2014 19:14:15 -0400 Subject: [PATCH 44/46] Add Xcode support. --- Global/Xcode.gitignore | 17 +++++++++++++++++ Objective-C.gitignore | 18 ------------------ 2 files changed, 17 insertions(+), 18 deletions(-) create mode 100644 Global/Xcode.gitignore diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore new file mode 100644 index 00000000..086d143d --- /dev/null +++ b/Global/Xcode.gitignore @@ -0,0 +1,17 @@ +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +profile +*.moved-aside +DerivedData +*.hmap +*.ipa + diff --git a/Objective-C.gitignore b/Objective-C.gitignore index fd2593dd..d522f941 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -1,21 +1,3 @@ -# Xcode -build/ -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 -xcuserdata -*.xccheckout -profile -*.moved-aside -DerivedData -*.hmap -*.ipa - # CocoaPods # # We recommend against adding the Pods directory to your .gitignore. However From a6cabefb87e10e7a945d5b765d6637a192c7ecbe Mon Sep 17 00:00:00 2001 From: Torben Werner Date: Fri, 21 Mar 2014 12:46:27 +1100 Subject: [PATCH 45/46] Increase the specificity of PlayFramework rules The original ignore was far too general and results in eliminating packages named "db" or "project", for example. These are not that uncommon for package names. Fixes #921. --- PlayFramework.gitignore | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index 3bf02289..4735f055 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -1,19 +1,17 @@ # Ignore Play! working directory # -bin -db -eclipse -lib -log -logs -modules -precompiled -project/project -project/target -target -tmp +bin/ +/db +.eclipse +/lib/ +/logs/ +/modules +/project/project +/project/target +/target +tmp/ test-result server.pid *.iml *.eml -dist +/dist/ .cache From af6b1895ddb7fbf84bee8d66fe4a46553bf3d4ab Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Fri, 21 Mar 2014 12:57:41 +1100 Subject: [PATCH 46/46] Remove trailing asterisks in Phalcon rules --- Phalcon.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Phalcon.gitignore b/Phalcon.gitignore index 5eab0c56..6ffe3aa2 100644 --- a/Phalcon.gitignore +++ b/Phalcon.gitignore @@ -1,2 +1,2 @@ -/cache/* -/config/development/* +/cache/ +/config/development/