From cc88ce875786678f967959380e3fa3aa2a0309da Mon Sep 17 00:00:00 2001 From: tomparle Date: Thu, 29 Dec 2011 05:42:39 +0100 Subject: [PATCH 001/164] Added 'lib' and 'modules' folders which should also be excluded, since libs are automatically fetched from dependencies.yml. Also removed duplicate 'elicpse' entry. --- PlayFramework.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index dea05b4c..107e6774 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -7,10 +7,11 @@ # Ignore Play! working directory # db eclipse +lib log logs +modules precompiled tmp test-result -eclipse server.pid From 4ef43d6b402b6c2033d592f8d0605b219d9c8364 Mon Sep 17 00:00:00 2001 From: pangratz Date: Thu, 19 Apr 2012 02:50:18 +0200 Subject: [PATCH 002/164] Add .texlipse for the TeXlipse Latex plugin for Eclipse This addresses #229 --- Global/Eclipse.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 7b3ad03c..c71e82be 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -24,3 +24,6 @@ local.properties # PDT-specific .buildpath + +# TeXlipse plugin +.texlipse \ No newline at end of file From 3c6349ddf70bb8db81ffde9a654bd08fd9bf3635 Mon Sep 17 00:00:00 2001 From: Christopher Bertels Date: Thu, 19 Apr 2012 04:39:58 +0200 Subject: [PATCH 003/164] Added Fancy.gitignore --- Fancy.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Fancy.gitignore diff --git a/Fancy.gitignore b/Fancy.gitignore new file mode 100644 index 00000000..6b345074 --- /dev/null +++ b/Fancy.gitignore @@ -0,0 +1,2 @@ +*.rbc +*.fyc \ No newline at end of file From e6aa7144b2f533321c1247d85cc1cb88e6f60edb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B6rn=20Klatt?= Date: Fri, 20 Apr 2012 10:12:43 +0200 Subject: [PATCH 004/164] adding global gitignore for KDevelop4 KDevelop4 is the C/C++-IDE from the KDE desktop. It creates a directory '.kdev4' and a hidden file .kdev4 in the project's root directory. --- Global/KDevelop4.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Global/KDevelop4.gitignore diff --git a/Global/KDevelop4.gitignore b/Global/KDevelop4.gitignore new file mode 100644 index 00000000..7ac57b1a --- /dev/null +++ b/Global/KDevelop4.gitignore @@ -0,0 +1,2 @@ +*.kdev4 +.kdev4/ From 799ee6b79e1d32f49ded6683b5364017fd4ee0a5 Mon Sep 17 00:00:00 2001 From: James Cowgill Date: Sun, 13 May 2012 16:02:33 +0100 Subject: [PATCH 005/164] Added MIDL headers (_i.h) to Visual Studio gitignore --- CSharp.gitignore | 1 + Global/VisualStudio.gitignore | 1 + VB.Net.gitignore | 1 + 3 files changed, 3 insertions(+) diff --git a/CSharp.gitignore b/CSharp.gitignore index adaf4ecc..d9a827e1 100644 --- a/CSharp.gitignore +++ b/CSharp.gitignore @@ -19,6 +19,7 @@ TestResults x64/ *_i.c *_p.c +*_i.h *.ilk *.meta *.obj diff --git a/Global/VisualStudio.gitignore b/Global/VisualStudio.gitignore index 9d4784c8..0e3166c2 100644 --- a/Global/VisualStudio.gitignore +++ b/Global/VisualStudio.gitignore @@ -19,6 +19,7 @@ build/ *_i.c *_p.c +*_i.h *.ilk *.meta *.obj diff --git a/VB.Net.gitignore b/VB.Net.gitignore index 5a4f80c0..af16cf72 100644 --- a/VB.Net.gitignore +++ b/VB.Net.gitignore @@ -20,6 +20,7 @@ obj/ x64/ *_i.c *_p.c +*_i.h *.ilk *.meta *.obj From bc8965410186db5221af29247ec7e8edc357e875 Mon Sep 17 00:00:00 2001 From: Ben Ripkens Date: Wed, 16 May 2012 17:17:08 +0300 Subject: [PATCH 006/164] Ignore information for lein plugin directory. The directory is similar to the lib/ directory as it also contains downloaded dependencies (or in this case plugins). --- Leiningen.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Leiningen.gitignore b/Leiningen.gitignore index b8c1b218..35e62d3c 100644 --- a/Leiningen.gitignore +++ b/Leiningen.gitignore @@ -3,3 +3,4 @@ pom.xml /lib/ /classes/ .lein-deps-sum +.lein-plugins/ \ No newline at end of file From 74174a83c662bf67dc3148f752f18da6983da001 Mon Sep 17 00:00:00 2001 From: Attila Bukor Date: Tue, 22 May 2012 11:50:51 +0300 Subject: [PATCH 007/164] added composer.phar to Symfony2 gitignore --- Symfony2.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Symfony2.gitignore b/Symfony2.gitignore index 0b2956f9..f4a95cb4 100644 --- a/Symfony2.gitignore +++ b/Symfony2.gitignore @@ -11,3 +11,6 @@ web/bundles/* # Configuration files app/config/parameters.ini app/config/parameters.yml + +# Composer +composer.phar \ No newline at end of file From 73d14793f606ba9fdc5812e78cd6c40bd6722eb3 Mon Sep 17 00:00:00 2001 From: Daniel Craig Jallits Date: Thu, 24 May 2012 09:59:18 -0500 Subject: [PATCH 008/164] Updated for Magento 1.7.0.0 --- Magento.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Magento.gitignore b/Magento.gitignore index 52e8bb25..99f3332a 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -15,14 +15,18 @@ app/etc/modules/Enterprise_* app/etc/modules/Find_Feed.xml 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_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 @@ -78,6 +82,7 @@ LICENSE.txt LICENSE_EE* mage media/customer/ +media/dhl/ media/downloadable/ media/.htaccess media/import/ From e741ca37c8906a5aa86cbc06286e615e18e72b39 Mon Sep 17 00:00:00 2001 From: Satish BD Date: Sun, 10 Jun 2012 01:32:00 +0300 Subject: [PATCH 009/164] Ignores for gtags and cscope added. --- Global/Tags.gitignore | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Global/Tags.gitignore b/Global/Tags.gitignore index cc28fefa..45922ec1 100644 --- a/Global/Tags.gitignore +++ b/Global/Tags.gitignore @@ -1,5 +1,14 @@ -# Ignore tags created by etags and ctags +# Ignore tags created by etags, ctags, gtags (GNU global) and cscope TAGS !TAGS/ tags !tags/ +gtags.files +GTAGS +GRTAGS +GPATH +cscope.files +cscope.out +cscope.in.out +cscope.po.out + From b341772f93d198647754a86f4655bc65b343280e Mon Sep 17 00:00:00 2001 From: Gant Date: Fri, 22 Jun 2012 12:38:36 -0500 Subject: [PATCH 010/164] Added RubyMotion gitignore --- RubyMotion.gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 RubyMotion.gitignore diff --git a/RubyMotion.gitignore b/RubyMotion.gitignore new file mode 100644 index 00000000..ef5d7194 --- /dev/null +++ b/RubyMotion.gitignore @@ -0,0 +1,13 @@ +.repl_history +build +tags + +# common annoyance editors +.DS_Store +nbproject +.redcar +*.swp +*.swo +~ +.eprj + From dc623d479db9ce6c67ad5bf565b80d1adef6ee90 Mon Sep 17 00:00:00 2001 From: sciencebrainrs Date: Sat, 23 Jun 2012 17:19:47 -0500 Subject: [PATCH 011/164] Add out folder to gitignore --- Global/IntelliJ.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/IntelliJ.gitignore b/Global/IntelliJ.gitignore index 7d89b9c0..7576fded 100644 --- a/Global/IntelliJ.gitignore +++ b/Global/IntelliJ.gitignore @@ -2,3 +2,4 @@ *.ipr *.iws .idea/ +out/ From 0f0936c7ac5f797dd0ee9aed03662ec3854f6bcb Mon Sep 17 00:00:00 2001 From: Ove Andersen Date: Mon, 25 Jun 2012 13:38:38 +0200 Subject: [PATCH 012/164] EPiServer licenses are tied to a machine, so should be ignored --- EPiServer.gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 EPiServer.gitignore diff --git a/EPiServer.gitignore b/EPiServer.gitignore new file mode 100644 index 00000000..ca7a7862 --- /dev/null +++ b/EPiServer.gitignore @@ -0,0 +1,4 @@ +###################### +## EPiServer Files +###################### +*License.config \ No newline at end of file From 329376b2efe8dce85a8535102ee94cd8023961de Mon Sep 17 00:00:00 2001 From: mastacheata Date: Fri, 13 Jul 2012 17:52:09 +0300 Subject: [PATCH 013/164] Add Exception for htaccess file denying access to the cache folder --- CodeIgniter.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/CodeIgniter.gitignore b/CodeIgniter.gitignore index e84c6417..ca0e37ee 100644 --- a/CodeIgniter.gitignore +++ b/CodeIgniter.gitignore @@ -3,3 +3,4 @@ */logs/!index.html */cache/* */cache/!index.html +*/cache/!.htaccess \ No newline at end of file From c92d58adf56caa2b8f2f64d0dfd5d62b529fa6db Mon Sep 17 00:00:00 2001 From: huxuan Date: Mon, 23 Jul 2012 13:31:11 +0800 Subject: [PATCH 014/164] Add *.thm for LaTeX --- LaTeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index c88e8b81..e7bb4ab3 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -26,6 +26,7 @@ *.ps *.snm *.synctex.gz +*.thm *.toc *.vrb *.xdy From 5ccc2ed67a6383f7b7c46cdfe500da3fc9ef627e Mon Sep 17 00:00:00 2001 From: Janusz Lenar Date: Wed, 8 Aug 2012 10:52:23 +0300 Subject: [PATCH 015/164] Add objects and libraries on Windows --- C++.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/C++.gitignore b/C++.gitignore index 620d3dc8..5d178a26 100644 --- a/C++.gitignore +++ b/C++.gitignore @@ -2,12 +2,15 @@ *.slo *.lo *.o +*.obj # Compiled Dynamic libraries *.so *.dylib +*.dll # Compiled Static libraries *.lai *.la *.a +*.lib From 53adf394a068bdcce636317ab66e1f1010e0d030 Mon Sep 17 00:00:00 2001 From: Janusz Lenar Date: Wed, 8 Aug 2012 11:36:30 +0300 Subject: [PATCH 016/164] Add executables for C++ --- C++.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/C++.gitignore b/C++.gitignore index 5d178a26..0def2755 100644 --- a/C++.gitignore +++ b/C++.gitignore @@ -14,3 +14,8 @@ *.la *.a *.lib + +# Executables +*.exe +*.out +*.app From 4ff163b0cf41393307d70887b91b56748bbec25d Mon Sep 17 00:00:00 2001 From: Matheus Date: Thu, 23 Aug 2012 15:40:36 -0300 Subject: [PATCH 017/164] add ignore "pip-delete-this-directory.txt" --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index d2d6f360..b0b43ea7 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -20,6 +20,7 @@ lib64 # Installer logs pip-log.txt +pip-delete-this-directory.txt # Unit test / coverage reports .coverage From 33567b03747e6c6a2df01a903dce733a1ae205c3 Mon Sep 17 00:00:00 2001 From: Michael Metcalf Bishop Date: Fri, 31 Aug 2012 17:52:51 -0500 Subject: [PATCH 018/164] Added NotepadPP.gitignore for Notepad++ .bak extension for backup files --- Global/NotepadPP.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Global/NotepadPP.gitignore diff --git a/Global/NotepadPP.gitignore b/Global/NotepadPP.gitignore new file mode 100644 index 00000000..9ec9df15 --- /dev/null +++ b/Global/NotepadPP.gitignore @@ -0,0 +1,2 @@ +# Notepad++ backups # +*.bak \ No newline at end of file From 5bb902ab460d4f474ebc5687840e932f1329fd48 Mon Sep 17 00:00:00 2001 From: Christian Boehlke Date: Sat, 29 Sep 2012 14:13:12 +0200 Subject: [PATCH 019/164] Add an extension to LaTeX.gitignore generated by listings: *.lol See: http://tex.stackexchange.com/a/17846 --- LaTeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index c88e8b81..13a3377b 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -14,6 +14,7 @@ *.ind *.ist *.lof +*.lol *.log *.lot *.maf From cccee442fd3fc8f5f98a525eed2e37ad8c81c5ff Mon Sep 17 00:00:00 2001 From: Patrick Rauland Date: Mon, 15 Oct 2012 14:01:08 -0500 Subject: [PATCH 020/164] Adding wp-config.php Back Into Version Control --- Wordpress.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Wordpress.gitignore b/Wordpress.gitignore index ffc36524..3dbb0b35 100644 --- a/Wordpress.gitignore +++ b/Wordpress.gitignore @@ -1,5 +1,4 @@ .htaccess -wp-config.php wp-content/uploads/ wp-content/blogs.dir/ wp-content/upgrade/ From 0141c63f2bea70f4eb638c84daca6e754936181c Mon Sep 17 00:00:00 2001 From: Oliver Schrenk Date: Tue, 16 Oct 2012 00:44:38 +0300 Subject: [PATCH 021/164] Ignore *.loa generated by algorithm package to list algorithms --- LaTeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index bbaaa01b..82f019b7 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -13,6 +13,7 @@ *.ilg *.ind *.ist +*.loa *.lof *.log *.lot From 0d1ef635cc7e394ab60d44291cd629a1d2639124 Mon Sep 17 00:00:00 2001 From: Visgean Skeloru Date: Mon, 12 Nov 2012 17:54:20 +0100 Subject: [PATCH 022/164] Django is python Django should have same ignores as python because it is python --- Django.gitignore | 40 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/Django.gitignore b/Django.gitignore index d9437c31..3416fbb3 100644 --- a/Django.gitignore +++ b/Django.gitignore @@ -1,4 +1,40 @@ +# Django stuff: *.log *.pot -*.pyc -local_settings.py + +# Python stuff: +*.py[cod] + +# C extensions +*.so + +# Packages +*.egg +*.egg-info +dist +build +eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg +lib +lib64 + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox +nosetests.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject \ No newline at end of file From 60f6855ce9d31d11173441e75daa4e262ea102b4 Mon Sep 17 00:00:00 2001 From: Neil Kelty Date: Sat, 17 Nov 2012 12:12:19 -0500 Subject: [PATCH 023/164] Update nanoc.gitignore to include crash.log file --- nanoc.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nanoc.gitignore b/nanoc.gitignore index ddc964bc..4a2728c0 100644 --- a/nanoc.gitignore +++ b/nanoc.gitignore @@ -5,3 +5,6 @@ output/ # Temporary file directory tmp/ + +# Crash Log +crash.log From 1fbbb01eb3d040fa79c30e3b08ffccf78a43ee3f Mon Sep 17 00:00:00 2001 From: Greg Whitworth Date: Thu, 13 Dec 2012 10:07:44 -0900 Subject: [PATCH 024/164] Added config files that should not be placed into repos by default as they contain database information and URL's that will vary between local and other servers and can cause conflicts. --- ExpressionEngine.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ExpressionEngine.gitignore b/ExpressionEngine.gitignore index c56e7abc..b7d85273 100644 --- a/ExpressionEngine.gitignore +++ b/ExpressionEngine.gitignore @@ -8,6 +8,10 @@ images/member_photos/ images/signature_attachments/ images/pm_attachments/ +# For security do not publish the following files +system/expressionengine/config/database.php +system/expressionengine/config/config.php + # Caches sized/ thumbs/ From c1b030ddb11d1b410eebe5016779232d705d44e7 Mon Sep 17 00:00:00 2001 From: Karen Etheridge Date: Mon, 7 Jan 2013 21:17:00 -0800 Subject: [PATCH 025/164] tighten up perl ignores - these files should only exist in the repository root --- Perl.gitignore | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Perl.gitignore b/Perl.gitignore index c15b52a9..9128dc79 100644 --- a/Perl.gitignore +++ b/Perl.gitignore @@ -1,5 +1,5 @@ -blib/ -.build/ +/blib/ +/.build/ _build/ cover_db/ inc/ @@ -7,10 +7,10 @@ Build !Build/ Build.bat .last_cover_stats -Makefile -Makefile.old -MANIFEST.bak -META.yml -MYMETA.yml +/Makefile +/Makefile.old +/MANIFEST.bak +/META.yml +/MYMETA.yml nytprof.out -pm_to_blib +/pm_to_blib From 97e343570e7c30cc3ef265f501115b1e472a7fec Mon Sep 17 00:00:00 2001 From: Karen Etheridge Date: Mon, 7 Jan 2013 21:18:27 -0800 Subject: [PATCH 026/164] ignore more perl outputs - metaspec v2.0 now creates json files - some artifacts of XS builds --- Perl.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Perl.gitignore b/Perl.gitignore index 9128dc79..eaca02ed 100644 --- a/Perl.gitignore +++ b/Perl.gitignore @@ -11,6 +11,9 @@ Build.bat /Makefile.old /MANIFEST.bak /META.yml -/MYMETA.yml +/META.json +/MYMETA.* nytprof.out /pm_to_blib +*.o +*.bs From 6e9d58f5145474d58de43df6177b5978d860f9c5 Mon Sep 17 00:00:00 2001 From: Simon Schick Date: Wed, 9 Jan 2013 13:25:51 +0100 Subject: [PATCH 027/164] Update Typo3.gitignore - ignore symlinks, not directories for core-files --- Typo3.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Typo3.gitignore b/Typo3.gitignore index 0ee23cbf..16bec1a2 100644 --- a/Typo3.gitignore +++ b/Typo3.gitignore @@ -12,7 +12,7 @@ /typo3conf/localconf_local.php # Ignore system folders, you should have them symlinked. # If not comment out the following two entries. -/typo3/ -/t3lib/ +/typo3 +/t3lib # Ignore temp directory. /typo3temp/ From 361027493692b1ce646922dce738e0f5b98b25f0 Mon Sep 17 00:00:00 2001 From: Simon Schick Date: Wed, 9 Jan 2013 13:37:51 +0100 Subject: [PATCH 028/164] Update Typo3.gitignore - added version number as TYPO3 CMS v6 needs different .gitignore file --- Typo3.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Typo3.gitignore b/Typo3.gitignore index 16bec1a2..d1593b16 100644 --- a/Typo3.gitignore +++ b/Typo3.gitignore @@ -1,4 +1,4 @@ -## Typo3 +## TYPO3 v4 # Ignore serveral upload and file directories. /fileadmin/user_upload/ /fileadmin/_temp_/ From 32cba5a6d7332c851d0339d6fdd05fd18978b97d Mon Sep 17 00:00:00 2001 From: Alexey Brodkin Date: Thu, 10 Jan 2013 20:16:36 +0400 Subject: [PATCH 029/164] Add wild-card suffix for Makefile With "CONFIG=debug_and_release" qmake generates both Makefile.Debug and Makefile.Release. And I assume it is useful to have all types Makefiles ignored. Signed-off-by: Alexey Brodkin --- Qt.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Qt.gitignore b/Qt.gitignore index 16b4ee58..79f807d9 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -16,5 +16,5 @@ *.pro.user.* moc_*.cpp qrc_*.cpp -Makefile +Makefile* *-build-* From f1d654c1b5135aef2339c1533eeaa32d618aa0a0 Mon Sep 17 00:00:00 2001 From: Alexey Brodkin Date: Thu, 10 Jan 2013 20:18:50 +0400 Subject: [PATCH 030/164] Add "ui_*.h" pattern to block auto-generated headers moc automatically generates "ui_*.h" files for each *.ui file. Since they are auto-generated I assume they should be ignored. Signed-off-by: Alexey Brodkin --- Qt.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Qt.gitignore b/Qt.gitignore index 79f807d9..fd2c573c 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -16,5 +16,6 @@ *.pro.user.* moc_*.cpp qrc_*.cpp +ui_*.h Makefile* *-build-* From 407664cbb5c69f8719cb7f4a7c75461c8f5607bd Mon Sep 17 00:00:00 2001 From: Mani Date: Sun, 13 Jan 2013 10:33:20 +0530 Subject: [PATCH 031/164] Added changes for Yii framework See http://www.yiiframework.com/wiki/307/startin-your-yii-project-reference-guide-with-git-vcs-in-linux/#hh6 --- Yii.gitignore | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Yii.gitignore b/Yii.gitignore index 45a9a931..834eb17c 100644 --- a/Yii.gitignore +++ b/Yii.gitignore @@ -1,3 +1,6 @@ -assets/ -protected/runtime/ +assets/* +!assets/.gitignore +protected/runtime/* +!protected/runtime/.gitignore +protected/data/*.db themes/classic/views/ \ No newline at end of file From 5fe13b7e6f89be9d064a0af6c4f1a4efc32930fd Mon Sep 17 00:00:00 2001 From: Shea Bunge Date: Sat, 19 Jan 2013 17:02:34 +1100 Subject: [PATCH 032/164] Added Bricx Command Center gitignore --- BricxCC.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 BricxCC.gitignore diff --git a/BricxCC.gitignore b/BricxCC.gitignore new file mode 100644 index 00000000..9a2fdfae --- /dev/null +++ b/BricxCC.gitignore @@ -0,0 +1,2 @@ +*.bak +*.sym \ No newline at end of file From ab68187ab99063aa48610ddefafb849c657b6c93 Mon Sep 17 00:00:00 2001 From: Yuanxuan Wang Date: Thu, 24 Jan 2013 16:47:17 +0800 Subject: [PATCH 033/164] Ignore Rails directories instead of their files --- Rails.gitignore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Rails.gitignore b/Rails.gitignore index bf692e15..9fcfcdec 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -6,12 +6,12 @@ capybara-*.html .rvmrc /.bundle /vendor/bundle -/log/* -/tmp/* +/log +/tmp /db/*.sqlite3 -/public/system/* +/public/system /coverage/ -/spec/tmp/* +/spec/tmp **.orig rerun.txt pickle-email-*.html From 69c77aadd1a350c19d4ad69bb04fc75c2432b840 Mon Sep 17 00:00:00 2001 From: Brian Dukes Date: Fri, 25 Jan 2013 13:35:41 -0600 Subject: [PATCH 034/164] Add $tf folder to VisualStudio.gitignore TFS 2012 creates a $tf folder for local workspaces --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..8dbff00b 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -56,6 +56,9 @@ ipch/ *.vsp *.vspx +# TFS 2012 Local Workspace +$tf/ + # Guidance Automation Toolkit *.gpState From 2183a6c531d7085e2d6f26cb59cc1a25f4b21c18 Mon Sep 17 00:00:00 2001 From: hallco978 Date: Tue, 29 Jan 2013 22:47:17 +0000 Subject: [PATCH 035/164] Update VisualStudio.gitignore Added exclusions for mightymoose testing plugin www.continuoustests.com --- VisualStudio.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..c3d72a73 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -73,6 +73,10 @@ _TeamCity* *.ncrunch* .*crunch*.local.xml +# MightyMoose +*.mm.* +AutoTest.Net/ + # Installshield output folder [Ee]xpress/ From 39d25ad962325adb364e4f467a8b9dc16f48e0e6 Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Sun, 17 Feb 2013 21:28:52 -0800 Subject: [PATCH 036/164] Add Cloud9 gitignore --- Global/Cloud9.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Global/Cloud9.gitignore diff --git a/Global/Cloud9.gitignore b/Global/Cloud9.gitignore new file mode 100644 index 00000000..b9f8a369 --- /dev/null +++ b/Global/Cloud9.gitignore @@ -0,0 +1,2 @@ +# Cloud9 IDE - http://c9.io +.c9revisions From 7c8d67051b133a7b36e76c899b51b2ec7edc22e3 Mon Sep 17 00:00:00 2001 From: fibo Date: Thu, 21 Feb 2013 18:10:24 +0100 Subject: [PATCH 037/164] added VVVV gitignore file --- VVVV.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 VVVV.gitignore diff --git a/VVVV.gitignore b/VVVV.gitignore new file mode 100644 index 00000000..41c2ce50 --- /dev/null +++ b/VVVV.gitignore @@ -0,0 +1,2 @@ +*~.xml +*/bin/ From 854654057fbb7659a799450a7917f14c0cb0ac61 Mon Sep 17 00:00:00 2001 From: fibo Date: Thu, 21 Feb 2013 18:22:43 +0100 Subject: [PATCH 038/164] added comments --- VVVV.gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/VVVV.gitignore b/VVVV.gitignore index 41c2ce50..55a6a4b7 100644 --- a/VVVV.gitignore +++ b/VVVV.gitignore @@ -1,2 +1,7 @@ + +# .v4p backup files *~.xml -*/bin/ + +# Dynamic plugins .dll +bin/ + From da6354d54e0f622519075b0b480512dad246af1c Mon Sep 17 00:00:00 2001 From: David Daniel Date: Mon, 25 Feb 2013 20:36:52 +0100 Subject: [PATCH 039/164] Add stamp-h1 to ignored files The file stamp-h1 only contains a timestamp for config.h - actually the files timestamp itself serves with this information. Therefore it actually cannot be of interest not to ignore it. --- Autotools.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Autotools.gitignore b/Autotools.gitignore index fc5e847d..053ff52f 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -11,3 +11,4 @@ Makefile.in /depcomp /install-sh /missing +/stamp-h1 From 9c1c48d04bda96def27e6ef81f66dace88fc2ee7 Mon Sep 17 00:00:00 2001 From: "CONSULT-ALTIUS\\k_s" Date: Tue, 26 Feb 2013 23:23:49 +0000 Subject: [PATCH 040/164] VisualStudio: Add Business Intelligence projects --- VisualStudio.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..45df55e4 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -130,6 +130,11 @@ UpgradeLog*.htm App_Data/*.mdf App_Data/*.ldf +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + # ========================= # Windows detritus # ========================= From aafb20d9e71443324a4fb73e81051b9821c09b4a Mon Sep 17 00:00:00 2001 From: Alain Folletete Date: Fri, 1 Mar 2013 23:51:52 +0100 Subject: [PATCH 041/164] Add Prestashop gitignore file --- Prestashop.gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Prestashop.gitignore diff --git a/Prestashop.gitignore b/Prestashop.gitignore new file mode 100644 index 00000000..e957df94 --- /dev/null +++ b/Prestashop.gitignore @@ -0,0 +1,29 @@ +# Directories content +cache/class_index.php +cache/smarty/cache/* +!cache/smarty/cache/index.php +cache/smarty/compile/* +!cache/smarty/compile/index.php +cache/tcpdf/* +!cache/tcpdf/index.php + +config/xml/*.xml +config/settings.inc.php + +log/*.log + +img/* +!img/index.php +!img/*/index.php + +tools/smarty*/cache/*.php +!tools/smarty*/cache/index.php +tools/smarty*/compile/*.php +!tools/smarty*/compile/index.php + +themes/default/cache/*.js +themes/default/cache/*.css + +# Ignore files on root directory +robots.txt +sitemap.xml \ No newline at end of file From 0b0b6745632c4cb3c2384082cb112638c2d6f9bb Mon Sep 17 00:00:00 2001 From: Vicente Plata Date: Wed, 13 Mar 2013 01:12:33 -0700 Subject: [PATCH 042/164] Ignoring "bld" directory Store apps (or at least the Javascript ones) build to a "bld" directory. Although "debug" and "release" are ignored, any custom build Configuration (created through configuration manager) will be added, unless we ignore the whole bld dir. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..adc37e04 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -12,6 +12,7 @@ [Rr]elease/ x64/ build/ +bld/ [Bb]in/ [Oo]bj/ From b02ddf29fd83e27887d0d5e29560b2d5d6d56388 Mon Sep 17 00:00:00 2001 From: zafarella-Linux Date: Thu, 14 Mar 2013 21:27:07 +0100 Subject: [PATCH 043/164] -- added ignorance of temprorarely release properties files --- Maven.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Maven.gitignore b/Maven.gitignore index 2f7896d1..6ca4036f 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -1 +1,2 @@ target/ + *.releaseBackup From a860132221f37bf71411fcedec7b4bcf09fee668 Mon Sep 17 00:00:00 2001 From: simonbuehler Date: Fri, 15 Mar 2013 16:59:40 +0100 Subject: [PATCH 044/164] Update VisualStudio.gitignore Added DebugPublic of Matrox DSK --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..244e0b45 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -9,6 +9,7 @@ # Build results [Dd]ebug/ +[Dd]ebugPublic/ [Rr]elease/ x64/ build/ From 2d8461d42c104bf8e62af9034916353a52ef2ad7 Mon Sep 17 00:00:00 2001 From: Mark Gardner Date: Tue, 19 Mar 2013 16:17:11 -0400 Subject: [PATCH 045/164] actually ignore compiled elisp with pattern --- Global/Emacs.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index 8c996106..c2205c06 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -2,7 +2,7 @@ \#*\# /.emacs.desktop /.emacs.desktop.lock -.elc +*.elc auto-save-list tramp .\#* From cd5b0112a4a9f5b701c8f08724988ff639f6f1cf Mon Sep 17 00:00:00 2001 From: Mark Gardner Date: Tue, 19 Mar 2013 16:43:04 -0400 Subject: [PATCH 046/164] Emacs gitignore gitignore mode because recursion --- Global/Emacs.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index c2205c06..7d3aad7f 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -1,3 +1,4 @@ +# -*- mode: gitignore; -*- *~ \#*\# /.emacs.desktop From 14cebd60c54f1394e6642cca7ff8c2aceb9d3c83 Mon Sep 17 00:00:00 2001 From: TomLiu Date: Mon, 25 Mar 2013 00:37:40 +0800 Subject: [PATCH 047/164] add media/catalog/product/cache/ to magento ignore --- Magento.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Magento.gitignore b/Magento.gitignore index 52e8bb25..c87215ed 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -82,6 +82,8 @@ media/downloadable/ media/.htaccess media/import/ media/xmlconnect/ +media/catalog/product/cache/ + nbproject/ pear pear/ From ff345b0fac0b05c404b9dfaffc59c1a58bbcd233 Mon Sep 17 00:00:00 2001 From: Christopher Date: Tue, 2 Apr 2013 13:59:05 -0700 Subject: [PATCH 048/164] adding ignore for Telerik JustCode files --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..76e8c6fb 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -63,6 +63,9 @@ ipch/ _ReSharper*/ *.[Rr]e[Ss]harper +# JustCode is a .NET coding addin-in +.JustCode + # TeamCity is a build add-in _TeamCity* From 2ee0c56f17f221150b14165cbbc9abe96bce682e Mon Sep 17 00:00:00 2001 From: Brian Dukes Date: Wed, 10 Apr 2013 21:24:28 -0500 Subject: [PATCH 049/164] Ignore user-specific ReSharper settings --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..152f9d00 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -62,6 +62,7 @@ ipch/ # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper +*.DotSettings.user # TeamCity is a build add-in _TeamCity* From f41aaad6f9e8eaad13b59d23d5bdfe6e724e0b86 Mon Sep 17 00:00:00 2001 From: Kristen Date: Thu, 11 Apr 2013 22:46:03 +0100 Subject: [PATCH 050/164] Added nunit result and state file --- VisualStudio.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..343acb29 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -19,6 +19,10 @@ build/ [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* +#NUNIT +*.VisualState.xml +TestResult.xml + *_i.c *_p.c *.ilk From 143f7bc97ff8577eda6e9fe6bbeba5f54a288f79 Mon Sep 17 00:00:00 2001 From: Erran Carey Date: Fri, 12 Apr 2013 01:23:09 -0500 Subject: [PATCH 051/164] Update RubyMotion.gitignore --- RubyMotion.gitignore | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/RubyMotion.gitignore b/RubyMotion.gitignore index ef5d7194..e6b56b0d 100644 --- a/RubyMotion.gitignore +++ b/RubyMotion.gitignore @@ -2,7 +2,7 @@ build tags -# common annoyance editors +# Editor files .DS_Store nbproject .redcar @@ -10,4 +10,10 @@ nbproject *.swo ~ .eprj +vendor/Pods +*.nib +# YARD artifacts +.yardoc +_yardoc +doc/ From 0314124986763c6260305c0af52ce51831bf8bd0 Mon Sep 17 00:00:00 2001 From: Erran Carey Date: Fri, 12 Apr 2013 01:26:02 -0500 Subject: [PATCH 052/164] Ignore those pesky .dat* files --- RubyMotion.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RubyMotion.gitignore b/RubyMotion.gitignore index e6b56b0d..7e395179 100644 --- a/RubyMotion.gitignore +++ b/RubyMotion.gitignore @@ -1,5 +1,6 @@ +.dat* .repl_history -build +build/ tags # Editor files From 9428df834f107815caab2598ec8bfcc980347a6a Mon Sep 17 00:00:00 2001 From: Ray Shan Date: Sat, 13 Apr 2013 23:46:22 -0500 Subject: [PATCH 053/164] Comment for .py[cod] files Commenting the only ignore that isn't commented. --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index ded60678..9ab94bd9 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -1,3 +1,4 @@ +# Byte-compiled / optimized / DLL files *.py[cod] # C extensions From 00db51bba6cd155e19124b0941eec6f617872859 Mon Sep 17 00:00:00 2001 From: Sean Brewer Date: Sun, 21 Apr 2013 02:48:48 -0300 Subject: [PATCH 054/164] Ignore Leiningen REPL history If you open an REPL within your project with `lein repl`, your REPL history gets saved in .lein-repl-history. This file does not need to be committed to a repository --- Leiningen.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Leiningen.gitignore b/Leiningen.gitignore index 40fbb289..62e85466 100644 --- a/Leiningen.gitignore +++ b/Leiningen.gitignore @@ -4,3 +4,4 @@ pom.xml /classes/ /targets/ .lein-deps-sum +.lein-repl-history From f62c01b155bf12d5d5e8b4d7172562d1dab3c722 Mon Sep 17 00:00:00 2001 From: Finn Johnsen Date: Mon, 22 Apr 2013 10:53:25 +0300 Subject: [PATCH 055/164] removed implicit ignore /web-app/WEB-INF is already ignored, no need to specify sub-directories --- Grails.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Grails.gitignore b/Grails.gitignore index 96f72ec8..dd4ee2f7 100644 --- a/Grails.gitignore +++ b/Grails.gitignore @@ -34,7 +34,6 @@ # older plugin install locations /plugins /web-app/plugins -/web-app/WEB-INF/classes # "temporary" build files /target From 40dc966e271d46660d948be4be4075ee68863cf8 Mon Sep 17 00:00:00 2001 From: Andrzej Borucki Date: Wed, 24 Apr 2013 20:51:16 +0300 Subject: [PATCH 056/164] File are for example parse.~pas *.~*~ not match backup files --- Delphi.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Delphi.gitignore b/Delphi.gitignore index 38b6bd0c..7f331f15 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -1,5 +1,5 @@ *.dcu -*.~*~ +*.~* *.local *.identcache __history @@ -7,4 +7,4 @@ __history *.map *.exe *.dll -bin/* \ No newline at end of file +bin/* From 5e49936959761c28f52c479a8de42624cf53889f Mon Sep 17 00:00:00 2001 From: Ian Carrico Date: Fri, 26 Apr 2013 16:06:04 -0500 Subject: [PATCH 057/164] Move .htaccess to its place under core files, not text files --- Drupal.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Drupal.gitignore b/Drupal.gitignore index 73677d29..70ad5676 100644 --- a/Drupal.gitignore +++ b/Drupal.gitignore @@ -8,7 +8,6 @@ sites/*/files sites/*/private # Ignore default text files -.htaccess robots.txt /CHANGELOG.txt /COPYRIGHT.txt @@ -22,6 +21,7 @@ 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 From 182aeb220dc2ebffc4e22936b19deb50b071d4a2 Mon Sep 17 00:00:00 2001 From: Michael Gerbush Date: Thu, 2 May 2013 23:04:52 -0500 Subject: [PATCH 058/164] Reverting change to ignore build subdirectories Reverted a change that was causing build directories at the root folder to show up in git. If you need to ignore subdirectories the leading slash needs to be omitted. --- Objective-C.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 31e6fd9a..6a329198 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -1,6 +1,6 @@ # Xcode .DS_Store -*/build/* +build/ *.pbxuser !default.pbxuser *.mode1v3 From 1d045d58b829c82980141a0e3346b6f2f9ee0e05 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Wed, 8 May 2013 13:06:10 +1000 Subject: [PATCH 059/164] Ignore .fls files in LaTeX projects From the man page for latexmk (http://manpages.ubuntu.com/manpages/raring/man1/latexmk.1L.html): [...] the -recorder option with latex and pdflatex. In (most) modern versions of these programs, this results in a file of extension .fls containing a list of the files that these programs have read and written. Latexmk specifies this option in its latex commands and so produces temporary files with this extension in latex projects. --- LaTeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index bbaaa01b..dc2f7e84 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -6,6 +6,7 @@ *.blg *.dvi *.fdb_latexmk +*.fls *.glg *.glo *.gls From 923acecd295f11a3bdb6661af9fabfe97123bb23 Mon Sep 17 00:00:00 2001 From: stationkeeping Date: Thu, 9 May 2013 09:50:44 +0200 Subject: [PATCH 060/164] Fixed SASS case (It's Sass, not SASS) --- Global/SASS.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/SASS.gitignore b/Global/SASS.gitignore index 2c306072..c1df001e 100644 --- a/Global/SASS.gitignore +++ b/Global/SASS.gitignore @@ -1,2 +1,2 @@ -### SASS Ignores - "Sassy CSS" http://sass-lang.com/ +### Sass Ignores - "Sassy CSS" http://sass-lang.com/ *.sass-cache From ae0d13d31c7e5164705fde2585885e345fa641f5 Mon Sep 17 00:00:00 2001 From: Sam T Date: Fri, 10 May 2013 01:35:12 +0400 Subject: [PATCH 061/164] Ignore emacs flymake-mode temp files. --- Global/Emacs.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index 8c996106..4c485c89 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -10,3 +10,6 @@ tramp # Org-mode .org-id-locations *_archive + +# flymake-mode +*_flymake.* From 3aefe6505f87102d8e686dca1e96e767994f46cc Mon Sep 17 00:00:00 2001 From: Manoj Date: Fri, 10 May 2013 09:28:56 +0530 Subject: [PATCH 062/164] Option to unignore repositories.config Some tools like TeamCity depend on repositories.config being checked-in under `packages/` for the restore to work. --- VisualStudio.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..b07f3be1 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -96,6 +96,8 @@ publish/ # 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/repositories.config # Windows Azure Build Output csx From 4624470231a1211b7522e43ec9747267c045e95e Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Fri, 10 May 2013 17:15:48 +1000 Subject: [PATCH 063/164] Also ignore additional tempfiles created by the biblatex package. Refer to the biblatex manual at http://ctan.unsw.edu.au/macros/latex/contrib/biblatex/doc/biblatex.pdf: (p.106): The name of the additional aux files is the base name of the main input file with the string -blx and a running number appended at the end. [...] Apart from these aux files, biblatex uses an additional bib file with the same suffix to pass certain control parameters to BibTeX. [...] When using Biber, biblatex writes a control file named example.bcf and ignores \blxauxsuffix. Note: the running number mentioned in the documentation is not always added to the suffix. --- LaTeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index dc2f7e84..975dbfb5 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -3,7 +3,10 @@ *.alg *.aux *.bbl +*.bcf *.blg +*-blx.aux +*-blx.bib *.dvi *.fdb_latexmk *.fls From cd8663d95d824a6700bc768184e486d97bf8433c Mon Sep 17 00:00:00 2001 From: conradolega Date: Tue, 21 May 2013 21:36:05 +0800 Subject: [PATCH 064/164] Add Meteor.gitignore --- Meteor.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Meteor.gitignore diff --git a/Meteor.gitignore b/Meteor.gitignore new file mode 100644 index 00000000..6a6ea0e5 --- /dev/null +++ b/Meteor.gitignore @@ -0,0 +1,2 @@ +.meteor/local +.meteor/meteorite \ No newline at end of file From 700e582aca907c723d1035a472433dcf629635ab Mon Sep 17 00:00:00 2001 From: Giovanni Costagliola Date: Thu, 23 May 2013 01:37:46 +0300 Subject: [PATCH 065/164] Exclude bin/* assets generated by the compiler --- PlayFramework.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index 663eb677..53e2a949 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -5,6 +5,7 @@ !.gitignore # Ignore Play! working directory # +bin db eclipse lib From 961e9b31a4fd7d3933278310ffbeb6efc03ab620 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20=C3=85berg?= Date: Wed, 29 May 2013 10:14:45 +0200 Subject: [PATCH 066/164] Visual Studio: Ignore Chutzpah testrunnerfiles Ignores the compiled typescript files that chutzpah creates. Alot of files are created, so ignoring them have an high impact on repository health. --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..0f439994 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -43,6 +43,9 @@ build/ *.log *.scc +# Chutzpah Test files +_Chutzpah* + # Visual C++ cache files ipch/ *.aps From 178d2632d809a67a06624cbb3774980ff5f7335d Mon Sep 17 00:00:00 2001 From: Sayed Ibrahim Hashimi Date: Fri, 7 Jun 2013 10:32:41 -0700 Subject: [PATCH 067/164] .pubxml file should not be excluded by default --- VisualStudio.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 99456160..70d76fbf 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -91,7 +91,6 @@ publish/ # Publish Web Output *.Publish.xml -*.pubxml # NuGet Packages Directory ## TODO: If you have NuGet Package Restore enabled, uncomment the next line From c173b00b32fe89a642d888776a301895b1f9260f Mon Sep 17 00:00:00 2001 From: Filipe Pais Lenfers Date: Thu, 13 Jun 2013 16:35:13 -0300 Subject: [PATCH 068/164] Add Ensime specific ignores --- Global/Ensime.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Global/Ensime.gitignore diff --git a/Global/Ensime.gitignore b/Global/Ensime.gitignore new file mode 100644 index 00000000..6d8c2b09 --- /dev/null +++ b/Global/Ensime.gitignore @@ -0,0 +1,3 @@ +# Ensime specific +.ensime +.ensime_lucene/ \ No newline at end of file From dc413f0637e8cba9ea9e01fd7194a5f987019da0 Mon Sep 17 00:00:00 2001 From: Franciszek Szczepan Wawrzak Date: Fri, 14 Jun 2013 18:51:59 +0200 Subject: [PATCH 069/164] ignoring *.autosave files generated by QtCreator --- Qt.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Qt.gitignore b/Qt.gitignore index 16b4ee58..934a0704 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -18,3 +18,7 @@ moc_*.cpp qrc_*.cpp Makefile *-build-* + +# QtCreator + +*.autosave From 4a71b5bbb9f05ae7ab9472d9935d5cab8862b94d Mon Sep 17 00:00:00 2001 From: John Kodumal Date: Sun, 16 Jun 2013 12:34:33 -0600 Subject: [PATCH 070/164] Add .hsenv to .gitignore --- Haskell.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Haskell.gitignore b/Haskell.gitignore index 477a3533..33ab4f68 100644 --- a/Haskell.gitignore +++ b/Haskell.gitignore @@ -5,3 +5,4 @@ cabal-dev *.chi *.chs.h .virthualenv +.hsenv From c8ec69639c2b4af309d86b1c58cd38afadb390d6 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 25 Jun 2013 17:08:09 -0400 Subject: [PATCH 071/164] Update Magento.gitignore The line for `install.php` blocks adding *any* file with that name. In this instance, it caused Git to ignore a file for the Aitoc_Aitsys module located at: `app/code/local/Aitoc/Aitsys/Model/Module/Install.php` --- Magento.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Magento.gitignore b/Magento.gitignore index 52e8bb25..fc17a959 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -45,7 +45,7 @@ get.php includes/ index.php index.php.sample -install.php +/install.php js/blank.html js/calendar/ js/enterprise/ From 513cd784cfb83d63bc5a723a6e052bc8f07cd74f Mon Sep 17 00:00:00 2001 From: Jakob Voss Date: Fri, 28 Jun 2013 09:01:17 +0200 Subject: [PATCH 072/164] Added .bcf extension created by BibLaTeX --- LaTeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index bbaaa01b..9707df57 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -3,6 +3,7 @@ *.alg *.aux *.bbl +*.bcf *.blg *.dvi *.fdb_latexmk From 349dbcf24ad6cdaeb9ec6203cc2a659279e8df8e Mon Sep 17 00:00:00 2001 From: Jakob Voss Date: Fri, 28 Jun 2013 14:14:34 +0200 Subject: [PATCH 073/164] Added *.run.xml created by logreq package, also used by biblatex --- LaTeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index 9707df57..ee3d677c 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -25,6 +25,7 @@ *.out *.pdfsync *.ps +*.run.xml *.snm *.synctex.gz *.toc From ad1289f0d9b023f69f4712d97c8f5ad311181bc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bengt=20L=C3=BCers?= Date: Wed, 3 Jul 2013 23:19:10 +0200 Subject: [PATCH 074/164] Files and directories starting with a `.` should not be ignored in general. --- Global/Linux.gitignore | 1 - PlayFramework.gitignore | 3 --- 2 files changed, 4 deletions(-) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index 151e2997..7c2f400f 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -1,3 +1,2 @@ -.* !.gitignore *~ diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index 663eb677..a4a0cf3a 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -1,8 +1,5 @@ -# Extracted from https://github.com/ulrich/macaron-factory/blob/master/.gitignore # Ignore all dotfiles... .* -# except for .gitignore -!.gitignore # Ignore Play! working directory # db From a6c76a5308207f9caa294a6ee7514157eeee9f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bengt=20L=C3=BCers?= Date: Thu, 4 Jul 2013 00:06:48 +0200 Subject: [PATCH 075/164] There is no need to unignore `.gitignore`. Because files and directories starting with a `.` are not ignored in general. --- Global/Linux.gitignore | 1 - PlayFramework.gitignore | 3 --- 2 files changed, 4 deletions(-) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index 7c2f400f..b25c15b8 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -1,2 +1 @@ -!.gitignore *~ diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index a4a0cf3a..b43233e1 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -1,6 +1,3 @@ -# Ignore all dotfiles... -.* - # Ignore Play! working directory # db eclipse From 35a4fcf967cf72a50437aa037dab05da8f274e88 Mon Sep 17 00:00:00 2001 From: Matt Quigley Date: Sat, 6 Jul 2013 19:06:59 -0700 Subject: [PATCH 076/164] Don't ignore essential Eclipse project files. The .project and important .classpath files are a part of an Android Eclipse project, and their changes should be stored in the repository. Although there may be a case for ignoring these files in very rare situations, they don't justify belonging in a generic template. The .project file is generally recreatable with a new import without difficulty, but it still may have important configuration such as extra build steps. More importantly, .classpath is absolutely essential for a project to build correctly and cannot be automatically generated unless there is nothing extra on the classpath. Reverts commit 3ad9edaa2. --- Android.gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Android.gitignore b/Android.gitignore index 87a44e0e..d1b2a3be 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -15,10 +15,6 @@ gen/ # Local configuration file (sdk path, etc) local.properties -# Eclipse project files -.classpath -.project - # Proguard folder generated by Eclipse proguard/ From 846f1ecbb2cfa1ac7bfb22330bacd62f28b312ff Mon Sep 17 00:00:00 2001 From: modocache Date: Wed, 10 Jul 2013 15:05:43 -0400 Subject: [PATCH 077/164] Ignore source control plist files generated by Xcode. --- Objective-C.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index ebbef4bd..92a63cae 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -10,6 +10,7 @@ *.perspectivev3 !default.perspectivev3 xcuserdata +*.xccheckout profile *.moved-aside DerivedData From da7ce3135d5378e30e50de21ac6ed320b1fd9b70 Mon Sep 17 00:00:00 2001 From: Caique Rodrigues Date: Thu, 11 Jul 2013 15:27:02 -0300 Subject: [PATCH 078/164] Dart.gitignore updated to reflect instructions provided by authors --- Dart.gitignore | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index 46f57628..db4229d4 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,4 +1,16 @@ -.DS_Store -packages +// Don’t commit the following files and directories created by pub, Dart Editor, and dart2js +packages/ .project -pubspec.lock +.buildlog +*.js_ +*.js.deps +*.js.map + +// Include when developing application packages +pubspec.lock + +// Avoid committing generated JavaScript files +*.dart.js + +// Check for any other incovenient files generated by OS +// and other tools such as Eclipse, IntelliJ, etc. From be2ecada635379dd94411327c09eb81da58cf948 Mon Sep 17 00:00:00 2001 From: Jonathan Windle Date: Tue, 16 Jul 2013 15:09:34 -0700 Subject: [PATCH 079/164] Add schemaview extension to VisualStudio.gitignore Files ending in .dbproj.schemaview contain state persistence settings for the Schema View utility within Visual Studio. http://stackoverflow.com/questions/3937160/in-the-new-visual-studio-2010-sql-server-project-type-what-is-the-dbproj-schem http://foocompelsyou.wordpress.com/2012/05/06/visual-studio-2010-database-projects-why-use-them/ --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 0881b8de..ac22c416 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -115,6 +115,7 @@ ClientBin/ ~$* *~ *.dbmdl +*.dbproj.schemaview *.[Pp]ublish.xml *.pfx *.publishsettings From 4500b29b314df8f44f0ffa4a6c8adca920ae9adb Mon Sep 17 00:00:00 2001 From: Jonathan Rudenberg Date: Fri, 19 Jul 2013 11:44:46 -0400 Subject: [PATCH 080/164] Ignore Go test files --- Go.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Go.gitignore b/Go.gitignore index 00268614..83656241 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -20,3 +20,4 @@ _cgo_export.* _testmain.go *.exe +*.test From 1cd6195f8318aef000dfd1e921f1b5344a515606 Mon Sep 17 00:00:00 2001 From: Shivam Bansal Date: Thu, 25 Jul 2013 06:18:55 -0700 Subject: [PATCH 081/164] Deployed file ignore --- Jboss.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Jboss.gitignore b/Jboss.gitignore index 5d7167f5..75d1731e 100644 --- a/Jboss.gitignore +++ b/Jboss.gitignore @@ -13,3 +13,7 @@ jboss/server/minimal/log/*.log jboss/server/minimal/tmp/**/* jboss/server/minimal/data/**/* jboss/server/minimal/work/**/* + +# deployed package files # + +*.DEPLOYED From 022572a0d0178160a8fe93f2fd0f3ded5b1c71fc Mon Sep 17 00:00:00 2001 From: jtimberman Date: Mon, 29 Jul 2013 17:05:12 -0600 Subject: [PATCH 082/164] Add ignore file for Chef cookbooks These ignores are generated by berkshelf, a tool commonly used in the Chef community for managing cookbooks. This .gitignore is used by Opscode across publicly available cookbooks. --- ChefCookbook.gitignore | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ChefCookbook.gitignore diff --git a/ChefCookbook.gitignore b/ChefCookbook.gitignore new file mode 100644 index 00000000..351201e0 --- /dev/null +++ b/ChefCookbook.gitignore @@ -0,0 +1,17 @@ +.vagrant +Berksfile.lock +*~ +*# +.#* +\#*# +.*.sw[a-z] +*.un~ +/cookbooks + +# Bundler +Gemfile.lock +bin/* +.bundle/* + +.kitchen/ +.kitchen.local.yml From 5f35f30b0490bcf5f018451af1e99be3b1478278 Mon Sep 17 00:00:00 2001 From: Sam Quinn Date: Sun, 4 Aug 2013 22:25:21 -0500 Subject: [PATCH 083/164] Added Kate ignore file ignores ..kate-swp and (older version?) .swp. see http://bit.ly/14XyBgW and http://bit.ly/chKUoZ --- Global/Kate.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Global/Kate.gitignore diff --git a/Global/Kate.gitignore b/Global/Kate.gitignore new file mode 100644 index 00000000..7ff06ce5 --- /dev/null +++ b/Global/Kate.gitignore @@ -0,0 +1,3 @@ +# Swap Files # +.*.kate-swp +.swp.* From c56761e8330fae5a6ac049dfdb179aae7f7b9036 Mon Sep 17 00:00:00 2001 From: "Paolo G. Giarrusso" Date: Thu, 15 Aug 2013 03:18:55 +0200 Subject: [PATCH 084/164] Create Agda.gitignore Ignore .agdai files, they're binary files generated by typechecking .agda files. Agda is an interactive proof assistant, home page here: http://wiki.portal.chalmers.se/agda/pmwiki.php `.agdai` files seem to be only documented here (and indirectly by googling): http://wiki.portal.chalmers.se/agda/pmwiki.php?n=Main.PerformanceTips A prominent repository using Agda on github: https://github.com/HoTT/HoTT-Agda/ Their gitignore files: https://github.com/HoTT/HoTT-Agda/blob/master/.gitignore --- Agda.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 Agda.gitignore diff --git a/Agda.gitignore b/Agda.gitignore new file mode 100644 index 00000000..171a3897 --- /dev/null +++ b/Agda.gitignore @@ -0,0 +1 @@ +*.agdai From 1d68d1ee81d06025f7e8516971a2493b86fb490d Mon Sep 17 00:00:00 2001 From: Tony Owen Date: Wed, 21 Aug 2013 09:43:55 +0100 Subject: [PATCH 085/164] Added gradle files to Android gitignore --- Android.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index 87a44e0e..1b3c66e7 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -12,6 +12,10 @@ bin/ gen/ +# Ignore gradle files +.gradle/ +build/ + # Local configuration file (sdk path, etc) local.properties From 0030e9df601b932c61ccc19f456c72f27efb883c Mon Sep 17 00:00:00 2001 From: Nysa Date: Tue, 27 Aug 2013 20:51:55 -0500 Subject: [PATCH 086/164] Vim: Ignore .*.s[a-w][a-z] and .s[a-w][a-z] swap files .*.s[a-w][a-z] matches named swap files. .s[a-w][a-z] matches unnamed swap files. --- Global/vim.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/vim.gitignore b/Global/vim.gitignore index eadcec7a..427779d5 100644 --- a/Global/vim.gitignore +++ b/Global/vim.gitignore @@ -1,4 +1,5 @@ *.s[a-w][a-z] +.s[a-w][a-z] *.un~ Session.vim .netrwhist From c98c138ee1714c6245d38b31208cb474e1f83ef6 Mon Sep 17 00:00:00 2001 From: Nysa Date: Tue, 27 Aug 2013 21:04:19 -0500 Subject: [PATCH 087/164] Vim: Forgot to change *.s[a-w][a-z] to .*.s[a-w][a-z] --- Global/vim.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/vim.gitignore b/Global/vim.gitignore index 427779d5..56ecb404 100644 --- a/Global/vim.gitignore +++ b/Global/vim.gitignore @@ -1,4 +1,4 @@ -*.s[a-w][a-z] +.*.s[a-w][a-z] .s[a-w][a-z] *.un~ Session.vim From d9fd3eaa17eeaddaa5d4341f70ffb4854ce30575 Mon Sep 17 00:00:00 2001 From: Mike Manger Date: Fri, 30 Aug 2013 15:49:12 +0100 Subject: [PATCH 088/164] Ignore local.xml as this contains database credentials. --- Magento.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Magento.gitignore b/Magento.gitignore index 52e8bb25..dd683a2d 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -33,6 +33,7 @@ app/etc/config.xml app/etc/enterprise.xml app/etc/local.xml.additional app/etc/local.xml.template +app/etc/local.xml app/.htaccess app/locale/ app/Mage.php From c7659fc44d85fd4c44c39c50682fd6143e9d5df5 Mon Sep 17 00:00:00 2001 From: Chirag Sanghavi Date: Tue, 3 Sep 2013 23:29:45 -0400 Subject: [PATCH 089/164] added webmethods related gitignore file --- webMethods.gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 webMethods.gitignore diff --git a/webMethods.gitignore b/webMethods.gitignore new file mode 100644 index 00000000..1e4b0caa --- /dev/null +++ b/webMethods.gitignore @@ -0,0 +1,22 @@ +#files +*.bak +*.class + +#licensefile +Apache_License.txt + +#folders +IntegrationServer/lib/ +IntegrationServer/datastore/ +IntegrationServer/db/ +IntegrationServer/DocumentStore/ +IntegrationServer/lib/ +IntegrationServer/logs/ +IntegrationServer/replicate/ +IntegrationServer/sdk/ +IntegrationServer/support/ +IntegrationServer/update/ +IntegrationServer/userFtpRoot/ +IntegrationServer/web/ +IntegrationServer/WmRepository4/ +IntegrationServer/XAStore/ From 13b6b17ff1dfc1fbf669d4d99ebe43647227261b Mon Sep 17 00:00:00 2001 From: Chirag Sanghavi Date: Tue, 3 Sep 2013 23:48:08 -0400 Subject: [PATCH 090/164] added wildcards and ignored packages named with Wm. if you have a custom page named Wm, you will need to use force to check in. --- webMethods.gitignore | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/webMethods.gitignore b/webMethods.gitignore index 1e4b0caa..42b792b4 100644 --- a/webMethods.gitignore +++ b/webMethods.gitignore @@ -6,17 +6,18 @@ Apache_License.txt #folders -IntegrationServer/lib/ -IntegrationServer/datastore/ -IntegrationServer/db/ -IntegrationServer/DocumentStore/ -IntegrationServer/lib/ -IntegrationServer/logs/ -IntegrationServer/replicate/ -IntegrationServer/sdk/ -IntegrationServer/support/ -IntegrationServer/update/ -IntegrationServer/userFtpRoot/ -IntegrationServer/web/ -IntegrationServer/WmRepository4/ -IntegrationServer/XAStore/ +**/IntegrationServer/lib/ +**/IntegrationServer/datastore/ +**/IntegrationServer/db/ +**/IntegrationServer/DocumentStore/ +**/IntegrationServer/lib/ +**/IntegrationServer/logs/ +**/IntegrationServer/replicate/ +**/IntegrationServer/sdk/ +**/IntegrationServer/support/ +**/IntegrationServer/update/ +**/IntegrationServer/userFtpRoot/ +**/IntegrationServer/web/ +**/IntegrationServer/WmRepository4/ +**/IntegrationServer/XAStore/ +**/IntegrationServer/packages/Wm*/ \ No newline at end of file From 1d8470b186ec7375e1c6eb1b2c10e614db5dbccc Mon Sep 17 00:00:00 2001 From: Chirag Sanghavi Date: Tue, 3 Sep 2013 23:53:56 -0400 Subject: [PATCH 091/164] adding - due to sourcetree --- webMethods.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webMethods.gitignore b/webMethods.gitignore index 42b792b4..937861ef 100644 --- a/webMethods.gitignore +++ b/webMethods.gitignore @@ -20,4 +20,4 @@ Apache_License.txt **/IntegrationServer/web/ **/IntegrationServer/WmRepository4/ **/IntegrationServer/XAStore/ -**/IntegrationServer/packages/Wm*/ \ No newline at end of file +**/IntegrationServer/packages/Wm*/ From 85562c2572bfcb22cc8e6ebb97a175efb2af56a7 Mon Sep 17 00:00:00 2001 From: Pedro Nascimento Date: Mon, 9 Sep 2013 01:14:44 -0300 Subject: [PATCH 092/164] Remove .project from Rails.gitignore. --- Rails.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Rails.gitignore b/Rails.gitignore index 470ad2fc..c37e4143 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -15,5 +15,4 @@ capybara-*.html **.orig rerun.txt pickle-email-*.html -.project config/initializers/secret_token.rb From 39f563b627c03ca66815f6f00f9b7a59d3e9dd92 Mon Sep 17 00:00:00 2001 From: fivef Date: Wed, 18 Sep 2013 10:20:26 +0200 Subject: [PATCH 093/164] Create ROS.gitignore A ROS gitignore copied form moveit_ros. https://github.com/ros-planning/moveit_ros/blob/hydro-devel/.gitignore --- ROS.gitignore | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 ROS.gitignore diff --git a/ROS.gitignore b/ROS.gitignore new file mode 100644 index 00000000..7b171072 --- /dev/null +++ b/ROS.gitignore @@ -0,0 +1,52 @@ +~$ +.swp$ +build/ +bin/ +lib/ +msg_gen/ +srv_gen/ +msg/.*Action\.msg$ +msg/.*ActionFeedback\.msg$ +msg/.*ActionGoal\.msg$ +msg/.*ActionResult\.msg$ +msg/.*Feedback\.msg$ +msg/.*Goal\.msg$ +msg/.*Result\.msg$ +msg/_.*\.py$ + +\.pcd$ +.pyc$ + +# Generated by dynamic reconfigure +\.cfgc$ +/cfg/cpp/ +/cfg/.*\.py$ + +# Ignore generated docs +.dox$ +.wikidoc$ + +# eclipse stuff +.project +.cproject + +# qcreator stuff +CMakeLists.txt.user + +srv/_.*\.py$ +\.pcd$ +.pyc$ +qtcreator-* +*.user + +/planning/cfg +/planning/docs +/planning/src + +*~$ + +# Emacs +.#* + +# Catkin custom files +CATKIN_IGNORE From 77f8351ec73c0b43eed751ccdd6a2dd6fbef0243 Mon Sep 17 00:00:00 2001 From: Juri Strumpflohner Date: Mon, 23 Sep 2013 12:04:38 +0200 Subject: [PATCH 094/164] adds ignore for NCrunch cache folder --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 0881b8de..a209ed87 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -74,6 +74,7 @@ _TeamCity* # NCrunch *.ncrunch* +_NCrunch_* .*crunch*.local.xml # Installshield output folder From 85a512a7ee97e7f2dc32a90c4a85a4c151083849 Mon Sep 17 00:00:00 2001 From: Ivan Yatskevich Date: Wed, 25 Sep 2013 12:04:55 +0300 Subject: [PATCH 095/164] add .idea_modules/ https://github.com/mpeltonen/sbt-idea generates this folder --- Global/IntelliJ.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/IntelliJ.gitignore b/Global/IntelliJ.gitignore index 7d89b9c0..fadcf7f5 100644 --- a/Global/IntelliJ.gitignore +++ b/Global/IntelliJ.gitignore @@ -2,3 +2,4 @@ *.ipr *.iws .idea/ +.idea_modules/ From 1e9ec334cd2e0085a63af3408899c24797858854 Mon Sep 17 00:00:00 2001 From: micole Date: Thu, 26 Sep 2013 16:19:15 -0400 Subject: [PATCH 096/164] Added the processing project --- Processing.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Processing.gitignore diff --git a/Processing.gitignore b/Processing.gitignore new file mode 100644 index 00000000..85f269a8 --- /dev/null +++ b/Processing.gitignore @@ -0,0 +1,7 @@ +.DS_Store +applet +application.linux32 +application.linux64 +application.windows32 +application.windows64 +application.macosx From b3fd9b493f6c16355867be62fe86e93719c60a80 Mon Sep 17 00:00:00 2001 From: Lance Chen Date: Sat, 28 Sep 2013 01:57:16 +0800 Subject: [PATCH 097/164] Add .gitignore for Arch Linux Packages Mandatory files for a Arch Linux package are * PKGBUILD * install scripts, if any * user defined configs/patches, if any This .gitignore ignores files that are generated/downloaded by makepkg automatically. Refs: * https://wiki.archlinux.org/index.php/Creating_Packages * https://wiki.archlinux.org/index.php/Makepkg Signed-off-by: Lance Chen --- ArchLinuxPackages.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ArchLinuxPackages.gitignore diff --git a/ArchLinuxPackages.gitignore b/ArchLinuxPackages.gitignore new file mode 100644 index 00000000..77aed91a --- /dev/null +++ b/ArchLinuxPackages.gitignore @@ -0,0 +1,7 @@ +*.tar +*.tar.* +*.log +*.log.* +*.sig +pkg/ +src/ From 58d60fb8a4a5cab7a69fda666861569e44cfd58b Mon Sep 17 00:00:00 2001 From: John Harvey Date: Fri, 4 Oct 2013 13:02:43 -0400 Subject: [PATCH 098/164] Add file for Atari 2600 / Atari 7800 assemblers --- stella.gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 stella.gitignore diff --git a/stella.gitignore b/stella.gitignore new file mode 100644 index 00000000..402a5438 --- /dev/null +++ b/stella.gitignore @@ -0,0 +1,12 @@ +# Atari 2600 (Stella) support for multiple assemblers +# - DASM +# - CC65 + +# Assembled binaries and object directories +obj/ +a.out +*.bin +*.a26 + +# Add in special Atari 7800-based binaries for good measure +*.a78 From f0dde55c6bd9e152a02e0a993a4ae14d9f666a34 Mon Sep 17 00:00:00 2001 From: Ivan Zuzak Date: Sun, 6 Oct 2013 14:40:01 +0200 Subject: [PATCH 099/164] ensure single trailing newline --- Actionscript.gitignore | 2 +- Android.gitignore | 1 - CakePHP.gitignore | 2 +- Concrete5.gitignore | 2 +- Coq.gitignore | 1 - Delphi.gitignore | 2 +- Drupal.gitignore | 2 +- ExpressionEngine.gitignore | 2 +- Finale.gitignore | 1 - ForceDotCom.gitignore | 2 +- GWT.gitignore | 1 - Global/CVS.gitignore | 2 +- Global/Espresso.gitignore | 2 +- Global/FlexBuilder.gitignore | 2 +- Global/Matlab.gitignore | 2 +- Global/PhPStorm.gitignore | 2 +- Global/SBT.gitignore | 2 +- Grails.gitignore | 1 - Joomla.gitignore | 2 +- Kohana.gitignore | 2 +- LemonStand.gitignore | 2 +- Node.gitignore | 2 +- R.gitignore | 2 +- README.md | 6 +++--- Scala.gitignore | 2 +- Sdcc.gitignore | 1 - Symfony.gitignore | 2 +- WordPress.gitignore | 2 +- Yii.gitignore | 2 +- ZendFramework.gitignore | 1 - 30 files changed, 25 insertions(+), 32 deletions(-) diff --git a/Actionscript.gitignore b/Actionscript.gitignore index fa65f0bd..f112f7fb 100644 --- a/Actionscript.gitignore +++ b/Actionscript.gitignore @@ -8,4 +8,4 @@ bin-release/ # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` # should NOT be excluded as they contain compiler settings and other important -# information for Eclipse / Flash Builder. \ No newline at end of file +# information for Eclipse / Flash Builder. diff --git a/Android.gitignore b/Android.gitignore index 87a44e0e..648a292a 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -27,4 +27,3 @@ proguard/ *.ipr *.iws .idea/ - diff --git a/CakePHP.gitignore b/CakePHP.gitignore index 61d34467..bd743c4d 100644 --- a/CakePHP.gitignore +++ b/CakePHP.gitignore @@ -4,4 +4,4 @@ tmp/* app/tmp/* app/[Cc]onfig/core.php app/[Cc]onfig/database.php -!empty \ No newline at end of file +!empty diff --git a/Concrete5.gitignore b/Concrete5.gitignore index cfe1cabd..9aa215ad 100644 --- a/Concrete5.gitignore +++ b/Concrete5.gitignore @@ -1,3 +1,3 @@ config/site.php files/cache/* -files/tmp/* \ No newline at end of file +files/tmp/* diff --git a/Coq.gitignore b/Coq.gitignore index 769bc36c..d3083b3a 100644 --- a/Coq.gitignore +++ b/Coq.gitignore @@ -1,4 +1,3 @@ *.vo *.glob *.v.d - diff --git a/Delphi.gitignore b/Delphi.gitignore index 38b6bd0c..ff61420c 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -7,4 +7,4 @@ __history *.map *.exe *.dll -bin/* \ No newline at end of file +bin/* diff --git a/Drupal.gitignore b/Drupal.gitignore index 73677d29..0a6c20bd 100644 --- a/Drupal.gitignore +++ b/Drupal.gitignore @@ -34,4 +34,4 @@ xmlrpc.php /modules /profiles /scripts -/themes \ No newline at end of file +/themes diff --git a/ExpressionEngine.gitignore b/ExpressionEngine.gitignore index c56e7abc..75c9aa49 100644 --- a/ExpressionEngine.gitignore +++ b/ExpressionEngine.gitignore @@ -12,4 +12,4 @@ images/pm_attachments/ sized/ thumbs/ _thumbs/ -*/expressionengine/cache/* \ No newline at end of file +*/expressionengine/cache/* diff --git a/Finale.gitignore b/Finale.gitignore index c8ac293b..7ef08e0c 100644 --- a/Finale.gitignore +++ b/Finale.gitignore @@ -11,4 +11,3 @@ # Some versions of Finale have a bug and randomly save extra copies of # the music source as " copy.mus" *copy.mus - diff --git a/ForceDotCom.gitignore b/ForceDotCom.gitignore index ee95ec3d..3933cd4d 100644 --- a/ForceDotCom.gitignore +++ b/ForceDotCom.gitignore @@ -1,4 +1,4 @@ .project .settings salesforce.schema -Referenced Packages \ No newline at end of file +Referenced Packages diff --git a/GWT.gitignore b/GWT.gitignore index 63e3e9c5..c558713f 100644 --- a/GWT.gitignore +++ b/GWT.gitignore @@ -14,4 +14,3 @@ gwt-unitCache/ # more caches and things from deploy # war/WEB-INF/deploy/ war/WEB-INF/classes/ - diff --git a/Global/CVS.gitignore b/Global/CVS.gitignore index 0f0f06ed..01ba8634 100644 --- a/Global/CVS.gitignore +++ b/Global/CVS.gitignore @@ -1,4 +1,4 @@ /CVS/* */CVS/* .cvsignore -*/.cvsignore \ No newline at end of file +*/.cvsignore diff --git a/Global/Espresso.gitignore b/Global/Espresso.gitignore index 1aaec9c4..1234530b 100644 --- a/Global/Espresso.gitignore +++ b/Global/Espresso.gitignore @@ -1 +1 @@ -*.esproj \ No newline at end of file +*.esproj diff --git a/Global/FlexBuilder.gitignore b/Global/FlexBuilder.gitignore index 86543949..b6ce3f1e 100644 --- a/Global/FlexBuilder.gitignore +++ b/Global/FlexBuilder.gitignore @@ -1,2 +1,2 @@ bin/ -bin-debug/ \ No newline at end of file +bin-debug/ diff --git a/Global/Matlab.gitignore b/Global/Matlab.gitignore index f52813b6..79bc56cd 100644 --- a/Global/Matlab.gitignore +++ b/Global/Matlab.gitignore @@ -12,5 +12,5 @@ # Compiled MEX binaries (all platforms) *.mex* -# Simulink Code Generation +# Simulink Code Generation slprj/ diff --git a/Global/PhPStorm.gitignore b/Global/PhPStorm.gitignore index 62c89355..9f11b755 100644 --- a/Global/PhPStorm.gitignore +++ b/Global/PhPStorm.gitignore @@ -1 +1 @@ -.idea/ \ No newline at end of file +.idea/ diff --git a/Global/SBT.gitignore b/Global/SBT.gitignore index 3dfc9d7c..af2427d5 100644 --- a/Global/SBT.gitignore +++ b/Global/SBT.gitignore @@ -4,4 +4,4 @@ target/ lib_managed/ src_managed/ -project/boot/ \ No newline at end of file +project/boot/ diff --git a/Grails.gitignore b/Grails.gitignore index 96f72ec8..605132cf 100644 --- a/Grails.gitignore +++ b/Grails.gitignore @@ -41,4 +41,3 @@ # other *.iws - diff --git a/Joomla.gitignore b/Joomla.gitignore index bcd6feb9..54825f4e 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -393,4 +393,4 @@ tmp/* configuration.php index.php joomla.xml -*.txt \ No newline at end of file +*.txt diff --git a/Kohana.gitignore b/Kohana.gitignore index 42d7030f..8b2ab01a 100644 --- a/Kohana.gitignore +++ b/Kohana.gitignore @@ -1,2 +1,2 @@ application/cache/* -application/logs/* \ No newline at end of file +application/logs/* diff --git a/LemonStand.gitignore b/LemonStand.gitignore index bc59f9c7..c7d94ad3 100644 --- a/LemonStand.gitignore +++ b/LemonStand.gitignore @@ -18,4 +18,4 @@ install.php /modules/shop/* /modules/system/* /modules/users/* -# add content_*.php if you don't want erase client changes to content \ No newline at end of file +# add content_*.php if you don't want erase client changes to content diff --git a/Node.gitignore b/Node.gitignore index 4d063b5c..a72b52eb 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -12,4 +12,4 @@ logs results npm-debug.log -node_modules \ No newline at end of file +node_modules diff --git a/R.gitignore b/R.gitignore index 42effd3f..a0fd3b34 100644 --- a/R.gitignore +++ b/R.gitignore @@ -2,4 +2,4 @@ .Rhistory # Example code in package build process -*-Ex.R \ No newline at end of file +*-Ex.R diff --git a/README.md b/README.md index 66c163ad..42f2caa9 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,9 @@ For more information on gitignore: [gitignore(5)][g5] Since this repo includes a large and diverse number of programming languages, frameworks, editors, -and ecosystems, it's **very helpful** if you can provide -a link to information supporting your pull request. -Up-to-date, canonical documentation that mentions the files +and ecosystems, it's **very helpful** if you can provide +a link to information supporting your pull request. +Up-to-date, canonical documentation that mentions the files to be ignored is best. This ensures we can efficiently go through pull requests diff --git a/Scala.gitignore b/Scala.gitignore index f5b7d72a..4abe7692 100644 --- a/Scala.gitignore +++ b/Scala.gitignore @@ -10,4 +10,4 @@ project/boot/ project/plugins/project/ # Scala-IDE specific -.scala_dependencies \ No newline at end of file +.scala_dependencies diff --git a/Sdcc.gitignore b/Sdcc.gitignore index a4cb9fcd..07ee7d59 100644 --- a/Sdcc.gitignore +++ b/Sdcc.gitignore @@ -6,4 +6,3 @@ *.rel *.rst *.sym - diff --git a/Symfony.gitignore b/Symfony.gitignore index ac10ca80..e5d08cbe 100644 --- a/Symfony.gitignore +++ b/Symfony.gitignore @@ -12,4 +12,4 @@ lib/model/doctrine/base/Base* lib/model/doctrine/*Plugin/base/Base* lib/model/om/* lib/model/map/* -web/*Plugin/* \ No newline at end of file +web/*Plugin/* diff --git a/WordPress.gitignore b/WordPress.gitignore index 6ff1e08d..7194a5b9 100644 --- a/WordPress.gitignore +++ b/WordPress.gitignore @@ -10,4 +10,4 @@ sitemap.xml *.log wp-content/cache/ wp-content/backups/ -sitemap.xml.gz \ No newline at end of file +sitemap.xml.gz diff --git a/Yii.gitignore b/Yii.gitignore index 45a9a931..33a5154d 100644 --- a/Yii.gitignore +++ b/Yii.gitignore @@ -1,3 +1,3 @@ assets/ protected/runtime/ -themes/classic/views/ \ No newline at end of file +themes/classic/views/ diff --git a/ZendFramework.gitignore b/ZendFramework.gitignore index 0b8e5951..014f93f6 100644 --- a/ZendFramework.gitignore +++ b/ZendFramework.gitignore @@ -3,4 +3,3 @@ LICENSE.txt README.txt demos/ extras/documentation - From da36175ff6de9673ad54959fc5d66835755093e8 Mon Sep 17 00:00:00 2001 From: Daisuke Goto Date: Sat, 12 Oct 2013 19:14:17 +0900 Subject: [PATCH 100/164] Fix OSX-specific Icon\r rule --- Global/OSX.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Global/OSX.gitignore b/Global/OSX.gitignore index cf8db5d9..65b94232 100644 --- a/Global/OSX.gitignore +++ b/Global/OSX.gitignore @@ -1,8 +1,9 @@ .DS_Store .AppleDouble .LSOverride -Icon +# Icon must ends with two \r. +Icon # Thumbnails ._* From 5627d20401a51497fa1661af7428116012f4a8de Mon Sep 17 00:00:00 2001 From: Utumno Date: Sat, 12 Oct 2013 22:28:01 +0300 Subject: [PATCH 101/164] .classpath and .project files are *meant to be versioned* As is clearly stated in the [eclipse documentation](http://wiki.eclipse.org/FAQ_How_do_I_set_up_a_Java_project_to_share_in_a_repository%3F). This gitignore has lead to much confusion in SO - please ammend I would guess the same is true for .pydevproject and .cproject but can't be sure/do not have any references on those Also .launch configurations are generally meant to be versioned when saved under project location. See for instance : http://stackoverflow.com/a/337317/281545 --- Global/Eclipse.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 7b3ad03c..251dad17 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -1,5 +1,4 @@ *.pydevproject -.project .metadata bin/** tmp/** @@ -9,7 +8,6 @@ tmp/**/* *.swp *~.nib local.properties -.classpath .settings/ .loadpath From 600983cd4e0c91fc04029b05a6341ded4fcf337f Mon Sep 17 00:00:00 2001 From: torokmark Date: Sun, 13 Oct 2013 20:30:13 +0200 Subject: [PATCH 102/164] Added: ignore Ada object and ali files --- Ada.gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Ada.gitignore diff --git a/Ada.gitignore b/Ada.gitignore new file mode 100644 index 00000000..af635597 --- /dev/null +++ b/Ada.gitignore @@ -0,0 +1,5 @@ +# Object file +*.o + +# Ada Library Information +*.ali \ No newline at end of file From d15f0b17fcdfd99613946e05ba6e165f7af41c07 Mon Sep 17 00:00:00 2001 From: mildis Date: Wed, 16 Oct 2013 18:39:24 +0200 Subject: [PATCH 103/164] add Windows Installer files --- Global/Windows.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Global/Windows.gitignore b/Global/Windows.gitignore index 351ec9d1..41968b07 100644 --- a/Global/Windows.gitignore +++ b/Global/Windows.gitignore @@ -7,3 +7,9 @@ Desktop.ini # Recycle Bin used on file shares $RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msm +*.msp From 59c668120f4bb3ebe68eae62f75819645b4c4d27 Mon Sep 17 00:00:00 2001 From: mildis Date: Wed, 16 Oct 2013 18:45:13 +0200 Subject: [PATCH 104/164] add Windows Installer files --- Global/Archives.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Global/Archives.gitignore b/Global/Archives.gitignore index 82d3b10f..e9eda68b 100644 --- a/Global/Archives.gitignore +++ b/Global/Archives.gitignore @@ -9,6 +9,7 @@ *.bz2 *.xz *.lzma +*.cab #packing-only formats *.iso @@ -21,3 +22,6 @@ *.egg *.deb *.rpm +*.msi +*.msm +*.msp From eb708a6a041b310dd95e5fea4730478a41c81911 Mon Sep 17 00:00:00 2001 From: eddiegroves Date: Mon, 21 Oct 2013 12:40:53 +1100 Subject: [PATCH 105/164] Add WCF tracing file, replace duplicate .log entry WCF tracing files (.svclog) are used by the Service Trace Viewer Tool. --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 0881b8de..6dd03a72 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -43,7 +43,7 @@ build/ *.vssscc .builds *.pidb -*.log +*.svclog *.scc # Visual C++ cache files From 1c5f81d9540bd061ede8ea7f6a90949066ccf991 Mon Sep 17 00:00:00 2001 From: Josh Burns Date: Mon, 21 Oct 2013 16:20:37 +1100 Subject: [PATCH 106/164] Create Yeoman.gitignore --- Yeoman.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Yeoman.gitignore diff --git a/Yeoman.gitignore b/Yeoman.gitignore new file mode 100644 index 00000000..7170d720 --- /dev/null +++ b/Yeoman.gitignore @@ -0,0 +1,6 @@ +node_modules/ +bower_components/ +*.log + +build/ +dist/ From a3878fe7b94cc71fa65b0528bb5feb6f7e9837ea Mon Sep 17 00:00:00 2001 From: Changjian Gao Date: Tue, 22 Oct 2013 18:17:22 +0800 Subject: [PATCH 107/164] Python.gitignore add coverage.xml --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index ded60678..6c82d843 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -26,6 +26,7 @@ pip-log.txt .coverage .tox nosetests.xml +coverage.xml # Translations *.mo From a643bbe364dda703f8ff57003104d9b030f95778 Mon Sep 17 00:00:00 2001 From: Paulo Jimmy Andrade Date: Fri, 25 Oct 2013 12:28:32 -0200 Subject: [PATCH 108/164] Update Joomla.gitignore to ignore J2.5 files --- Joomla.gitignore | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/Joomla.gitignore b/Joomla.gitignore index 54825f4e..2a9b0117 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -10,6 +10,7 @@ administrator/components/com_config/* administrator/components/com_contact/* administrator/components/com_content/* administrator/components/com_cpanel/* +administrator/components/com_finder/* administrator/components/com_installer/* administrator/components/com_languages/* administrator/components/com_login/* @@ -46,6 +47,8 @@ administrator/language/en-GB/en-GB.com_content.ini administrator/language/en-GB/en-GB.com_content.sys.ini administrator/language/en-GB/en-GB.com_cpanel.ini administrator/language/en-GB/en-GB.com_cpanel.sys.ini +administrator/language/en-GB/en-GB.com_finder.ini +administrator/language/en-GB/en-GB.com_finder.sys.ini administrator/language/en-GB/en-GB.com_installer.ini administrator/language/en-GB/en-GB.com_installer.sys.ini administrator/language/en-GB/en-GB.com_languages.ini @@ -92,6 +95,8 @@ administrator/language/en-GB/en-GB.mod_login.ini administrator/language/en-GB/en-GB.mod_login.sys.ini administrator/language/en-GB/en-GB.mod_menu.ini administrator/language/en-GB/en-GB.mod_menu.sys.ini +administrator/language/en-GB/en-GB.mod_multilangstatus.ini +administrator/language/en-GB/en-GB.mod_multilangstatus.sys.ini administrator/language/en-GB/en-GB.mod_online.ini administrator/language/en-GB/en-GB.mod_online.sys.ini administrator/language/en-GB/en-GB.mod_popular.ini @@ -108,6 +113,8 @@ administrator/language/en-GB/en-GB.mod_toolbar.ini administrator/language/en-GB/en-GB.mod_toolbar.sys.ini administrator/language/en-GB/en-GB.mod_unread.ini administrator/language/en-GB/en-GB.mod_unread.sys.ini +administrator/language/en-GB/en-GB.mod_version.ini +administrator/language/en-GB/en-GB.mod_version.sys.ini administrator/language/en-GB/en-GB.plg_authentication_example.ini administrator/language/en-GB/en-GB.plg_authentication_example.sys.ini administrator/language/en-GB/en-GB.plg_authentication_gmail.ini @@ -116,6 +123,8 @@ administrator/language/en-GB/en-GB.plg_authentication_joomla.ini administrator/language/en-GB/en-GB.plg_authentication_joomla.sys.ini administrator/language/en-GB/en-GB.plg_authentication_ldap.ini administrator/language/en-GB/en-GB.plg_authentication_ldap.sys.ini +administrator/language/en-GB/en-GB.plg_captcha_recaptcha.ini +administrator/language/en-GB/en-GB.plg_captcha_recaptcha.sys.ini administrator/language/en-GB/en-GB.plg_content_emailcloak.ini administrator/language/en-GB/en-GB.plg_content_emailcloak.sys.ini administrator/language/en-GB/en-GB.plg_content_geshi.ini @@ -146,6 +155,8 @@ administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.ini administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.sys.ini administrator/language/en-GB/en-GB.plg_extension_joomla.ini administrator/language/en-GB/en-GB.plg_extension_joomla.sys.ini +administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.ini +administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.sys.ini administrator/language/en-GB/en-GB.plg_search_categories.ini administrator/language/en-GB/en-GB.plg_search_categories.sys.ini administrator/language/en-GB/en-GB.plg_search_contacts.ini @@ -160,6 +171,8 @@ administrator/language/en-GB/en-GB.plg_system_cache.ini administrator/language/en-GB/en-GB.plg_system_cache.sys.ini administrator/language/en-GB/en-GB.plg_system_debug.ini administrator/language/en-GB/en-GB.plg_system_debug.sys.ini +administrator/language/en-GB/en-GB.plg_system_highlight.ini +administrator/language/en-GB/en-GB.plg_system_highlight.sys.ini administrator/language/en-GB/en-GB.plg_system_languagefilter.ini administrator/language/en-GB/en-GB.plg_system_languagefilter.sys.ini administrator/language/en-GB/en-GB.plg_system_log.ini @@ -195,6 +208,7 @@ administrator/modules/mod_latest/* administrator/modules/mod_logged/* administrator/modules/mod_login/* administrator/modules/mod_menu/* +administrator/modules/mod_multilangstatus/* administrator/modules/mod_online/* administrator/modules/mod_popular/* administrator/modules/mod_quickicon/* @@ -203,6 +217,7 @@ administrator/modules/mod_submenu/* administrator/modules/mod_title/* administrator/modules/mod_toolbar/* administrator/modules/mod_unread/* +administrator/modules/mod_version/* administrator/modules/index.html administrator/templates/bluestork/* administrator/templates/hathor/* @@ -210,9 +225,11 @@ administrator/templates/system/* administrator/templates/index.html administrator/index.php cache/* +cli/* components/com_banners/* components/com_contact/* components/com_content/* +components/com_finder/* components/com_mailto/* components/com_media/* components/com_newsfeeds/* @@ -296,20 +313,31 @@ language/en-GB/en-GB.tpl_beez5.ini language/en-GB/en-GB.tpl_beez5.sys.ini language/en-GB/en-GB.xml language/en-GB/index.html +language/en-GB/install.xml language/overrides/* language/index.html +libraries/cms.php +libraries/cms/* libraries/joomla/* libraries/phpmailer/* libraries/phputf8/* libraries/simplepie/* libraries/index.html +libraries/import.php libraries/loader.php +libraries/platform.php logs/* +media/cms/* +media/com_finder/* media/contacts/* media/editors/* media/mailto/* media/media/* media/mod_languages/* +media/overrider/* +media/plg_quickicon_extensionupdate/* +media/plg_quickicon_joomlaupdate/* +media/plg_system_highlight/* media/system/* media/index.html modules/mod_articles_archive/* @@ -322,6 +350,7 @@ modules/mod_banners/* modules/mod_breadcrumbs/* modules/mod_custom/* modules/mod_feed/* +modules/mod_finder/* modules/mod_footer/* modules/mod_languages/* modules/mod_login/* @@ -341,8 +370,10 @@ plugins/authentication/gmail/* plugins/authentication/joomla/* plugins/authentication/ldap/* plugins/authentication/index.html +plugins/captcha/recaptcha/* plugins/content/emailcloak/* plugins/content/example/* +plugins/content/finder/* plugins/content/geshi/* plugins/content/joomla/* plugins/content/loadmodule/* @@ -362,6 +393,14 @@ plugins/editors-xtd/index.html plugins/extension/example/* plugins/extension/joomla/* plugins/extension/index.html +plugins/finder/index.html +plugins/finder/categories/* +plugins/finder/contacts/* +plugins/finder/content/* +plugins/finder/newsfeeds/* +plugins/finder/weblinks/* +plugins/quickicon/extensionupdate/* +plugins/quickicon/joomlaupdate/* plugins/search/categories/* plugins/search/contacts/* plugins/search/content/* @@ -370,6 +409,8 @@ plugins/search/weblinks/* plugins/search/index.html plugins/system/cache/* plugins/system/debug/* +plugins/system/highlight/* +plugins/system/languagecode/* plugins/system/languagefilter/* plugins/system/log/* plugins/system/logout/* From 4454b1a933771ce6a9fad1499f6ef60d9f4efd24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dr=2E=20Normen=20Mu=CC=88ller?= Date: Tue, 29 Oct 2013 20:40:20 +0100 Subject: [PATCH 109/164] add `*.fls` to list of LaTeX ignores --- LaTeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index bbaaa01b..dc2f7e84 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -6,6 +6,7 @@ *.blg *.dvi *.fdb_latexmk +*.fls *.glg *.glo *.gls From 5e2de71777e7a5b54aa803d05ecc69eecb6b7037 Mon Sep 17 00:00:00 2001 From: Harshad Sabne Date: Thu, 31 Oct 2013 01:03:56 +0530 Subject: [PATCH 110/164] Add .gradle --- Global/Eclipse.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 7b3ad03c..1775ca2c 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -1,6 +1,7 @@ *.pydevproject .project .metadata +.gradle bin/** tmp/** tmp/**/* From bfbd2f9f73b58d867f3292d6e3a7b7f8e002cd52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dr=2E=20Normen=20Mu=CC=88ller?= Date: Fri, 1 Nov 2013 16:20:41 +0100 Subject: [PATCH 111/164] add `.lib/` to list of Scala ignores This directory is motivated by the `sbt.g8` template. --- Scala.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Scala.gitignore b/Scala.gitignore index 4abe7692..b78b64aa 100644 --- a/Scala.gitignore +++ b/Scala.gitignore @@ -2,6 +2,7 @@ *.log # sbt specific +.lib/ dist/* target/ lib_managed/ From 5343cb30b2bc251fa889bc37364cdec139516ec4 Mon Sep 17 00:00:00 2001 From: Jonathan Campbell Date: Sun, 3 Nov 2013 00:43:07 -0400 Subject: [PATCH 112/164] Create an ignore file for Vagrant's configuration and internal files. Documented at http://docs.vagrantup.com/v2/getting-started/project_setup.html These files are created automatically the first time a vagrant box is started. --- Global/Vagrant.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Global/Vagrant.gitignore diff --git a/Global/Vagrant.gitignore b/Global/Vagrant.gitignore new file mode 100644 index 00000000..3ccb4060 --- /dev/null +++ b/Global/Vagrant.gitignore @@ -0,0 +1,2 @@ +.vagrant/ +Vagrantfile From 830889620e8ede4a1e74009c03e5985580607540 Mon Sep 17 00:00:00 2001 From: Nisarg Shah Date: Mon, 4 Nov 2013 19:21:39 +0530 Subject: [PATCH 113/164] Added Windows specific .obj for objects to ignore. --- C.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/C.gitignore b/C.gitignore index 9fa3b1bf..13d11603 100644 --- a/C.gitignore +++ b/C.gitignore @@ -1,6 +1,7 @@ # Object files *.o *.ko +*.obj # Libraries *.lib From 464ae2642b5fbee2528c24daa922e5ebef7c3c4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Blech?= Date: Sat, 7 Sep 2013 23:12:37 -0300 Subject: [PATCH 114/164] Ignoring [._]*.sw[a-p] instead of *.s[a-w][a-z] The old pattern was too broad and was making VIM ignore Scheme (*.scm) files. Now it only matches files that start with . or _. --- Global/vim.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Global/vim.gitignore b/Global/vim.gitignore index 56ecb404..6c5ee8df 100644 --- a/Global/vim.gitignore +++ b/Global/vim.gitignore @@ -1,5 +1,5 @@ -.*.s[a-w][a-z] -.s[a-w][a-z] +[._]*.s[a-w][a-z] +[._]s[a-w][a-z] *.un~ Session.vim .netrwhist From 364479bc2a62d8bd33582760457c3a868168c233 Mon Sep 17 00:00:00 2001 From: Jamie Humphries Date: Mon, 4 Nov 2013 14:36:51 +0000 Subject: [PATCH 115/164] Add Visual Studio ignore rule for files generated by Microsoft Fakes. Ignores generated Fakes assemblies and related files placed under the FakesAssemblies directory. These files are generated at build time from the *.fakes configuration files. --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index f11eea9f..c993bf0b 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -139,6 +139,9 @@ App_Data/*.ldf *.bim.layout *.bim_*.settings +# Microsoft Fakes +FakesAssemblies/ + # ========================= # Windows detritus # ========================= From 505a14fbf1d3e2d187fa009462844e4a9d380d44 Mon Sep 17 00:00:00 2001 From: Coby Chapple Date: Mon, 4 Nov 2013 17:36:23 +0000 Subject: [PATCH 116/164] start reworking README to better articulate some contributing guidelines --- README.md | 99 ++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 66 insertions(+), 33 deletions(-) diff --git a/README.md b/README.md index 42f2caa9..2e9087ed 100644 --- a/README.md +++ b/README.md @@ -1,41 +1,74 @@ -# A Collection of Useful .gitignore Templates +# A collection of `.gitignore` templates -That's what we're trying to build. Please contribute -by [forking][fk] and sending a [pull request][pr]. +This is GitHub’s collection of [`.gitignore`][man] file templates. +We use this list to populate the `.gitignore` template choosers available +in the GitHub.com interface when creating new repositories and files. -Also **please** only modify **one file** per commit. This'll -make merging easier for everyone. +For more information about how `.gitignore` files work, and how to use them, +the following resources are a great place to start: -Global gitignores (OS-specific, editor-specific) should go into the -`Global/` directory. +- The [Ignoring Files chapter][chapter] of the [Pro Git][progit] book. +- The [Ignoring Files article][help] on the GitHub Help site. +- The [gitignore(5)][man] manual page. -For more information on gitignore: [gitignore(5)][g5] +[man]: http://git-scm.com/docs/gitignore +[help]: https://help.github.com/articles/ignoring-files +[chapter]: http://git-scm.com/book/en/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files +[progit]: http://git-scm.com/book -[fk]: http://help.github.com/forking/ +## 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. + +## Contributing guidelines + +We’d love you to help us improve this project. To help us keep this collection +high quality, we request that contributions adhere to the following guidelines. + +- **Provide a link to the application or project’s homepage**. Unless it’s + extremely popular, there’s a chance the maintainers don’t know about or use + the language, framework, editor, app, or project your change applies to. + +- **Provide links to documentation** supporting the change you’re making. + Current, canonical documentation mentioning the files being ignored is best. + If documentation isn’t available to support your change, do the best you can + to explain what the files being ignored are for. + +- **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* + who works with the applicable technology, rather than just you or your team. + +- **Please consider the scope of your change**. If your change specific to a + certain language or framework, then make sure the change is made to the + template for that language or framework, rather than to the template for an + editor, tool, or operating system. + +- **Please only modify *one file* per commit**. This will make merging and + conflict resolution easier for everyone. + +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. + +## Contributing workflow + +Here’s how we suggest you go about proposing a change to this project: + +1. [Fork this project][fork] to your account. +2. [Create a branch][branch] for the change you intend to make. +3. Make your changes to your fork. +4. [Send a pull request][pr] from your fork’s branch to our `master` branch. + +Using the web-based interface to make changes is fine too, and will help you +by automatically forking the project and prompting to send a pull request too. + +[fork]: http://help.github.com/forking/ +[branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository [pr]: http://help.github.com/pull-requests/ -[g5]: http://man.cx/gitignore -## Pull Requests +## License -Since this repo includes a large and diverse -number of programming languages, frameworks, editors, -and ecosystems, it's **very helpful** if you can provide -a link to information supporting your pull request. -Up-to-date, canonical documentation that mentions the files -to be ignored is best. - -This ensures we can efficiently go through pull requests -and keep quality high. - -## Global Ignores - -git has a global configuration that applies rules to all of -your projects. For example: - - git config --global core.excludesfile ~/.global_ignore - -... will apply the rules in ~/.global_ignore for all of your repos. - -This is useful if you use an editor (like Emacs) that drops backup files, -or if you work in an environment that generates binary or intermediate -files that are always ignored. +[MIT](./LICENSE). From 26367930799f4e3a919e907a4503fd821f77e1ea Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Mon, 4 Nov 2013 11:36:31 -0800 Subject: [PATCH 117/164] Update Scala.gitignore sbt now creates .cache and .history --- Scala.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Scala.gitignore b/Scala.gitignore index b78b64aa..28adf319 100644 --- a/Scala.gitignore +++ b/Scala.gitignore @@ -2,6 +2,8 @@ *.log # sbt specific +.cache/ +.history/ .lib/ dist/* target/ From ebe2e3e57034541eb60360af2c1b40e1d67f874f Mon Sep 17 00:00:00 2001 From: Trevor Sheridan Date: Mon, 4 Nov 2013 15:33:14 -0700 Subject: [PATCH 118/164] Cleaning up Objective-C .gitignore and adding OS X section --- Objective-C.gitignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 6e137049..7e875451 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -1,5 +1,7 @@ -# Xcode +# OS X .DS_Store + +# Xcode */build/* *.pbxuser !default.pbxuser @@ -17,5 +19,5 @@ DerivedData *.hmap *.xccheckout -#CocoaPods +# CocoaPods Pods From ede3453e149374104b8a4d8d882720a6899c6020 Mon Sep 17 00:00:00 2001 From: Coby Chapple Date: Tue, 5 Nov 2013 00:01:34 +0000 Subject: [PATCH 119/164] reword one-file-per-commit guideline to be about keeping PRs atomic --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e9087ed..4e950dc5 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,8 @@ 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 file* per commit**. This will make merging and - conflict resolution easier for everyone. +- **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, the more likely we’ll be to accept your contribution quickly. From ad1a26d50df7298b2ee50f465e3c765e39c14a3c Mon Sep 17 00:00:00 2001 From: Coby Chapple Date: Tue, 5 Nov 2013 00:26:19 +0000 Subject: [PATCH 120/164] add a section about not including every template under the sun --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e950dc5..14042e94 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,12 @@ 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. - + +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 workflow Here’s how we suggest you go about proposing a change to this project: From 02aa9eb7a8b23cd8b239557f7aa6fcd61c9007ff Mon Sep 17 00:00:00 2001 From: Stefan Schlott Date: Thu, 20 Sep 2012 12:00:12 +0200 Subject: [PATCH 121/164] Ignore cache and history (created by SBT >=0.12) --- Global/SBT.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/SBT.gitignore b/Global/SBT.gitignore index af2427d5..1f4d73bc 100644 --- a/Global/SBT.gitignore +++ b/Global/SBT.gitignore @@ -5,3 +5,5 @@ target/ lib_managed/ src_managed/ project/boot/ +.history +.cache From 7375f82fac9811ab1ac21e295e2513173814e053 Mon Sep 17 00:00:00 2001 From: Coby Chapple Date: Tue, 5 Nov 2013 16:58:09 +0000 Subject: [PATCH 122/164] extract out new contributing guidelines to CONTRIBUTING.md --- CONTRIBUTING.md | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 918dd5e3..91543ab4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,34 @@ -Since this repo includes a large and diverse number of programming languages, frameworks, editors, and ecosystems, it's *very helpful* if you can provide a link to information supporting your pull request. Up-to-date, canonical documentation that mentions the files to be ignored is best. +# Contributing guidelines -This ensures we can efficiently go through pull requests and keep quality high. +We’d love you to help us improve this project. To help us keep this collection +high quality, we request that contributions adhere to the following guidelines. + +- **Provide a link to the application or project’s homepage**. Unless it’s + extremely popular, there’s a chance the maintainers don’t know about or use + the language, framework, editor, app, or project your change applies to. + +- **Provide links to documentation** supporting the change you’re making. + Current, canonical documentation mentioning the files being ignored is best. + If documentation isn’t available to support your change, do the best you can + to explain what the files being ignored are for. + +- **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* + who works with the applicable technology, rather than just you or your team. + +- **Please consider the scope of your change**. If your change specific to a + certain language or framework, then make sure the change is made to the + 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 + 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, +the more likely we’ll be to accept your contribution quickly. + +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. From c1af2ae829188b71f71adaf4146d4083ecbcdda4 Mon Sep 17 00:00:00 2001 From: Jonathan Campbell Date: Tue, 5 Nov 2013 22:41:37 -0500 Subject: [PATCH 123/164] Allow the Vagrantfile to be tracked as that's the intended purpose. From the documentation at http://docs.vagrantup.com/v2/getting-started/project_setup.html "The Vagrantfile is meant to be committed to version control with your project, if you use version control. This way, every person working with that project can benefit from Vagrant without any upfront work." --- Global/Vagrant.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/Vagrant.gitignore b/Global/Vagrant.gitignore index 3ccb4060..a977916f 100644 --- a/Global/Vagrant.gitignore +++ b/Global/Vagrant.gitignore @@ -1,2 +1 @@ .vagrant/ -Vagrantfile From f0036b5a401a5d977136308caa0a1810ca15489b Mon Sep 17 00:00:00 2001 From: Niklas Rehfeld Date: Wed, 1 May 2013 16:55:44 +1200 Subject: [PATCH 124/164] add .brf for files generated by hyperref .brf files are generated if the 'backref' or 'pagebackref' options of the hyperref package are enabled. These are intermediate files, so shouldn't be tracked. --- LaTeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index bc7c7927..a0dd1c35 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -7,6 +7,7 @@ *.blg *-blx.aux *-blx.bib +*.brf *.dvi *.fdb_latexmk *.fls From 502cb31439a7ac06413500e164d492172cb76e65 Mon Sep 17 00:00:00 2001 From: = Date: Mon, 7 Oct 2013 20:16:11 +0000 Subject: [PATCH 125/164] Ignore elf and hex in C.gitignore --- C.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C.gitignore b/C.gitignore index 13d11603..6a2f800a 100644 --- a/C.gitignore +++ b/C.gitignore @@ -2,6 +2,7 @@ *.o *.ko *.obj +*.elf # Libraries *.lib @@ -17,3 +18,4 @@ *.exe *.out *.app +*.hex From 6b707950983920ac442f66212a89ff50324e1d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lison=20Fernandes?= Date: Fri, 8 Nov 2013 01:59:29 +0000 Subject: [PATCH 126/164] Added Visual Studio .suo files *.suo files are binary, user specific files generated by Visual Studio with some user configuration information, thus, don't need to be versioned. --- Unity.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 6425e291..123c9928 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -6,3 +6,5 @@ *.csproj *.unityproj *.sln +*.suo +*.user From c038e773de3379f2ee3828228bb9f2f6e9a0906a Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Wed, 16 Jan 2013 18:37:11 -0800 Subject: [PATCH 127/164] Make Python .gitignore directory entries match only directories. This commit also alphabetizes the distribution/packaging section after separating the directory entries from the file entries. I left alone a few entries that I'm not sure about (i.e. *.egg and the "Mr Developer" section). --- Python.gitignore | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Python.gitignore b/Python.gitignore index 9ab94bd9..221be09f 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -1,31 +1,31 @@ # Byte-compiled / optimized / DLL files +__pycache__/ *.py[cod] # C extensions *.so -# Packages -*.egg -*.egg-info -dist -build -eggs -parts -bin -var -sdist -develop-eggs +# Distribution / packaging +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ .installed.cfg -lib -lib64 -__pycache__ +*.egg # Installer logs pip-log.txt # Unit test / coverage reports +.tox/ .coverage -.tox nosetests.xml # Translations From fa1ea3d7f2fcebb65669575b6058a269fd6ad7a6 Mon Sep 17 00:00:00 2001 From: Dan Kerimdzhanov Date: Fri, 8 Nov 2013 18:34:28 +0600 Subject: [PATCH 128/164] remove `npm-debug.log` entry --- Node.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index a72b52eb..cfdef680 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -11,5 +11,4 @@ pids logs results -npm-debug.log node_modules From 024d6e83fcd030396e5ad528bc54641ab9f4954f Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Fri, 8 Nov 2013 14:47:51 +1100 Subject: [PATCH 129/164] Add comment to prevent *.sublime-project being ignored. Based on advice in the documentation at http://www.sublimetext.com/docs/2/projects.html --- Global/SublimeText.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/SublimeText.gitignore b/Global/SublimeText.gitignore index aea37e0a..07951f76 100644 --- a/Global/SublimeText.gitignore +++ b/Global/SublimeText.gitignore @@ -1,2 +1,4 @@ # SublimeText project files *.sublime-workspace + +# *.sublime-project should be checked into the repository as a general rule From 3dadf4e9b3fe20b95e7527219683e14017745d26 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sat, 9 Nov 2013 06:37:30 +1100 Subject: [PATCH 130/164] Make sublime-project rule off by default --- Global/SublimeText.gitignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Global/SublimeText.gitignore b/Global/SublimeText.gitignore index 07951f76..e5bfb723 100644 --- a/Global/SublimeText.gitignore +++ b/Global/SublimeText.gitignore @@ -1,4 +1,6 @@ -# SublimeText project files +# workspace files are user-specific *.sublime-workspace -# *.sublime-project should be checked into the repository as a general rule +# project files should be checked into the repository, unless a significant +# proportion of contributors will probably not be using SublimeText +# *.sublime-project From aa00e7f210e4d4637efeaae6f3699c767ddbd72b Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sat, 9 Nov 2013 07:20:56 +1100 Subject: [PATCH 131/164] Add an IDEA template to cover all related IDEs --- Global/IDEA.gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Global/IDEA.gitignore diff --git a/Global/IDEA.gitignore b/Global/IDEA.gitignore new file mode 100644 index 00000000..47dc3447 --- /dev/null +++ b/Global/IDEA.gitignore @@ -0,0 +1,15 @@ +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode + +## Directory-based project format +.idea/ +# if you remove the above rule, at least ignore user-specific stuff: +# .idea/workspace.xml +# .idea/dataSources.ids +# .idea/dataSources.xml +# .idea/sqlDataSources.xml +# .idea/dynamic.xml + +## File-based project format +*.ipr +*.iws +*.iml From fcf0a9ccab203f2657f70489eff476c6f4556926 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sat, 9 Nov 2013 07:22:55 +1100 Subject: [PATCH 132/164] Remove individual JetBrains IDE templates in favour of IDEA template --- Global/IntelliJ.gitignore | 5 ----- Global/PhPStorm.gitignore | 1 - Global/PyCharm.gitignore | 4 ---- Global/RubyMine.gitignore | 1 - 4 files changed, 11 deletions(-) delete mode 100644 Global/IntelliJ.gitignore delete mode 100644 Global/PhPStorm.gitignore delete mode 100644 Global/PyCharm.gitignore delete mode 100644 Global/RubyMine.gitignore diff --git a/Global/IntelliJ.gitignore b/Global/IntelliJ.gitignore deleted file mode 100644 index 7576fded..00000000 --- a/Global/IntelliJ.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -*.iml -*.ipr -*.iws -.idea/ -out/ diff --git a/Global/PhPStorm.gitignore b/Global/PhPStorm.gitignore deleted file mode 100644 index 9f11b755..00000000 --- a/Global/PhPStorm.gitignore +++ /dev/null @@ -1 +0,0 @@ -.idea/ diff --git a/Global/PyCharm.gitignore b/Global/PyCharm.gitignore deleted file mode 100644 index 57272810..00000000 --- a/Global/PyCharm.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# PyCharm -# http://www.jetbrains.com/pycharm/webhelp/project.html -.idea -.iml diff --git a/Global/RubyMine.gitignore b/Global/RubyMine.gitignore deleted file mode 100644 index 1cc4572e..00000000 --- a/Global/RubyMine.gitignore +++ /dev/null @@ -1 +0,0 @@ -.idea/workspace.xml From af9ec6115c8d6bdaa6f64c69764d9c2259361950 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sat, 9 Nov 2013 07:36:40 +1100 Subject: [PATCH 133/164] Add .idea/tasks.xmk to IDEA ignore suggections --- Global/IDEA.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/IDEA.gitignore b/Global/IDEA.gitignore index 47dc3447..490d877e 100644 --- a/Global/IDEA.gitignore +++ b/Global/IDEA.gitignore @@ -4,6 +4,8 @@ .idea/ # if you remove the above rule, at least ignore user-specific stuff: # .idea/workspace.xml +# .idea/tasks.xml +# and these sensitive or high-churn files: # .idea/dataSources.ids # .idea/dataSources.xml # .idea/sqlDataSources.xml From 1ef80036f0f77ea92daa5e941d4bcf8722eb414b Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sat, 9 Nov 2013 07:37:49 +1100 Subject: [PATCH 134/164] Remove .idea/ from ObjectiveC in favour of Global/IDEA --- Objective-C.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 8dcee63e..af228cde 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -16,7 +16,6 @@ xcuserdata profile *.moved-aside DerivedData -.idea/ *.hmap *.xccheckout From af886f72c89463389b476ef4c94f9c0d847be217 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sat, 9 Nov 2013 08:04:35 +1100 Subject: [PATCH 135/164] Add back out/ for IntelliJ under IDEA --- Global/IDEA.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/IDEA.gitignore b/Global/IDEA.gitignore index 490d877e..9f20c505 100644 --- a/Global/IDEA.gitignore +++ b/Global/IDEA.gitignore @@ -15,3 +15,6 @@ *.ipr *.iws *.iml + +## Additional for IntelliJ +out/ From 9ae01d0b642e9513bd8995baf7ab6753a86d064b Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sat, 9 Nov 2013 08:14:41 +1100 Subject: [PATCH 136/164] Rename template IDEA->JetBrains --- Global/{IDEA.gitignore => JetBrains.gitignore} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Global/{IDEA.gitignore => JetBrains.gitignore} (100%) diff --git a/Global/IDEA.gitignore b/Global/JetBrains.gitignore similarity index 100% rename from Global/IDEA.gitignore rename to Global/JetBrains.gitignore From 70fd1fd45cd624d2b92891b75d5f96e61db0161b Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sat, 9 Nov 2013 09:15:39 +1100 Subject: [PATCH 137/164] Sort LaTeX auxiliary files by package --- LaTeX.gitignore | 78 +++++++++++++++++++++++++++++++++++-------------- 1 file changed, 56 insertions(+), 22 deletions(-) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index a0dd1c35..801ff8e2 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -1,41 +1,75 @@ -*.acn -*.acr -*.alg +## Core latex/pdflatex auxiliary files: *.aux +*.lof +*.log +*.lot +*.fls +*.out +*.toc + +## Intermediate documents: +*.dvi +# these rules might exclude image files for figures etc. +# *.ps +# *.eps +# *.pdf + +## Bibliography auxiliary files (bibtex/biblatex/biber): *.bbl *.bcf *.blg *-blx.aux *-blx.bib -*.brf -*.dvi +*.run.xml + +## Build tool auxiliary files: *.fdb_latexmk -*.fls +*.synctex.gz +*.pdfsync + +## Auxiliary and intermediate files from other packages: + +# algorithms +*.alg +*.loa + +# amsthm +*.thm + +# beamer +*.nav +*.snm +*.vrb + +# glossaries +*.acn +*.acr *.glg *.glo *.gls + +# hyperref +*.brf + +# listings +*.lol + +# makeidx *.idx *.ilg *.ind *.ist -*.loa -*.lof -*.lol -*.log -*.lot + +# minitoc *.maf *.mtc *.mtc0 -*.nav + +# nomencl *.nlo -*.out -*.pdfsync -*.ps -*.run.xml -*.snm -*.synctex.gz -*.thm -*.toc -*.vrb -*.xdy + +# todonotes *.tdo + +# xindy +*.xdy From ce47378cc6993a7bbf8a0bb9ae9832c72fb61d24 Mon Sep 17 00:00:00 2001 From: Manuel Rauber Date: Sat, 9 Nov 2013 09:17:17 +1100 Subject: [PATCH 138/164] Ignore .pyg files from LaTeX's minted package --- LaTeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LaTeX.gitignore b/LaTeX.gitignore index 801ff8e2..b0a911e0 100644 --- a/LaTeX.gitignore +++ b/LaTeX.gitignore @@ -65,6 +65,9 @@ *.mtc *.mtc0 +# minted +*.pyg + # nomencl *.nlo From 81f8222e7fb5b1174b6c83016f0d6c5f28d6abea Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sat, 9 Nov 2013 09:34:27 +1100 Subject: [PATCH 139/164] Rename LaTeX->TeX --- LaTeX.gitignore => TeX.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename LaTeX.gitignore => TeX.gitignore (100%) diff --git a/LaTeX.gitignore b/TeX.gitignore similarity index 100% rename from LaTeX.gitignore rename to TeX.gitignore From 4f659df36e638125a11e47573ad714f8fe75ff6b Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sat, 9 Nov 2013 13:02:44 +1100 Subject: [PATCH 140/164] Remove IntelliJ rules from Android -> Global/JetBrains --- Android.gitignore | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Android.gitignore b/Android.gitignore index 648a292a..0f757f48 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -21,9 +21,3 @@ local.properties # Proguard folder generated by Eclipse proguard/ - -# Intellij project files -*.iml -*.ipr -*.iws -.idea/ From 3932f1f0ce7a687f3df4ac376aa3561c28dd98c5 Mon Sep 17 00:00:00 2001 From: Haralan Dobrev Date: Mon, 19 Aug 2013 17:38:52 +0300 Subject: [PATCH 141/164] Add Composer.gitignore for composer packages Libraries/Projects using [Composer](http://getcomposer.org) for dependency management should include a `.gitignore` file like this. It ignores the vendor folder which Composer uses for dependencies, classmaps and others. Composer keeps git repositories in this folder so it is cleaner if it is ignored. [`composer.lock` should not be ignored.](http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file) > Commit your application's composer.lock (along with composer.json) into version control. > For your library you may commit the composer.lock file if you want to. This can help your team to always test against the same dependency versions. However, this lock file will not have any effect on other projects that depend on it. It only has an effect on the main project. --- Composer.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Composer.gitignore diff --git a/Composer.gitignore b/Composer.gitignore new file mode 100644 index 00000000..aa5997f4 --- /dev/null +++ b/Composer.gitignore @@ -0,0 +1,6 @@ +composer.phar +vendor/ + +# 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 \ No newline at end of file From f4e8e686d6a0d00adbde49e6e3dce91daf265682 Mon Sep 17 00:00:00 2001 From: Ben Moss Date: Sat, 9 Nov 2013 11:32:03 -0500 Subject: [PATCH 142/164] Leiningen by default creates a 'target' directory, not 'targets' --- Leiningen.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Leiningen.gitignore b/Leiningen.gitignore index b8740f70..b8d32453 100644 --- a/Leiningen.gitignore +++ b/Leiningen.gitignore @@ -2,7 +2,7 @@ pom.xml *jar /lib/ /classes/ -/targets/ +/target/ .lein-deps-sum .lein-repl-history .lein-plugins/ From 0ac2f7cb820bf31e15e174d4061a8792686e629e Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sun, 10 Nov 2013 21:12:01 +1100 Subject: [PATCH 143/164] Optionally ignore ruby env normalisation files, with comments --- Rails.gitignore | 15 ++++++++++++--- Ruby.gitignore | 15 +++++++++++++-- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/Rails.gitignore b/Rails.gitignore index 2c74f70f..2debe997 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -3,9 +3,6 @@ .sass-cache capybara-*.html .rspec -.rvmrc -/.bundle -/vendor/bundle /log /tmp /db/*.sqlite3 @@ -16,3 +13,15 @@ capybara-*.html rerun.txt pickle-email-*.html config/initializers/secret_token.rb + +## Environment normalisation: +/.bundle +/vendor/bundle + +# these should be checked in to normalise the environment: +# Gemfile.lock +# .ruby-version +# .ruby-gemset + +# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: +.rvmrc diff --git a/Ruby.gitignore b/Ruby.gitignore index 560d1a6a..a0914d36 100644 --- a/Ruby.gitignore +++ b/Ruby.gitignore @@ -1,10 +1,8 @@ *.gem *.rbc -.bundle .config coverage InstalledFiles -lib/bundler/man pkg rdoc spec/reports @@ -16,3 +14,16 @@ tmp .yardoc _yardoc doc/ + +## Environment normalisation: +.bundle +lib/bundler/man + +# for a library or gem, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# Gemfile.lock +# .ruby-version +# .ruby-gemset + +# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: +.rvmrc From efd3490a54ae595bc9fa0444922a4b3c1b83a153 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sun, 10 Nov 2013 21:13:54 +1100 Subject: [PATCH 144/164] Tighten some ruby ignore patterns --- Ruby.gitignore | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Ruby.gitignore b/Ruby.gitignore index a0914d36..b20c5ce6 100644 --- a/Ruby.gitignore +++ b/Ruby.gitignore @@ -3,21 +3,21 @@ .config coverage InstalledFiles -pkg -rdoc -spec/reports -test/tmp -test/version_tmp -tmp +/pkg/ +/spec/reports +/test/tmp +/test/version_tmp +/tmp/ -# YARD artifacts -.yardoc -_yardoc -doc/ +## Documentation cache and generated files: +/.yardoc +/_yardoc +/doc/ +/rdoc ## Environment normalisation: -.bundle -lib/bundler/man +/.bundle +/lib/bundler/man # for a library or gem, you might want to ignore these files since the code is # intended to run in multiple environments; otherwise, check them in: From 669668fb14bebf2231b7bbd531c76cd52ba9d29d Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sun, 10 Nov 2013 21:39:33 +1100 Subject: [PATCH 145/164] Join comments in rails template --- Rails.gitignore | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Rails.gitignore b/Rails.gitignore index 2debe997..b4be5c7b 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -18,10 +18,8 @@ config/initializers/secret_token.rb /.bundle /vendor/bundle -# these should be checked in to normalise the environment: -# Gemfile.lock -# .ruby-version -# .ruby-gemset +# these should all be checked in to normalise the environment: +# Gemfile.lock, .ruby-version, .ruby-gemset # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: .rvmrc From 4469ba49389225d35d489c9de9ebd7833bfa004d Mon Sep 17 00:00:00 2001 From: Jephir Date: Mon, 11 Nov 2013 12:05:58 -0500 Subject: [PATCH 146/164] Prevent Unity .gitignore from ignoring non-Unity project files Unity only generates project files in the top-level directory. However, the current .gitignore will ignore all project files even if they were not generated by Unity. It is sometimes necessary to include non-Unity project files for level editors or other utility projects that have been added to the repository. --- Unity.gitignore | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Unity.gitignore b/Unity.gitignore index 123c9928..682085a5 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -3,8 +3,8 @@ [Oo]bj/ # Autogenerated VS/MD solution and project files -*.csproj -*.unityproj -*.sln -*.suo -*.user +/*.csproj +/*.unityproj +/*.sln +/*.suo +/*.user From 74b6dd15662be28131bc4e401a40ea911f2014ea Mon Sep 17 00:00:00 2001 From: Milas Bowman Date: Mon, 11 Nov 2013 12:52:59 -0500 Subject: [PATCH 147/164] Add Azure publish XML file * Ignore Azure publish *.azurePubxml files * Add a trailing slash to csx * Remove random whitespace after build output --- VisualStudio.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 504b58ad..e9649177 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -7,7 +7,6 @@ *.sln.docstates # Build results - [Dd]ebug/ [Rr]elease/ x64/ @@ -105,13 +104,14 @@ publish/ # Publish Web Output *.Publish.xml +*.azurePubxml # NuGet Packages Directory ## TODO: If you have NuGet Package Restore enabled, uncomment the next line #packages/ # Windows Azure Build Output -csx +csx/ *.build.csdef # Windows Store app package directory From 8cbac43dabf9c8646672a715213213a996161b08 Mon Sep 17 00:00:00 2001 From: Shea Bunge Date: Tue, 12 Nov 2013 06:27:39 +1100 Subject: [PATCH 148/164] Move BricxCC.gitignore to Global directory --- BricxCC.gitignore => Global/BricxCC.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename BricxCC.gitignore => Global/BricxCC.gitignore (100%) diff --git a/BricxCC.gitignore b/Global/BricxCC.gitignore similarity index 100% rename from BricxCC.gitignore rename to Global/BricxCC.gitignore From 9345b6b46138e6ad16f034f033a2021a247d4ac9 Mon Sep 17 00:00:00 2001 From: Shea Bunge Date: Tue, 12 Nov 2013 06:28:53 +1100 Subject: [PATCH 149/164] Add comment to BricxCC.gitignore --- Global/BricxCC.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Global/BricxCC.gitignore b/Global/BricxCC.gitignore index 9a2fdfae..c1d16a46 100644 --- a/Global/BricxCC.gitignore +++ b/Global/BricxCC.gitignore @@ -1,2 +1,4 @@ +# Bricx Command Center IDE +# http://bricxcc.sourceforge.net *.bak -*.sym \ No newline at end of file +*.sym From 3b7ac85ad84a6815b193ed91bf112e99b0a1eec3 Mon Sep 17 00:00:00 2001 From: tiredpixel Date: Mon, 11 Nov 2013 19:48:31 +0000 Subject: [PATCH 150/164] Slashify Ruby files and directories. Perhaps this is a little pedantic, but without the initial / all such matches within the repository get ignored, and without the trailing slash files as well as directories of that name get ignored. e.g. Specifying `tmp` and `test/tmp` without slashes is redundant, as `tmp` already ignores `test/tmp`, as well as every other `tmp` and `tmp/`. --- Ruby.gitignore | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Ruby.gitignore b/Ruby.gitignore index b20c5ce6..82aa6fac 100644 --- a/Ruby.gitignore +++ b/Ruby.gitignore @@ -1,23 +1,23 @@ -*.gem -*.rbc -.config -coverage -InstalledFiles +/*.gem +/*.rbc +/.config +/coverage/ +/InstalledFiles /pkg/ -/spec/reports -/test/tmp -/test/version_tmp +/spec/reports/ +/test/tmp/ +/test/version_tmp/ /tmp/ ## Documentation cache and generated files: -/.yardoc -/_yardoc +/.yardoc/ +/_yardoc/ /doc/ -/rdoc +/rdoc/ ## Environment normalisation: -/.bundle -/lib/bundler/man +/.bundle/ +/lib/bundler/man/ # for a library or gem, you might want to ignore these files since the code is # intended to run in multiple environments; otherwise, check them in: @@ -26,4 +26,4 @@ InstalledFiles # .ruby-gemset # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: -.rvmrc +/.rvmrc From ca456f73e42b830dbae55f281a7eb0918944ba28 Mon Sep 17 00:00:00 2001 From: tiredpixel Date: Mon, 11 Nov 2013 21:41:11 +0000 Subject: [PATCH 151/164] Unslashify *.gem,*.rbc,.rvmrc . arcresu pointed out that `*.gem`, `*.rbc`, `.rvmrc` might not be at the top level in a repository. Thus, remove leading slashes for these. --- Ruby.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Ruby.gitignore b/Ruby.gitignore index 82aa6fac..99e72c12 100644 --- a/Ruby.gitignore +++ b/Ruby.gitignore @@ -1,5 +1,5 @@ -/*.gem -/*.rbc +*.gem +*.rbc /.config /coverage/ /InstalledFiles @@ -26,4 +26,4 @@ # .ruby-gemset # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: -/.rvmrc +.rvmrc From 97dcb890138e142acde385ac4cf7e2df199f0fbf Mon Sep 17 00:00:00 2001 From: Visgean Skeloru Date: Tue, 12 Nov 2013 01:41:29 +0100 Subject: [PATCH 152/164] #473 no need to have specific gitignore for django --- Django.gitignore | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 Django.gitignore diff --git a/Django.gitignore b/Django.gitignore deleted file mode 100644 index 3416fbb3..00000000 --- a/Django.gitignore +++ /dev/null @@ -1,40 +0,0 @@ -# Django stuff: -*.log -*.pot - -# Python stuff: -*.py[cod] - -# C extensions -*.so - -# Packages -*.egg -*.egg-info -dist -build -eggs -parts -bin -var -sdist -develop-eggs -.installed.cfg -lib -lib64 - -# Installer logs -pip-log.txt - -# Unit test / coverage reports -.coverage -.tox -nosetests.xml - -# Translations -*.mo - -# Mr Developer -.mr.developer.cfg -.project -.pydevproject \ No newline at end of file From 33b416dc000f86ca63cab0dfeaf78f3369a203fd Mon Sep 17 00:00:00 2001 From: Visgean Skeloru Date: Tue, 12 Nov 2013 01:41:53 +0100 Subject: [PATCH 153/164] Update Python.gitignore --- Python.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index d2d6f360..e444c74d 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -33,3 +33,8 @@ nosetests.xml .mr.developer.cfg .project .pydevproject + + +-# Django stuff: + -*.log + -*.pot From 43de894452a5829a3c4cd3f33d4f71fea37102a3 Mon Sep 17 00:00:00 2001 From: Jean Jordaan Date: Tue, 12 Nov 2013 11:27:21 +0700 Subject: [PATCH 154/164] Ignore multiple vim swapfiles In case there is more than one swapfile for a file (.swo, .swn, ...) --- Plone.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plone.gitignore b/Plone.gitignore index 13edefa5..4020322e 100644 --- a/Plone.gitignore +++ b/Plone.gitignore @@ -8,7 +8,7 @@ *.egg-info *.EGG-INFO *.kpf -*.swp +*.sw? *.wpr .*.cfg .installed.cfg From 699a3ac68ac46cefc012c66a4f178e4979750863 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Tue, 12 Nov 2013 16:57:54 +1100 Subject: [PATCH 155/164] Fix a copy/paste mistake --- Python.gitignore | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Python.gitignore b/Python.gitignore index e363b9b9..c077b0e5 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -38,7 +38,6 @@ coverage.xml .project .pydevproject - --# Django stuff: - -*.log - -*.pot +# Django stuff: +*.log +*.pot From 930f476c37ef4d4c8452268b72de55845c8938e1 Mon Sep 17 00:00:00 2001 From: Jean Jordaan Date: Tue, 12 Nov 2013 14:24:09 +0700 Subject: [PATCH 156/164] Remove patterns covered by other templates Remove redundant patterns, and patterns for generic backups, version control dirs, IDEs, OSX. --- Plone.gitignore | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Plone.gitignore b/Plone.gitignore index 4020322e..753e447b 100644 --- a/Plone.gitignore +++ b/Plone.gitignore @@ -1,4 +1,3 @@ -*~ *.pyc *.pyo *.tmp* @@ -7,17 +6,8 @@ *.EGG *.egg-info *.EGG-INFO -*.kpf *.sw? -*.wpr .*.cfg -.installed.cfg -.mr.developer.cfg -.hg/ -.bzr/ -.svn/ -.project -.pydevproject bin/ build/ develop-eggs/ @@ -27,8 +17,3 @@ fake-eggs/ parts/ dist/ var/ - - - -# OSX -.DS_Store From a77f7f23fe17785c6d5fdce1b3eca34a6719caa1 Mon Sep 17 00:00:00 2001 From: Jean Jordaan Date: Tue, 12 Nov 2013 15:09:20 +0700 Subject: [PATCH 157/164] Covered by global vim template --- Plone.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Plone.gitignore b/Plone.gitignore index 753e447b..770a8681 100644 --- a/Plone.gitignore +++ b/Plone.gitignore @@ -6,7 +6,6 @@ *.EGG *.egg-info *.EGG-INFO -*.sw? .*.cfg bin/ build/ From 94a2b3b6685742c7ef314af8d05302916c96e700 Mon Sep 17 00:00:00 2001 From: Ivan Yatskevich Date: Tue, 12 Nov 2013 14:38:34 +0300 Subject: [PATCH 158/164] add .idea_modules/ to Global/JetBrains.gitignore --- Global/JetBrains.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 9f20c505..5db4d2e7 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -18,3 +18,6 @@ ## Additional for IntelliJ out/ + +# generated by mpeltonen/sbt-idea plugin +.idea_modules/ From b75c902dbb5788bbb286e2c394507bb12e183ff8 Mon Sep 17 00:00:00 2001 From: Sam Clements Date: Mon, 5 Aug 2013 23:17:52 +0100 Subject: [PATCH 159/164] Add .cache to the Python .gitignore `.cache` is generated when unittests are run with py.test --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index c077b0e5..fbb82810 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -27,6 +27,7 @@ pip-delete-this-directory.txt # Unit test / coverage reports .tox/ .coverage +.cache nosetests.xml coverage.xml From 088535f046a7cd2b32397db58a841f1c2be2853e Mon Sep 17 00:00:00 2001 From: Jordi Llonch Date: Wed, 13 Nov 2013 04:13:14 +1100 Subject: [PATCH 160/164] Added Sphinx documentation --- Python.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index fbb82810..3d578453 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -42,3 +42,7 @@ coverage.xml # Django stuff: *.log *.pot + +# Sphinx documentation +docs/_build/ + From 40917a4d2f424b80578f8ca9bf89fd0d13628fb5 Mon Sep 17 00:00:00 2001 From: Vikraman Choudhury Date: Wed, 18 Sep 2013 23:28:11 +0530 Subject: [PATCH 161/164] Ignore files generated by cabal sandbox https://github.com/haskell/cabal/wiki/Package-Environments#sandbox-command --- Haskell.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Haskell.gitignore b/Haskell.gitignore index 33ab4f68..cc143076 100644 --- a/Haskell.gitignore +++ b/Haskell.gitignore @@ -6,3 +6,6 @@ cabal-dev *.chs.h .virthualenv .hsenv +.cabal-sandbox/ +cabal.sandbox.config +cabal.config From 25ec5b7c3e4b4c39ef8469f60c98f03686af5aed Mon Sep 17 00:00:00 2001 From: Gilles De Mey Date: Tue, 12 Nov 2013 19:08:25 +0100 Subject: [PATCH 162/164] Update VisualStudio.gitignore I have no idea what this is doing here, totally unrelated to Visual Studio. There is a special OSX gitignore file that you can use. --- VisualStudio.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 4587fa81..c9d41718 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -175,6 +175,3 @@ Desktop.ini # Recycle Bin used on file shares $RECYCLE.BIN/ - -# Mac crap -.DS_Store From e57da65843ec9a8da22d1e1d438581f9b06c5967 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 13 Nov 2013 15:19:36 -0500 Subject: [PATCH 163/164] Moved file to Global --- webMethods.gitignore => Global/webMethods.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename webMethods.gitignore => Global/webMethods.gitignore (100%) diff --git a/webMethods.gitignore b/Global/webMethods.gitignore similarity index 100% rename from webMethods.gitignore rename to Global/webMethods.gitignore From 4a7ab063829284bc1050431a574d7af10f25e79f Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Wed, 13 Nov 2013 14:19:16 -0800 Subject: [PATCH 164/164] Remove generic and Java ignore patterns Those belong in other ignore files. --- Global/webMethods.gitignore | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Global/webMethods.gitignore b/Global/webMethods.gitignore index 937861ef..6c9abb26 100644 --- a/Global/webMethods.gitignore +++ b/Global/webMethods.gitignore @@ -1,11 +1,3 @@ -#files -*.bak -*.class - -#licensefile -Apache_License.txt - -#folders **/IntegrationServer/lib/ **/IntegrationServer/datastore/ **/IntegrationServer/db/