From c9200696fb2325d82c7816cc5b6d1e77a90036b0 Mon Sep 17 00:00:00 2001 From: Michiel Sikma Date: Mon, 29 Dec 2014 15:16:25 +0100 Subject: [PATCH 001/200] Update VirtualEnv.gitignore Ignore .venv files created by virtualenvwrapper and virtualfish for auto-activation purposes. --- Global/VirtualEnv.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/VirtualEnv.gitignore b/Global/VirtualEnv.gitignore index 3fab25b5..043786df 100644 --- a/Global/VirtualEnv.gitignore +++ b/Global/VirtualEnv.gitignore @@ -6,3 +6,4 @@ [Ll]ib [Ss]cripts pyvenv.cfg +.venv From 297b78cea6e3d3ee1f2e41e5c120b0dcf6cdfe97 Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Sat, 17 Jan 2015 12:47:39 -0500 Subject: [PATCH 002/200] Update Android.gitignore Gitignore the temp files directory generated by Android Studio's navigation editor tool. --- Android.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index ccf2efe0..bbf43704 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -25,3 +25,6 @@ proguard/ # Log Files *.log + +# Android Studio Navigation editor temp files +.navigation/ From aa853a08e95d0141998de951936da9bfe0014719 Mon Sep 17 00:00:00 2001 From: Richard Astbury Date: Wed, 21 Jan 2015 11:02:28 +0000 Subject: [PATCH 003/200] added the orleans.codegen.cs file automatically generated by Orleans --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 202b8d79..6513ab10 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -159,6 +159,7 @@ ClientBin/ *.publishsettings node_modules/ bower_components/ +orleans.codegen.cs # RIA/Silverlight projects Generated_Code/ From 0bb759363f51b53363666ae620e171bbf6a738c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20F=C3=B6ldh=C3=A1zi?= Date: Thu, 29 Jan 2015 14:11:33 +0100 Subject: [PATCH 004/200] Add Tern plugin to Eclipse.gitignore The Tern plugin generate a '.tern-project' file in the project directory. (https://github.com/angelozerr/tern.java/wiki/Tern-Eclipse-IDE) --- Global/Eclipse.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 81e44304..29d619b0 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -32,5 +32,8 @@ local.properties # sbteclipse plugin .target +# Tern plugin +.tern-project + # TeXlipse plugin .texlipse From 79234283de7e60615277421f6e79f0c3b05ebb15 Mon Sep 17 00:00:00 2001 From: Denis Grinyuk Date: Tue, 3 Feb 2015 17:25:43 +0300 Subject: [PATCH 005/200] Reworked Lazarus.gitignore according to Lazarus Wiki http://wiki.freepascal.org/File_extensions --- Global/Lazarus.gitignore | 35 +++++++++++++++++++++++++---------- 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/Global/Lazarus.gitignore b/Global/Lazarus.gitignore index 3ef747d7..b32943f1 100644 --- a/Global/Lazarus.gitignore +++ b/Global/Lazarus.gitignore @@ -1,15 +1,30 @@ -#ignore backup files -backup/ - -#ignore files generated by the compiler -lib/ +# Lazarus compiler-generated binaries (safe to delete) +*.exe +*.dll +*.so +*.dylib +*.lrs +*.res *.compiled +*.dbg +*.ppu *.o *.or -*.ppu +*.a -#ignore debug information files -*.dbg +# Lazarus autogenerated files (duplicated info) +*.rst +*.rsj +*.lrt -#exclude executable output in windows -*.exe +# Lazarus local files (user-specific info) +*.lps + +# Lazarus backups and unit output folders. +# These can be changed by user in Lazarus/project options. +backup/ +*.bak +lib/ + +# Application bundle for Mac OS +*.app/ From b6d9dd9f6b766bc2afcff42acc0a0c39378d4755 Mon Sep 17 00:00:00 2001 From: wisitsaks Date: Fri, 20 Feb 2015 10:55:34 +0700 Subject: [PATCH 006/200] Update VisualStudio.gitignore ignore all files in Log/log folder --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 41d71695..67f1ff5f 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -21,6 +21,7 @@ build/ bld/ [Bb]in/ [Oo]bj/ +[Ll]og/ # Visual Studo 2015 cache/options directory .vs/ From 57faa80a185f8b732e55e4fb7643e4793071c53f Mon Sep 17 00:00:00 2001 From: Tushar Kapila Date: Thu, 2 Apr 2015 22:39:52 +0530 Subject: [PATCH 007/200] Update Maven.gitignore Else sub projects (main dir has sub dirs with own pom files - sub modules) targets are not ignored. --- Maven.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Maven.gitignore b/Maven.gitignore index 1cdc9f7f..44c0caae 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -1,4 +1,5 @@ target/ +**/target/ pom.xml.tag pom.xml.releaseBackup pom.xml.versionsBackup From 3ee1463b11a38de325f96a1e311d3196b90cd095 Mon Sep 17 00:00:00 2001 From: Abizer Nasir Date: Fri, 3 Apr 2015 19:28:49 +0100 Subject: [PATCH 008/200] Ignore .virthualenv not .virtualenv This change was introduced in 3bb4e51184066f5cf60daa029c31e7f52398353b, where it was marked as changed due to a typo. However, that is the correct name of this particular virtual environment. See https://hackage.haskell.org/package/virthualenv --- Haskell.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Haskell.gitignore b/Haskell.gitignore index 3f4aa15b..7808ac52 100644 --- a/Haskell.gitignore +++ b/Haskell.gitignore @@ -6,7 +6,7 @@ cabal-dev *.chs.h *.dyn_o *.dyn_hi -.virtualenv +.virthualenv .hpc .hsenv .cabal-sandbox/ From b75ce44424559da6c72e359f6bc13bad815b8731 Mon Sep 17 00:00:00 2001 From: Ray Fang Date: Tue, 14 Apr 2015 21:44:20 +0800 Subject: [PATCH 009/200] Update JetBrains.gitignore according to the knowledge base article --- Global/JetBrains.gitignore | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index dff645a0..6b3ea2a7 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,32 +1,26 @@ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm - -*.iml - -## Directory-based project format: -.idea/ -# if you remove the above rule, at least ignore the following: +# Reference https://intellij-support.jetbrains.com/entries/23393067 # User-specific stuff: -# .idea/workspace.xml -# .idea/tasks.xml -# .idea/dictionaries +.idea/workspace.xml +.idea/tasks.xml +.idea/dictionaries # Sensitive or high-churn files: -# .idea/dataSources.ids -# .idea/dataSources.xml -# .idea/sqlDataSources.xml -# .idea/dynamic.xml -# .idea/uiDesigner.xml +.idea/dataSources.ids +.idea/dataSources.xml +.idea/sqlDataSources.xml +.idea/dynamic.xml +.idea/uiDesigner.xml # Gradle: -# .idea/gradle.xml -# .idea/libraries +.idea/gradle.xml +.idea/libraries # Mongo Explorer plugin: -# .idea/mongoSettings.xml +.idea/mongoSettings.xml ## File-based project format: -*.ipr *.iws ## Plugin-specific files: From 884d8411c1c4694789a70483bb119e21f529f960 Mon Sep 17 00:00:00 2001 From: Ginger Geek Date: Thu, 16 Apr 2015 10:16:48 +0100 Subject: [PATCH 010/200] New IDE released: CLION JetBrains recently released a new C/C++ IDE: CLion --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index dff645a0..5f1d7b68 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,4 +1,4 @@ -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion *.iml From 75bcbcf392ef36b03ec845ed8b2f75e851a9290b Mon Sep 17 00:00:00 2001 From: Julien Bourdeau Date: Fri, 17 Apr 2015 18:25:26 +0200 Subject: [PATCH 011/200] Rework PrestaShop.gitignore The previous file was made for PrestaShop maintainers it didn't suit PrestaShop user needs. --- Prestashop.gitignore | 46 ++++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 25 deletions(-) diff --git a/Prestashop.gitignore b/Prestashop.gitignore index 890c4e60..1c8462b0 100644 --- a/Prestashop.gitignore +++ b/Prestashop.gitignore @@ -1,29 +1,25 @@ -# 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 +# Private files +# The following files contain your database credentials and other personal data. +config/settings.*.php + +# Cache, temp and generated files +# The following files are generated by PrestaShop. + +admin-dev/autoupgrade/ +cache/ config/xml/*.xml -config/settings.inc.php +log/ +*sitemap.xml +themes/*/cache/ +modules/*/config*.xml -log/*.log +# Site content +# The following folders contain product images, virtual products, CSV's, etc. -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 +admin-dev/backups/ +admin-dev/export/ +admin-dev/import/ +download/ +img/ +upload/ From a4661a2d39f9cd733ff616dbcc2918f959828d76 Mon Sep 17 00:00:00 2001 From: Tandoori Date: Sun, 19 Apr 2015 01:43:23 +0900 Subject: [PATCH 012/200] Made it so the folders only get ingored in the root With the current setup these folders are ignored in the whole repo, but they're only automatically generated in the project root so it makes sense to only ignore the ones in the root. I made this change because one of the assets in my project uses a folder called 'Library', and I was wondering why it never uploaded that folder. --- Unity.gitignore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Unity.gitignore b/Unity.gitignore index e31b6a51..9de94098 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -1,7 +1,7 @@ -[Ll]ibrary/ -[Tt]emp/ -[Oo]bj/ -[Bb]uild/ +/[Ll]ibrary/ +/[Tt]emp/ +/[Oo]bj/ +/[Bb]uild/ # Autogenerated VS/MD solution and project files *.csproj From b2e72cc133c3627d4a55889e30eba428e47d766b Mon Sep 17 00:00:00 2001 From: andres-mancera Date: Thu, 23 Apr 2015 07:45:39 -0700 Subject: [PATCH 013/200] Adding a few more files/file extensions/directories for Synopsys VCS. This new version adds: - fsdb waveforms - simv.db.dir/ directory for VHDL top configs - ucli.key - vc_hdrs.h - Also added a few comments about where each one of the files come from. --- Global/SynopsysVCS.gitignore | 58 ++++++++++++++++++++++++++++-------- 1 file changed, 46 insertions(+), 12 deletions(-) diff --git a/Global/SynopsysVCS.gitignore b/Global/SynopsysVCS.gitignore index 97317896..82ffb5be 100644 --- a/Global/SynopsysVCS.gitignore +++ b/Global/SynopsysVCS.gitignore @@ -1,23 +1,57 @@ -# Waveforms -*.vpd +########## Waveforms ####################################### +# Value Change Dumping (VCD) - IEEE Standard *.vcd +# VCDlus Dumping (VPD) - Synopsys proprietary format +*.vpd +# Extended VCD (EVCD) - Dump only port information *.evcd +# Fast Signal DataBase (FSDB) +*.fsdb -# Binary files + +########## Simulation executable file ###################### +# Default name of the simulation executable. A different +# name can be specified with this switch (the associated +# daidir database name is also taken from here) +# -o / simv -# Directories used for compilation -csrc/ -simv.daidir/ -# Log files +########## Intermediate files used for simulation ########## +# Generated for Verilog top configs +simv.daidir/ +# Generated for VHDL top configs +simv.db.dir/ +# Infrastructure necessary to co-simulate SystemC models +# with Verilog/VHDL models. An alternate directory may +# be specified with this switch: +# -Mdir= +csrc/ + + +########### Log files ###################################### +# The switch below allows to specify the file that will be +# used to write all messages from simulation +# -l *.log -# DVE, UCLI related files -DVEfiles/ -ucli* -*.key -# Coverage related files +########## Coverage-related files ########################## +# Generation of coverage result reports is done with urg +# and the database location is specified with this switch: +# urg -dir .vdb simv.vdb/ urgReport/ + + +########## DVE, UCLI related files ######################### +# DVE produces some logs that are created in this directory. +DVEfiles/ +ucli.key + + +########## C Language interface ############################ +# When the design is elaborated for DirectC, VCS will create +# a file in the current directory with declarations for +# C/C++ functions. +vc_hdrs.h From 7fd989641e73307996bacf77ebc232bb9ac982e4 Mon Sep 17 00:00:00 2001 From: Goutham Veeramachaneni Date: Fri, 24 Apr 2015 16:38:03 +0530 Subject: [PATCH 014/200] Update npmjs docs link The previous link gives 404 --- Node.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 123ae94d..71f41b66 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -23,5 +23,5 @@ coverage build/Release # Dependency directory -# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git +# https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git node_modules From a773ba9b041289afb1cab7482d342ff612f7c781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Veyret?= Date: Fri, 24 Apr 2015 16:28:25 +0200 Subject: [PATCH 015/200] Add Java APT class path to Eclipse --- Global/Eclipse.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 81e44304..0e22e957 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -26,6 +26,9 @@ local.properties # JDT-specific (Eclipse Java Development Tools) .classpath +# Java annotation processor (APT) +.factorypath + # PDT-specific .buildpath From ff510bed452dea5a0d2f9be2e8cb09337321477b Mon Sep 17 00:00:00 2001 From: Victor Isadov Date: Fri, 24 Apr 2015 21:10:30 +0300 Subject: [PATCH 016/200] Ignoring WordPress readme.html and license.txt. You don't want to show your WP version to everyone in the web. --- WordPress.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/WordPress.gitignore b/WordPress.gitignore index 052e56ab..2f482615 100644 --- a/WordPress.gitignore +++ b/WordPress.gitignore @@ -11,3 +11,7 @@ wp-content/cache/ wp-content/upgrade/ wp-content/uploads/ wp-content/wp-cache-config.php + +/readme.html +/license.txt + From 1d3c5658ba40ce300dd2c313876609215cd80646 Mon Sep 17 00:00:00 2001 From: Victor Isadov Date: Fri, 24 Apr 2015 21:24:29 +0300 Subject: [PATCH 017/200] Ignore default plugin --- WordPress.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/WordPress.gitignore b/WordPress.gitignore index 2f482615..56032878 100644 --- a/WordPress.gitignore +++ b/WordPress.gitignore @@ -11,6 +11,7 @@ wp-content/cache/ wp-content/upgrade/ wp-content/uploads/ wp-content/wp-cache-config.php +wp-content/plugins/hello.php /readme.html /license.txt From 82ed46d1a538f578d57a495c84dd9b600d6a58ca Mon Sep 17 00:00:00 2001 From: Takafumi Sekine Date: Mon, 27 Apr 2015 19:53:12 +0900 Subject: [PATCH 018/200] Fixed CodeIgniter.gitignore --- CodeIgniter.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CodeIgniter.gitignore b/CodeIgniter.gitignore index 846b8c54..0f77d9e1 100644 --- a/CodeIgniter.gitignore +++ b/CodeIgniter.gitignore @@ -1,6 +1,6 @@ */config/development */logs/log-*.php -*/logs/!index.html +!*/logs/index.html */cache/* -*/cache/!index.html -*/cache/!.htaccess +!*/cache/index.html +!*/cache/.htaccess From a2a1ddb858c4ff66373a16d4a056281961cb2b52 Mon Sep 17 00:00:00 2001 From: Geoffrey Sneddon Date: Tue, 28 Apr 2015 19:41:00 +0100 Subject: [PATCH 019/200] Add Jython compiled class files to the Python ignore file. --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index ba746605..a65d0466 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -1,6 +1,7 @@ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] +*$py.class # C extensions *.so From 5b826028474c8ac38e8c68406408827bfb3039aa Mon Sep 17 00:00:00 2001 From: Geoffrey Sneddon Date: Tue, 28 Apr 2015 19:41:20 +0100 Subject: [PATCH 020/200] Remove the Jython ignore file given it's a subset of the Python one. Much like how there aren't different files for GCC/Clang/MSVC, there shouldn't be different files for different Python impls. --- Jython.gitignore | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 Jython.gitignore diff --git a/Jython.gitignore b/Jython.gitignore deleted file mode 100644 index e7de4f1a..00000000 --- a/Jython.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.pyc -*.class From e1a89ad43245d68727202687666af4598928c728 Mon Sep 17 00:00:00 2001 From: Goutham Veeramachaneni Date: Thu, 30 Apr 2015 10:10:28 +0530 Subject: [PATCH 021/200] Fix typo from node_modules to node-modules Thanks to @arcresu for pointing out! --- Node.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 71f41b66..f7f6a08c 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -23,5 +23,5 @@ coverage build/Release # Dependency directory -# https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git +# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git node_modules From ab8236b358524e1a89f5df50279e3953a2f3d9b1 Mon Sep 17 00:00:00 2001 From: Victor Isadov Date: Thu, 30 Apr 2015 12:04:47 +0300 Subject: [PATCH 022/200] Add Visual Studio Code .gitignore --- VisualStudioCode.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 VisualStudioCode.gitignore diff --git a/VisualStudioCode.gitignore b/VisualStudioCode.gitignore new file mode 100644 index 00000000..0865bb7d --- /dev/null +++ b/VisualStudioCode.gitignore @@ -0,0 +1,2 @@ +.settings + From 89c4f789c073b4cc49ab61f13d36b3406809a2e0 Mon Sep 17 00:00:00 2001 From: Abizer Nasir Date: Thu, 30 Apr 2015 22:17:04 +0100 Subject: [PATCH 023/200] Remove .virtualenv from Haskell.gitignore The file name was incorrect, so it was having no effect. Also, the sandbox environment that this was supposed to be ignoring is deprecated. Probably best to just drop it entirely. --- Haskell.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Haskell.gitignore b/Haskell.gitignore index 7808ac52..48fe6f3e 100644 --- a/Haskell.gitignore +++ b/Haskell.gitignore @@ -6,7 +6,6 @@ cabal-dev *.chs.h *.dyn_o *.dyn_hi -.virthualenv .hpc .hsenv .cabal-sandbox/ From db9ef4a789259b17916558699c7f2a8f1d6ea090 Mon Sep 17 00:00:00 2001 From: Victor Isadov Date: Sat, 2 May 2015 10:56:11 +0300 Subject: [PATCH 024/200] Move VS Code to Global folder --- VisualStudioCode.gitignore => Global/VisualStudioCode.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename VisualStudioCode.gitignore => Global/VisualStudioCode.gitignore (100%) diff --git a/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore similarity index 100% rename from VisualStudioCode.gitignore rename to Global/VisualStudioCode.gitignore From f441f790d21c02ff96e0bf7391f1616d46390f82 Mon Sep 17 00:00:00 2001 From: LunicLynx Date: Wed, 6 May 2015 11:04:53 +0200 Subject: [PATCH 025/200] add rule to keep track of directories ending in .Cache More Information http://blogs.msdn.com/b/msbuild/archive/2008/02/11/what-s-up-with-xxx-sln-cache.aspx --- VisualStudio.gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 57a1574c..d65cbcd7 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -150,8 +150,13 @@ csx/ # Windows Store app package directory AppPackages/ -# Others +# Visual Studio cache files +# files endeing in .cache can be ignored *.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others ClientBin/ [Ss]tyle[Cc]op.* ~$* From 5ee2b35cd52c3a5f9d0b1fedef0da7a0580d0e8f Mon Sep 17 00:00:00 2001 From: LunicLynx Date: Wed, 6 May 2015 11:11:06 +0200 Subject: [PATCH 026/200] Update VisualStudio.gitignore --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d65cbcd7..bf6caf01 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -151,7 +151,7 @@ csx/ AppPackages/ # Visual Studio cache files -# files endeing in .cache can be ignored +# files ending in .cache can be ignored *.[Cc]ache # but keep track of directories ending in .cache !*.[Cc]ache/ From 467e257fdb71b6b920dde08ef16337e80ef91bb6 Mon Sep 17 00:00:00 2001 From: Sayed Ibrahim Hashimi Date: Wed, 6 May 2015 14:57:21 -0700 Subject: [PATCH 027/200] adding artifacts and project.lock.json for asp.net 5 --- VisualStudio.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 57a1574c..f6755c5a 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -38,6 +38,10 @@ TestResult.xml [Rr]eleasePS/ dlldata.c +# ASP.NET 5 +project.lock.json +artifacts/ + *_i.c *_p.c *_i.h From 9735a2cadffbac8d172bfaafd9181f559b2d6265 Mon Sep 17 00:00:00 2001 From: Victor Gama Date: Thu, 7 May 2015 00:28:54 -0300 Subject: [PATCH 028/200] Update CocoaPods guide URL This updates the link provided to the CocoaPods documentation regarding whether the Pods directory should be ignored or not. --- Objective-C.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index c964cd88..fffb5ed0 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -21,6 +21,6 @@ DerivedData # # We recommend against adding the Pods directory to your .gitignore. However # you should judge for yourself, the pros and cons are mentioned at: -# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control +# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # #Pods/ From 9c8c32fea57a9539241900c93cce2d65b62aa418 Mon Sep 17 00:00:00 2001 From: Darwin Bautista Date: Thu, 7 May 2015 13:39:08 +0800 Subject: [PATCH 029/200] Android: Remove redundant pattern for matching build directories build/ already matches all directories named 'build' in the repository, regardless of level. Gradle can have more than two levels of project nesting. However, /*/build/ matches only the 'build' directories of 2nd-level projects. Thus, the first pattern is more appropriate than the second. --- Android.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Android.gitignore b/Android.gitignore index ccf2efe0..9068cd01 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -15,7 +15,6 @@ gen/ # Gradle files .gradle/ build/ -/*/build/ # Local configuration file (sdk path, etc) local.properties From 00e9cd8dec25bb8ad1d5ac96341d32c9a88c8d52 Mon Sep 17 00:00:00 2001 From: Damian Hickey Date: Fri, 8 May 2015 09:37:34 +0200 Subject: [PATCH 030/200] ASPNET5 -> DNX As discussed in #1505 --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 52103c3d..382280af 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -38,7 +38,7 @@ TestResult.xml [Rr]eleasePS/ dlldata.c -# ASP.NET 5 +# DNX project.lock.json artifacts/ From 507c3949bea442a308cc04fdbbf6560754c9f5ee Mon Sep 17 00:00:00 2001 From: Ben Bodenmiller Date: Sun, 10 May 2015 05:21:36 -0700 Subject: [PATCH 031/200] sync up xcode related gitignore files some details based on #1221 --- Global/Xcode.gitignore | 11 ++++++++++- Objective-C.gitignore | 20 ++++++++++++++++++-- Swift.gitignore | 13 +++++++++++-- 3 files changed, 39 insertions(+), 5 deletions(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index 1b81d249..d07b7894 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -1,4 +1,12 @@ +# Xcode +# +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +## Build generated build/ +DerivedData + +## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -8,7 +16,8 @@ build/ *.perspectivev3 !default.perspectivev3 xcuserdata + +## Other *.xccheckout *.moved-aside -DerivedData *.xcuserstate diff --git a/Objective-C.gitignore b/Objective-C.gitignore index fffb5ed0..7f24b4de 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -1,6 +1,12 @@ # Xcode # +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +## Build generated build/ +DerivedData + +## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -10,12 +16,15 @@ build/ *.perspectivev3 !default.perspectivev3 xcuserdata + +## Other *.xccheckout *.moved-aside -DerivedData +*.xcuserstate + +## Obj-C/Swift specific *.hmap *.ipa -*.xcuserstate # CocoaPods # @@ -24,3 +33,10 @@ DerivedData # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # #Pods/ + +# Carthage +# +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build diff --git a/Swift.gitignore b/Swift.gitignore index 8615121b..583de456 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -1,6 +1,12 @@ # Xcode # +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +## Build generated build/ +DerivedData + +## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -10,12 +16,15 @@ build/ *.perspectivev3 !default.perspectivev3 xcuserdata + +## Other *.xccheckout *.moved-aside -DerivedData +*.xcuserstate + +## Obj-C/Swift specific *.hmap *.ipa -*.xcuserstate # CocoaPods # From 456199c5b70adccbd82a4fadce0a2fb4b92a1493 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 11 May 2015 11:30:50 +0300 Subject: [PATCH 032/200] Ignore temp Hypothesis test things https://github.com/DRMacIver/hypothesis https://hypothesis.readthedocs.org --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index a65d0466..7d440988 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -43,6 +43,7 @@ htmlcov/ nosetests.xml coverage.xml *,cover +.hypothesis/ # Translations *.mo From c63fc582604c6859782e930538f68625415f5d55 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 14 May 2015 14:02:26 +0930 Subject: [PATCH 033/200] Revert "Update Maven.gitignore" --- Maven.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Maven.gitignore b/Maven.gitignore index 44c0caae..1cdc9f7f 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -1,5 +1,4 @@ target/ -**/target/ pom.xml.tag pom.xml.releaseBackup pom.xml.versionsBackup From f7c6c768c9ed3c092047fd5e623fd9f00841237a Mon Sep 17 00:00:00 2001 From: Zander Bolgar Date: Thu, 14 May 2015 15:03:22 -0400 Subject: [PATCH 034/200] Remove Meteor.gitignore There are only two entries in this .gitignore, and both are not needed. - .meteor/local is already ignored by the standard Meteor .gitignore that is included with every project. This is redundant and should b left solely to the standard Meteor .gitignore in case this changes in the future. - .meteor/meteorite should no longer be in any Meteor project. Meteorite was a package manager for Meteor, but it has been replaced by an official package manager built into the Meteor CLI. This directory should not exist, except on out of date Meteor projects which already have this ignore present. --- Meteor.gitignore | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 Meteor.gitignore diff --git a/Meteor.gitignore b/Meteor.gitignore deleted file mode 100644 index 0167b87c..00000000 --- a/Meteor.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.meteor/local -.meteor/meteorite From d0c5830a25831f1e8c752fcec92095295baca969 Mon Sep 17 00:00:00 2001 From: Jeremy Coatelen Date: Fri, 15 May 2015 14:21:22 +0200 Subject: [PATCH 035/200] [Tex] Change *.mtc0 to *.mtc[1-9][0-9] When using minitoc package, LateX often generates multiple .mtc files such as `*.mtc0`, `*.mtc1`, ..., `*.mtc13`, ... This patch allows one to ignore all *.mtc files from index 0 to index 99 (ignoring `*.mtc[1-9][0-9]`). --- TeX.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TeX.gitignore b/TeX.gitignore index ad74c654..2998177b 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -93,7 +93,8 @@ acs-*.bib # minitoc *.maf *.mtc -*.mtc0 +*.mtc[0-9] +*.mtc[1-9][0-9] # minted _minted* From eab7f25a2b16e27f9075918a949db6ff18128d6e Mon Sep 17 00:00:00 2001 From: Lars Gyrup Brink Nielsen Date: Fri, 15 May 2015 20:35:12 +0200 Subject: [PATCH 036/200] Add slash to .sass-cache Add slash to `.sass-cache` to signify intent of matching directories. --- Sass.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sass.gitignore b/Sass.gitignore index 0f1905d3..486b32ce 100644 --- a/Sass.gitignore +++ b/Sass.gitignore @@ -1,2 +1,2 @@ -.sass-cache +.sass-cache/ *.css.map From 1e33ef1213984c724ed3ed2fb6cf0090d8161a58 Mon Sep 17 00:00:00 2001 From: Markus Hauge Date: Sat, 16 May 2015 17:34:59 +0200 Subject: [PATCH 037/200] Update VisualStudio.gitignore --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 968cae72..a3b326d8 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -94,7 +94,7 @@ _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user -# JustCode is a .NET coding addin-in +# JustCode is a .NET coding add-in .JustCode # TeamCity is a build add-in From 747196008eff6dd4bc13b25a4b5ea12c94d781cd Mon Sep 17 00:00:00 2001 From: Sayed Ibrahim Hashimi Date: Tue, 19 May 2015 15:27:54 -0700 Subject: [PATCH 038/200] removing bower_components and fixing typo --- VisualStudio.gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index a3b326d8..385a36e0 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -22,7 +22,7 @@ bld/ [Bb]in/ [Oo]bj/ -# Visual Studo 2015 cache/options directory +# Visual Studio 2015 cache/options directory .vs/ # MSTest test Results @@ -170,7 +170,6 @@ ClientBin/ *.pfx *.publishsettings node_modules/ -bower_components/ orleans.codegen.cs # RIA/Silverlight projects From fbe660091e3d91dfd21e5728463e9f5b084cbe6e Mon Sep 17 00:00:00 2001 From: Katrin Leinweber Date: Wed, 20 May 2015 17:12:32 +0200 Subject: [PATCH 039/200] ignore OAuth2 token Created for example when using https://github.com/jennybc/googlesheets --- R.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/R.gitignore b/R.gitignore index b9003860..49037a0b 100644 --- a/R.gitignore +++ b/R.gitignore @@ -11,3 +11,6 @@ # produced vignettes vignettes/*.html vignettes/*.pdf + +# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 +.httr-oauth From 6354db35319fb49db367990891d2228e6e85e9ec Mon Sep 17 00:00:00 2001 From: Emil Laine Date: Sat, 23 May 2015 16:22:53 +0300 Subject: [PATCH 040/200] Add CMakeScripts directory Used by some build configurations, e.g. Xcode. --- CMake.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/CMake.gitignore b/CMake.gitignore index 52540e70..b558e9af 100644 --- a/CMake.gitignore +++ b/CMake.gitignore @@ -1,5 +1,6 @@ CMakeCache.txt CMakeFiles +CMakeScripts Makefile cmake_install.cmake install_manifest.txt From c9073cf3e2fc1f9f0a494871a642304f777d29d2 Mon Sep 17 00:00:00 2001 From: Marcel Korpel Date: Thu, 28 May 2015 12:32:05 +0200 Subject: [PATCH 041/200] Remove .SRCINFO (and old .AURINFO) from .gitignore As of AUR 4.0.0 contributors have to maintain a GIT repository per project; .SRCINFO files need to be included in those --- ArchLinuxPackages.gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ArchLinuxPackages.gitignore b/ArchLinuxPackages.gitignore index dcf73900..43656b64 100644 --- a/ArchLinuxPackages.gitignore +++ b/ArchLinuxPackages.gitignore @@ -6,9 +6,5 @@ *.log.* *.sig -# AUR metadata -.AURINFO -.SRCINFO - pkg/ src/ From ebd27357db1285c7c689164236b62802859ff4be Mon Sep 17 00:00:00 2001 From: Marcel Korpel Date: Thu, 28 May 2015 12:37:43 +0200 Subject: [PATCH 042/200] Add .jar, .exe and .msi These files are also regularly downloaded by PKGBUILD scripts and should not be included in the repository --- ArchLinuxPackages.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ArchLinuxPackages.gitignore b/ArchLinuxPackages.gitignore index 43656b64..b7390552 100644 --- a/ArchLinuxPackages.gitignore +++ b/ArchLinuxPackages.gitignore @@ -1,5 +1,8 @@ *.tar *.tar.* +*.jar +*.exe +*.msi *.zip *.tgz *.log From 49e7d64fc6b190703f832c0887d02613ad8823a4 Mon Sep 17 00:00:00 2001 From: Konfekt Date: Fri, 29 May 2015 12:42:14 +0200 Subject: [PATCH 043/200] include preamble files generated by mylatexformat package --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index ad74c654..26e3108d 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -33,6 +33,7 @@ ## Auxiliary and intermediate files from other packages: + # algorithms *.alg *.loa @@ -102,6 +103,9 @@ _minted* # morewrites *.mw +# mylatexformat +*.fmt + # nomencl *.nlo From 4457dcc517a1da5dbdecc80a228b6814cab6c3d5 Mon Sep 17 00:00:00 2001 From: andres-mancera Date: Mon, 1 Jun 2015 14:38:55 -0700 Subject: [PATCH 044/200] Cleaning-up some of the comments that had been previously added. --- Global/SynopsysVCS.gitignore | 53 +++++++++++------------------------- 1 file changed, 16 insertions(+), 37 deletions(-) diff --git a/Global/SynopsysVCS.gitignore b/Global/SynopsysVCS.gitignore index 82ffb5be..eed2432f 100644 --- a/Global/SynopsysVCS.gitignore +++ b/Global/SynopsysVCS.gitignore @@ -1,57 +1,36 @@ -########## Waveforms ####################################### -# Value Change Dumping (VCD) - IEEE Standard +# Waveform formats *.vcd -# VCDlus Dumping (VPD) - Synopsys proprietary format *.vpd -# Extended VCD (EVCD) - Dump only port information *.evcd -# Fast Signal DataBase (FSDB) *.fsdb - -########## Simulation executable file ###################### -# Default name of the simulation executable. A different -# name can be specified with this switch (the associated -# daidir database name is also taken from here) -# -o / +# Default name of the simulation executable. A different name can be +# specified with this switch (the associated daidir database name is +# also taken from here): -o / simv - -########## Intermediate files used for simulation ########## -# Generated for Verilog top configs +# Generated for Verilog and VHDL top configs simv.daidir/ -# Generated for VHDL top configs simv.db.dir/ -# Infrastructure necessary to co-simulate SystemC models -# with Verilog/VHDL models. An alternate directory may -# be specified with this switch: -# -Mdir= + +# Infrastructure necessary to co-simulate SystemC models with +# Verilog/VHDL models. An alternate directory may be specified with this +# switch: -Mdir= csrc/ - -########### Log files ###################################### -# The switch below allows to specify the file that will be -# used to write all messages from simulation -# -l +# Log file - the following switch allows to specify the file that will be +# used to write all messages from simulation: -l *.log - -########## Coverage-related files ########################## -# Generation of coverage result reports is done with urg -# and the database location is specified with this switch: -# urg -dir .vdb +# Coverage results (generated with urg) and database location. The +# following switch can also be used: urg -dir .vdb simv.vdb/ urgReport/ - -########## DVE, UCLI related files ######################### -# DVE produces some logs that are created in this directory. +# DVE and UCLI related files. DVEfiles/ ucli.key - -########## C Language interface ############################ -# When the design is elaborated for DirectC, VCS will create -# a file in the current directory with declarations for -# C/C++ functions. +# When the design is elaborated for DirectC, the following file is created +# with declarations for C/C++ functions. vc_hdrs.h From 457f6464a77881e0408269686dd0698c3b90a98e Mon Sep 17 00:00:00 2001 From: Capi Etheriel Date: Fri, 5 Jun 2015 12:35:49 -0300 Subject: [PATCH 045/200] document Vim file patterns --- Global/Vim.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Global/Vim.gitignore b/Global/Vim.gitignore index 6c5ee8df..325bd576 100644 --- a/Global/Vim.gitignore +++ b/Global/Vim.gitignore @@ -1,6 +1,10 @@ +# swap [._]*.s[a-w][a-z] [._]s[a-w][a-z] +# persistent undo *.un~ +# session Session.vim +# temporary .netrwhist *~ From 07b15ab2a1c2e3e6f9fcf297d7b5a4c21552b39e Mon Sep 17 00:00:00 2001 From: Skyler Berg Date: Sun, 7 Jun 2015 11:40:21 -0700 Subject: [PATCH 046/200] Ignore 'local' folder for virtualenv --- Global/VirtualEnv.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/VirtualEnv.gitignore b/Global/VirtualEnv.gitignore index e2c082c8..831cf3af 100644 --- a/Global/VirtualEnv.gitignore +++ b/Global/VirtualEnv.gitignore @@ -4,6 +4,7 @@ [Bb]in [Ii]nclude [Ll]ib +[Ll]ocal [Ss]cripts pyvenv.cfg pip-selfcheck.json From f85cff8fbeb8bf07dd1217722a617d947160f556 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20C=C5=93ur?= Date: Mon, 8 Jun 2015 12:15:40 +0200 Subject: [PATCH 047/200] DerivedData and xcuserdata are folders; *.xcuserstate is always inside xcuserdata folder --- Global/Xcode.gitignore | 5 ++--- Objective-C.gitignore | 5 ++--- Swift.gitignore | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index d07b7894..c08bace2 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -4,7 +4,7 @@ ## Build generated build/ -DerivedData +DerivedData/ ## Various settings *.pbxuser @@ -15,9 +15,8 @@ DerivedData !default.mode2v3 *.perspectivev3 !default.perspectivev3 -xcuserdata +xcuserdata/ ## Other *.xccheckout *.moved-aside -*.xcuserstate diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 7f24b4de..59f6862a 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -4,7 +4,7 @@ ## Build generated build/ -DerivedData +DerivedData/ ## Various settings *.pbxuser @@ -15,12 +15,11 @@ DerivedData !default.mode2v3 *.perspectivev3 !default.perspectivev3 -xcuserdata +xcuserdata/ ## Other *.xccheckout *.moved-aside -*.xcuserstate ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index 583de456..e278bf19 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -4,7 +4,7 @@ ## Build generated build/ -DerivedData +DerivedData/ ## Various settings *.pbxuser @@ -15,12 +15,11 @@ DerivedData !default.mode2v3 *.perspectivev3 !default.perspectivev3 -xcuserdata +xcuserdata/ ## Other *.xccheckout *.moved-aside -*.xcuserstate ## Obj-C/Swift specific *.hmap From 4323f1e2c8faa792dac2619a1983fc9ffa4fffc1 Mon Sep 17 00:00:00 2001 From: Brian Gesiak Date: Tue, 9 Jun 2015 00:24:09 -0400 Subject: [PATCH 048/200] [ObjC][Swift] Ignore Xcode SCM blueprint files These files are automatically generated by Xcode and maintain information regarding source control. Xcode is typically used in Objective-C and Swift projects, so add these to the ignored files for these platforms. --- Objective-C.gitignore | 1 + Swift.gitignore | 1 + 2 files changed, 2 insertions(+) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 7f24b4de..05096f66 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -21,6 +21,7 @@ xcuserdata *.xccheckout *.moved-aside *.xcuserstate +*.xcscmblueprint ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index 583de456..d571cb2c 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -21,6 +21,7 @@ xcuserdata *.xccheckout *.moved-aside *.xcuserstate +*.xcscmblueprint ## Obj-C/Swift specific *.hmap From 7112380d9718c10b2bd9b108785d745fda0d2431 Mon Sep 17 00:00:00 2001 From: Florian Fida Date: Wed, 17 Jun 2015 21:46:54 +0200 Subject: [PATCH 049/200] Update Typo3.gitignore for CMS v6.2 Typo3 now has an official way of overriding Configuration (AdditionalConfiguration.php). /t3lib has moved into the /typo3 Directory. Removed v4 specific ignores because it is deprecated and should no longer be used. There were ignores missing for the symlinked setup. --- Typo3.gitignore | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Typo3.gitignore b/Typo3.gitignore index d1593b16..5781fcc3 100644 --- a/Typo3.gitignore +++ b/Typo3.gitignore @@ -1,18 +1,20 @@ -## TYPO3 v4 +## TYPO3 v6.2 # Ignore serveral upload and file directories. /fileadmin/user_upload/ /fileadmin/_temp_/ +/fileadmin/_processed_/ /uploads/ # Ignore cache /typo3conf/temp_CACHED* /typo3conf/temp_fieldInfo.php -# Ignore local config which overrides typo3 config. -# You should include your local stuff with `@include('localconf_local.php');` at the end of localconf.php. -# See http://stackoverflow.com/questions/11905360/how-best-to-manage-typo3-installations-using-git for details. -/typo3conf/localconf_local.php +/typo3conf/deprecation_*.log +/typo3conf/AdditionalConfiguration.php # Ignore system folders, you should have them symlinked. -# If not comment out the following two entries. +# If not comment out the following entries. /typo3 -/t3lib +/typo3_src +/typo3_src-* +/.htaccess +/index.php # Ignore temp directory. /typo3temp/ From 948a87ffc9be411114abee6692e986e0b90e53be Mon Sep 17 00:00:00 2001 From: Arne de Laat Date: Wed, 24 Jun 2015 11:09:57 +0200 Subject: [PATCH 050/200] Ignore files created by `\tikzexternalize` When using TikZ & PGF with: `\usepackage{tikz} \usetikzlibrary{external} \tikzexternalize` It creates .dpth and .md5 files for the externalized tikzpictures. --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 5c7a0ec4..51dda4b0 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -120,6 +120,10 @@ _minted* *.sympy sympy-plots-for-*.tex/ +# TikZ & PGF +*.dpth +*.md5 + # todonotes *.tdo From daa440bce8d7b2afada98348bffb1435c9d081d9 Mon Sep 17 00:00:00 2001 From: Arne de Laat Date: Wed, 24 Jun 2015 14:02:29 +0200 Subject: [PATCH 051/200] Ignore *.auxlock files created by TikZ in TeX TikZ uses *.auxlock files to check if the main *.aux file is available. This is only used when using the external tikz library. --- TeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/TeX.gitignore b/TeX.gitignore index 51dda4b0..a7a84bc9 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -123,6 +123,7 @@ sympy-plots-for-*.tex/ # TikZ & PGF *.dpth *.md5 +*.auxlock # todonotes *.tdo From f23f998be3d8628ce5bdea5a6581a3e0cbfeb4f1 Mon Sep 17 00:00:00 2001 From: Todd Bealmear Date: Thu, 25 Jun 2015 16:10:53 -0700 Subject: [PATCH 052/200] Ignore Default RSpec State File --- Ruby.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Ruby.gitignore b/Ruby.gitignore index 28f48498..1ba91c05 100644 --- a/Ruby.gitignore +++ b/Ruby.gitignore @@ -5,6 +5,7 @@ /InstalledFiles /pkg/ /spec/reports/ +/spec/examples.txt /test/tmp/ /test/version_tmp/ /tmp/ From 558460c0a8b33bd53046c0e00fc5eaa769155ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20H=C3=A4ggqvist?= Date: Sat, 27 Jun 2015 21:10:46 +0200 Subject: [PATCH 053/200] add Android Studio to the covers list which make it easier to find in search --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 5f1d7b68..573bcf45 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,4 +1,4 @@ -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio *.iml From 3d9c786bc093901210199fd32a2bd87aa803080a Mon Sep 17 00:00:00 2001 From: "(cdep) illabout" Date: Tue, 30 Jun 2015 11:57:53 +0900 Subject: [PATCH 054/200] Added .stack-work/ directory to Haskell .gitignore. .stack-work/ is a work directory used by the `stack` build tool. The `stack` build tool has recently been gaining a lot of traction in the Haskell community. It is very similar to the `cabal` build tool, which also has entries in this Haskell .gitignore file. --- Haskell.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Haskell.gitignore b/Haskell.gitignore index 48fe6f3e..cdc3c4dc 100644 --- a/Haskell.gitignore +++ b/Haskell.gitignore @@ -13,3 +13,4 @@ cabal.sandbox.config *.prof *.aux *.hp +.stack-work/ From 80b0942d7ee387917cc0fadbbba152da26849fb4 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Tue, 30 Jun 2015 12:12:42 -0700 Subject: [PATCH 055/200] Update Dart.gitignore As of Dart 1.12, the pub package manager will start generating a .packages file that will eventually replace the packages/ directory. --- Dart.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Dart.gitignore b/Dart.gitignore index 51834591..38548b37 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -3,6 +3,7 @@ .pub/ build/ packages +.packages # Or the files created by dart2js. *.dart.js From 86516d2d2ae8c35983e86ebd310902613776fea0 Mon Sep 17 00:00:00 2001 From: Jamie Humphries Date: Wed, 1 Jul 2015 15:45:10 +0100 Subject: [PATCH 056/200] Ignore NCrunch temporary files. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 385a36e0..cd8716d3 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -106,6 +106,7 @@ _TeamCity* # NCrunch _NCrunch_* .*crunch*.local.xml +nCrunchTemp_* # MightyMoose *.mm.* From 57355e994dfab5efc93c366215a21b51fce0483d Mon Sep 17 00:00:00 2001 From: JimiC Date: Mon, 13 Jul 2015 19:40:12 +0300 Subject: [PATCH 057/200] Adding optional ignore proposal for wwwroot folder There are use cases where you have gulp/grunt tasks that create the static files of a project from bower_components, images, scripts folders. --- VisualStudio.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index cd8716d3..4bff63b0 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -24,6 +24,8 @@ bld/ # Visual Studio 2015 cache/options directory .vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ # MSTest test Results [Tt]est[Rr]esult*/ From 09a2358b7a69726a43434997f1d945ba82d4d6f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=AFeul=20Rouquette?= Date: Sat, 18 Jul 2015 13:05:19 +0200 Subject: [PATCH 058/200] reledmac use one individual file by series of endnotes : .Aend, .Bend, .Cend etc. See the changelog in reledmac handbook or https://github.com/maieul/ledmac/commit/7fedc07f5bf2af21c86a237957790cb6fdce78a7#diff-60c898960cc69e6fde87e84ddef7d910R11391 --- TeX.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TeX.gitignore b/TeX.gitignore index a7a84bc9..f8b23151 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -49,8 +49,8 @@ acs-*.bib *.snm *.vrb -#(e)ledmac/(e)ledpar -*.end +#(r)(e)ledmac/(r)(e)ledpar +*.?end *.[1-9] *.[1-9][0-9] *.[1-9][0-9][0-9] From 2d69d6a7e3f50891cde36caaa5d94f5f1d3b6457 Mon Sep 17 00:00:00 2001 From: sfhardman Date: Thu, 23 Jul 2015 11:21:57 +1200 Subject: [PATCH 059/200] Add ignores for Visual Studio Lightswitch build output --- VisualStudio.gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 4bff63b0..959913ad 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -206,3 +206,12 @@ FakesAssemblies/ # Visual Studio 6 workspace options file *.opt + +# Visual Studio Lightswitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +**/*.Server/generated.parameters.xml +_Pvt_Extensions \ No newline at end of file From e965495f2f0f8716f1a514930366b82100bf2c17 Mon Sep 17 00:00:00 2001 From: sfhardman Date: Thu, 23 Jul 2015 11:23:05 +1200 Subject: [PATCH 060/200] Add newline at EOF --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 959913ad..9c61a92f 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -214,4 +214,4 @@ FakesAssemblies/ **/*.Server/GeneratedArtifacts **/*.Server/ModelManifest.xml **/*.Server/generated.parameters.xml -_Pvt_Extensions \ No newline at end of file +_Pvt_Extensions From fe783cceeb37ca649a8542ceb9b8711aaa7d3a6e Mon Sep 17 00:00:00 2001 From: sfhardman Date: Fri, 24 Jul 2015 08:42:28 +1200 Subject: [PATCH 061/200] Correct capitalisation of LightSwitch and omit generated.parameters.xml --- VisualStudio.gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 9c61a92f..7c4ca8bb 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -207,11 +207,10 @@ FakesAssemblies/ # Visual Studio 6 workspace options file *.opt -# Visual Studio Lightswitch build output +# Visual Studio LightSwitch build output **/*.HTMLClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts **/*.DesktopClient/ModelManifest.xml **/*.Server/GeneratedArtifacts **/*.Server/ModelManifest.xml -**/*.Server/generated.parameters.xml _Pvt_Extensions From bb2e97662601b51a8148cf3beaa0d661612dfb45 Mon Sep 17 00:00:00 2001 From: Martin d'Allens Date: Mon, 27 Jul 2015 23:41:56 +0200 Subject: [PATCH 062/200] Add KiCad ignore for .bck and .kicad_pcb-bak These are two other filetypes that KiCad creates before overwriting something. --- KiCAD.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/KiCAD.gitignore b/KiCAD.gitignore index 3dd696ea..a9e50ba4 100644 --- a/KiCAD.gitignore +++ b/KiCAD.gitignore @@ -3,6 +3,8 @@ # Temporary files *.000 *.bak +*.bck +*.kicad_pcb-bak # Netlist files (exported from Eeschema) *.net From bc776141620803a57fc330edabc85389b1ce8b0a Mon Sep 17 00:00:00 2001 From: Manav Mandhani Date: Tue, 28 Jul 2015 15:23:02 -0500 Subject: [PATCH 063/200] Include ipython notebook checkpoints to gitignore --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index a65d0466..4caad72d 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -56,3 +56,6 @@ docs/_build/ # PyBuilder target/ + +#Ipython Notebook +.ipynb_checkpoints From dfe46fd1682ec4b3378127164dc5a59987b57939 Mon Sep 17 00:00:00 2001 From: Patrick Fasano Date: Sun, 2 Aug 2015 16:40:16 -0400 Subject: [PATCH 064/200] Update Eagle.gitignore Ignore temporary files created by the autorouter --- Eagle.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Eagle.gitignore b/Eagle.gitignore index a5410348..b12e5bfe 100644 --- a/Eagle.gitignore +++ b/Eagle.gitignore @@ -11,6 +11,10 @@ # comment the following line if you want to have your project file included. eagle.epf +# Autorouter files +*.pro +*.job + # CAM files *.$$$ *.cmp From 2d862c129e8ee7988fe29e371dd23e0a79d588f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Haberth=C3=BCr?= Date: Tue, 4 Aug 2015 10:10:16 +0200 Subject: [PATCH 065/200] Adding more files to ignore when using minitoc As per http://tex.stackexchange.com/q/258515/828 --- TeX.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index a7a84bc9..19930d2f 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -93,6 +93,8 @@ acs-*.bib # minitoc *.maf +*.mlf +*.mlt *.mtc *.mtc[0-9] *.mtc[1-9][0-9] From 14fe6b0a5c149b60ccd5768eaf540f22985f9c8f Mon Sep 17 00:00:00 2001 From: Jonathan Boulanger Date: Tue, 4 Aug 2015 12:13:51 -0400 Subject: [PATCH 066/200] Create Elm.gitignore .gitignore for Elm projects. Ignores installed packages (elm-package.json) and elm-stuff/, as these files will be generated once elm-package has been run for a .elm file. This is also beneficial where dependencies have changed, and an install package is no longer required. elm-repl generated files have also been ignored. Most of the time, elm-repl manages to delete these files automatically, but there are scenarios where these files are not deleted on the closing of elm-repl --- Elm.gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Elm.gitignore diff --git a/Elm.gitignore b/Elm.gitignore new file mode 100644 index 00000000..24c03e28 --- /dev/null +++ b/Elm.gitignore @@ -0,0 +1,5 @@ +# elm-package generated files +elm-package.json +elm-stuff/ +# elm-repl generated files +repl-temp-* From 5e87c947e4ed2f4ba0c5b98ea2711cbaea107df8 Mon Sep 17 00:00:00 2001 From: cyrbil Date: Thu, 6 Aug 2015 11:30:45 +0200 Subject: [PATCH 067/200] Add ignore for npm debug log files --- Node.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Node.gitignore b/Node.gitignore index f7f6a08c..b38069de 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -1,6 +1,7 @@ # Logs logs *.log +npm-debug.log* # Runtime data pids From 929482aba838e5d73a576c654f0af36fbab4339a Mon Sep 17 00:00:00 2001 From: Felipe Plets Date: Tue, 11 Aug 2015 13:48:47 -0300 Subject: [PATCH 068/200] Add .sap Visual Studio profiler session file In Windows Phone 8 development each profiler session generates a new .sap file, which is automatically added to the root of the project. This is an XML manifest describing the detailed profiler logs created in the PerfLogs folder. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 7c4ca8bb..150691aa 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -84,6 +84,7 @@ ipch/ *.psess *.vsp *.vspx +*.sap # TFS 2012 Local Workspace $tf/ From 6895b7c280d8ea3398c2c9e26661c6783483bc8c Mon Sep 17 00:00:00 2001 From: Guy B Date: Sun, 16 Aug 2015 15:07:17 +0300 Subject: [PATCH 069/200] Adding the Android Studio captures folder The captures folder is used by Android studio to keep heap dumps and other captures files. These are usually not shared as part of the source file. --- Android.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index 94eb0fb1..c9c2248a 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -27,3 +27,6 @@ proguard/ # Android Studio Navigation editor temp files .navigation/ + +# Android Studio captures folder +captures/ From 22294e017f526cee5c87fa031e6843c553d216be Mon Sep 17 00:00:00 2001 From: "Daniel A. Maierhofer" Date: Sat, 22 Aug 2015 22:02:39 +0200 Subject: [PATCH 070/200] Added dotfiles in working directory Official Documentation: https://mercurial.selenic.com/wiki/FileFormats#Files_in_the_working_directory https://mercurial.selenic.com/wiki/Subrepository The specification for the .hg/ folder is simplified, see: https://stackoverflow.com/a/15057742 --- Global/Mercurial.gitignore | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Global/Mercurial.gitignore b/Global/Mercurial.gitignore index 3173e26f..e65d1137 100644 --- a/Global/Mercurial.gitignore +++ b/Global/Mercurial.gitignore @@ -1,3 +1,6 @@ -/.hg/* -*/.hg/* +.hg/ .hgignore +.hgsigs +.hgsub +.hgsubstate +.hgtags From bd266c15f117fcb85a59c26365c71a2c2549881d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Mon, 24 Aug 2015 12:54:24 +0200 Subject: [PATCH 071/200] Update Gradle.gitignore --- Gradle.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gradle.gitignore b/Gradle.gitignore index 302a5f2f..2200361b 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -6,3 +6,6 @@ gradle-app.setting # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) !gradle-wrapper.jar + +# Cache of project +.gradletasknamecache From 7e09dc6a4e57c161211417d78d63e6db78b5fb59 Mon Sep 17 00:00:00 2001 From: Fabian Raab Date: Mon, 24 Aug 2015 18:02:05 +0200 Subject: [PATCH 072/200] add .fuse_hidden* to Linux --- Global/Linux.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index 5932ea17..f709203d 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -1,5 +1,8 @@ *~ +# temporary files which can be created if a process still has a deleted file handle open +.fuse_hidden* + # KDE directory preferences .directory From 7ea5e704a4ffff2a883f326f0323eeba44b81da5 Mon Sep 17 00:00:00 2001 From: Fabian Raab Date: Mon, 24 Aug 2015 18:12:34 +0200 Subject: [PATCH 073/200] improve description of .fuse_hidden --- Global/Linux.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index f709203d..cc958689 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -1,6 +1,6 @@ *~ -# temporary files which can be created if a process still has a deleted file handle open +# temporary files which can be created if a process still has a handle open of a deleted file .fuse_hidden* # KDE directory preferences From bd9f168a81deeb683214dce1a0b3b951798312b8 Mon Sep 17 00:00:00 2001 From: Ahmed Baracat Date: Tue, 25 Aug 2015 22:36:00 +0200 Subject: [PATCH 074/200] Allow for ignoring other important files Ignore build, MacOSX and Windows files --- Unity.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 9de94098..9c0faa72 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -19,3 +19,14 @@ # Unity3D Generated File On Crash Reports sysinfo.txt + +# Builds +*.apk +*.unitypackage + +# MacOSX-specific +.DS_Store + +# Windows-specific +thumbs.db + From 52405705da0346bb19bb5fdde4c8ada80ccefcaf Mon Sep 17 00:00:00 2001 From: Ahmed Baracat Date: Wed, 26 Aug 2015 11:49:56 +0200 Subject: [PATCH 075/200] Removed OS-specific rules --- Unity.gitignore | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Unity.gitignore b/Unity.gitignore index 9c0faa72..60d2e893 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -23,10 +23,3 @@ sysinfo.txt # Builds *.apk *.unitypackage - -# MacOSX-specific -.DS_Store - -# Windows-specific -thumbs.db - From b34eaa318fef71139cf54ba1d40456e4b6718de8 Mon Sep 17 00:00:00 2001 From: Star Peng Date: Sun, 9 Mar 2014 23:03:43 +0800 Subject: [PATCH 076/200] Add VisualStudio GhostDoc plugin setting file --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 150691aa..16077976 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -199,6 +199,9 @@ UpgradeLog*.htm # Microsoft Fakes FakesAssemblies/ +# GhostDoc plugin setting file +*.GhostDoc.xml + # Node.js Tools for Visual Studio .ntvs_analysis.dat From 9e35c8edb6b5f0e05a45d9dfb255d367811565f0 Mon Sep 17 00:00:00 2001 From: John Nycz Date: Wed, 26 Aug 2015 13:44:50 -0400 Subject: [PATCH 077/200] Incorrect file path Old Path sites/all/README.txt New Path sites/README.txt --- Drupal.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Drupal.gitignore b/Drupal.gitignore index 04aed3b6..0d2fe537 100644 --- a/Drupal.gitignore +++ b/Drupal.gitignore @@ -15,7 +15,7 @@ robots.txt /MAINTAINERS.txt /UPGRADE.txt /README.txt -sites/all/README.txt +sites/README.txt sites/all/modules/README.txt sites/all/themes/README.txt From ed7d67a1757841e03ea70d995e3e7a9fe828afa1 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Mon, 31 Aug 2015 09:39:54 +0200 Subject: [PATCH 078/200] VSCode 0.8.0 config folder change Starting with 0.8.0, VS Code will store its settings in a .vscode folder and no longer in the generic .settings folder. --- Global/VisualStudioCode.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore index 0865bb7d..faa18382 100644 --- a/Global/VisualStudioCode.gitignore +++ b/Global/VisualStudioCode.gitignore @@ -1,2 +1,2 @@ -.settings +.vscode From abd969f6c9c7c0288dc33bfe1beba9603f86c0e3 Mon Sep 17 00:00:00 2001 From: Jonathan Nagy Date: Tue, 1 Sep 2015 19:09:12 +1000 Subject: [PATCH 079/200] Remove entries for Intellij IDEA The *.iml file is IDE specific. It is generated by Intellij IDEA to store project related metadata. It is not a Play Framework specific artifact and should not be included in the PlayFramework.gitignore. See: https://github.com/github/gitignore/pull/1581 I would also vote for the removal of .eclipse and *.eml files on similar grounds but will do so in a separate pull request. --- PlayFramework.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index 4735f055..ae5ec9fe 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -11,7 +11,6 @@ bin/ tmp/ test-result server.pid -*.iml *.eml /dist/ .cache From 338d8f736c5c7f21008a0deec0ed0ddf1ae2db22 Mon Sep 17 00:00:00 2001 From: Michael Stegmann Date: Wed, 2 Sep 2015 15:46:40 +0200 Subject: [PATCH 080/200] Windows Azure Emulator Ignoring directory "efc" and "rfc" created by the Windows Azure Emulator Directory before starting emulator the first time: Directory: C:\temp\AzureCloudService1\AzureCloudService1 Mode LastWriteTime Length Name ---- ------------- ------ ---- d----- 9/1/2015 9:16 AM bin d----- 9/1/2015 9:16 AM WorkerRole1Content -a---- 9/1/2015 9:16 AM 3014 AzureCloudService1.ccproj -a---- 9/1/2015 9:16 AM 144 AzureCloudService1.ccproj.user -a---- 9/1/2015 9:16 AM 505 ServiceConfiguration.Cloud.cscfg -a---- 9/1/2015 9:16 AM 505 ServiceConfiguration.Local.cscfg -a---- 9/1/2015 9:16 AM 428 ServiceDefinition.csdef And after starting the Emulator: Directory: C:\temp\AzureCloudService1\AzureCloudService1 Mode LastWriteTime Length Name ---- ------------- ------ ---- d----- 9/1/2015 9:16 AM bin d----- 9/1/2015 9:19 AM csx d----- 9/1/2015 9:19 AM ecf d----- 9/1/2015 9:19 AM obj d----- 9/1/2015 9:19 AM rcf d----- 9/1/2015 9:16 AM WorkerRole1Content -a---- 9/1/2015 9:16 AM 3014 AzureCloudService1.ccproj -a---- 9/1/2015 9:16 AM 144 AzureCloudService1.ccproj.user -a---- 9/1/2015 9:16 AM 505 ServiceConfiguration.Cloud.cscfg -a---- 9/1/2015 9:16 AM 505 ServiceConfiguration.Local.cscfg -a---- 9/1/2015 9:16 AM 428 ServiceDefinition.csdef --- VisualStudio.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 150691aa..e37f6611 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -155,6 +155,10 @@ publish/ csx/ *.build.csdef +# Windows Azure Emulator +efc/ +rfc/ + # Windows Store app package directory AppPackages/ From d9b8a12b5f27f55023f8c8d19407e3afef9cb1e9 Mon Sep 17 00:00:00 2001 From: David Huerta Date: Wed, 9 Sep 2015 13:48:12 -0400 Subject: [PATCH 081/200] Adding rule to not accidentally publish your PGP/GPG private keys. --- Global/GPG.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Global/GPG.gitignore diff --git a/Global/GPG.gitignore b/Global/GPG.gitignore new file mode 100644 index 00000000..7740a015 --- /dev/null +++ b/Global/GPG.gitignore @@ -0,0 +1,2 @@ +secring.* + From 9978001b13ad08bc2e67dafcc2ac66fa714762f6 Mon Sep 17 00:00:00 2001 From: Paolo Fulgoni Date: Fri, 11 Sep 2015 17:16:42 +0200 Subject: [PATCH 082/200] Add rule for MS PowerPoint temporary files --- Global/MicrosoftOffice.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/MicrosoftOffice.gitignore b/Global/MicrosoftOffice.gitignore index 412297bb..4a2edc7e 100644 --- a/Global/MicrosoftOffice.gitignore +++ b/Global/MicrosoftOffice.gitignore @@ -8,3 +8,6 @@ # Excel Backup File *.xlk + +# PowerPoint temporary +~$*.ppt* From cbe292daea4fb21d2fe0373d912df865a9bbf4af Mon Sep 17 00:00:00 2001 From: propersquid Date: Mon, 14 Sep 2015 08:31:00 -0700 Subject: [PATCH 083/200] Update Tags.gitignore Updated the tags ignore to include the .tags file. The main reason behind this is because Atom's symbols-view (https://atom.io/packages/symbols-view) supports tags/.tags/TAGS/.TAGS. Therefore, I thought it was a good idea to add the .tags/.TAGS to the ignore list. --- Global/Tags.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/Tags.gitignore b/Global/Tags.gitignore index 45922ec1..c0318165 100644 --- a/Global/Tags.gitignore +++ b/Global/Tags.gitignore @@ -1,7 +1,9 @@ # Ignore tags created by etags, ctags, gtags (GNU global) and cscope TAGS +.TAGS !TAGS/ tags +.tags !tags/ gtags.files GTAGS From 4c8e8d3ad10dbf3ddd51abf6392792f6e11abf47 Mon Sep 17 00:00:00 2001 From: Alexander Shvets Date: Tue, 15 Sep 2015 10:05:16 +0300 Subject: [PATCH 084/200] add shelf (VCS -> Shelve changes...) --- Global/JetBrains.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 573bcf45..de25d455 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -10,6 +10,7 @@ # .idea/workspace.xml # .idea/tasks.xml # .idea/dictionaries +# .idea/shelf # Sensitive or high-churn files: # .idea/dataSources.ids From b55b8911c351ac0f34cb6d65aca0b34a8c82fe00 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Tue, 15 Sep 2015 17:48:17 +1000 Subject: [PATCH 085/200] Update Umbraco.gitignore Add ImageProcessor cached files and nuget package updates --- Umbraco.gitignore | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index 21af92de..d5877017 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -1,12 +1,21 @@ # Note: VisualStudio gitignore rules may also be relevant +# ========================= +# Umbraco +# ========================= # Ignore unimportant folders generated by Umbraco **/App_Data/ClientDependency/ **/App_Data/ExamineIndexes/ **/App_Data/Logs/ **/App_Data/[Pp]review/ **/App_Data/TEMP/ -Cached/ +**/App_Data/NuGetBackup/ +**/App_Data/FeedCache/ +**/App_Data/courier/revisions/ +**/App_Data/courier/cache/ +**/App_Data/umbraco.licensing.log.txt +**/App_Data/*.udt +**/aspnet_client/ # Ignore Umbraco content cache file **/App_Data/umbraco.config @@ -15,3 +24,9 @@ Cached/ # Make sure to include details from VisualStudio.gitignore BEFORE this !**/App_Data/[Pp]ackages/ !**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages + +# ========================= +# ImageProcessor DiskCache +# ========================= +**/App_Data/cache/ +Cached/ From 3ceedd266a05a299e8144499e300d50b01a07cc3 Mon Sep 17 00:00:00 2001 From: Nellemandela Date: Tue, 22 Sep 2015 20:02:06 +0200 Subject: [PATCH 086/200] Added ignore for Paket Added ignore as recomended in http://fsprojects.github.io/Paket/getting-started.html --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 150691aa..64f70401 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -215,3 +215,6 @@ FakesAssemblies/ **/*.Server/GeneratedArtifacts **/*.Server/ModelManifest.xml _Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe From ee6df1c910e3667d8b6861524b99e5ae9d17b287 Mon Sep 17 00:00:00 2001 From: James Dennes Date: Wed, 23 Sep 2015 18:56:15 +0200 Subject: [PATCH 087/200] Use https for Help URLs --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 14042e94..847584bc 100644 --- a/README.md +++ b/README.md @@ -31,17 +31,17 @@ 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 @@ -70,9 +70,9 @@ Here’s how we suggest you go about proposing a change to this project: 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/ +[fork]: https://help.github.com/forking/ [branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository -[pr]: http://help.github.com/pull-requests/ +[pr]: https://help.github.com/pull-requests/ ## License From 75fc01c84115f17b162d8585caf8d157bac21dbb Mon Sep 17 00:00:00 2001 From: James Dennes Date: Wed, 23 Sep 2015 18:58:46 +0200 Subject: [PATCH 088/200] Avoid redirecting by using currently Help URLs --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 847584bc..5c4d20df 100644 --- a/README.md +++ b/README.md @@ -70,9 +70,9 @@ Here’s how we suggest you go about proposing a change to this project: 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]: https://help.github.com/forking/ +[fork]: https://help.github.com/articles/fork-a-repo/ [branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository -[pr]: https://help.github.com/pull-requests/ +[pr]: https://help.github.com/articles/using-pull-requests/ ## License From 611c51a2b3e72d46ba2f3167213ef7817b34f098 Mon Sep 17 00:00:00 2001 From: Martin Nowak Date: Sun, 27 Sep 2015 18:45:12 +0200 Subject: [PATCH 089/200] gitignore file for D Ignore the usual obj/library/executable files. See https://github.com/D-Programming-Language/dub/blob/89c8dea75ae9cfde1ae6cfb7d9fe03dbccdbbdf8/source/dub/init.d#L168 for dub's default .gitignore. --- D.gitignore | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 D.gitignore diff --git a/D.gitignore b/D.gitignore new file mode 100644 index 00000000..b4433f8a --- /dev/null +++ b/D.gitignore @@ -0,0 +1,20 @@ +# Compiled Object files +*.o +*.obj + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Compiled Static libraries +*.a +*.lib + +# Executables +*.exe + +# DUB +.dub +docs.json +__dummy.html From ce170fa831556f92f247ae085e83c3e3d794565f Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Mon, 28 Sep 2015 15:06:14 -0700 Subject: [PATCH 090/200] Add Otto https://ottoproject.io --- Global/Otto.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 Global/Otto.gitignore diff --git a/Global/Otto.gitignore b/Global/Otto.gitignore new file mode 100644 index 00000000..5aa263f9 --- /dev/null +++ b/Global/Otto.gitignore @@ -0,0 +1 @@ +.otto/ From 432e40ac51b917dc6958ba9deec5dcb4734dbb9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20H=C3=A4ggqvist?= Date: Wed, 30 Sep 2015 02:39:11 +0200 Subject: [PATCH 091/200] add fabric.properties Since that is what it should be called now a days according to https://dev.twitter.com/fabric/android/integrating --- Global/JetBrains.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 573bcf45..e8efba72 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -44,3 +44,4 @@ atlassian-ide-plugin.xml com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties +fabric.properties From bba5fc645b57da09416716bb6e95c7cd6b4cd574 Mon Sep 17 00:00:00 2001 From: Robert Xu Date: Thu, 1 Oct 2015 08:40:03 -0400 Subject: [PATCH 092/200] Update waf for python3 builds Waf uses .waf3-* if the interpreter is python3. --- Waf.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Waf.gitignore b/Waf.gitignore index 68cacdb9..48e8d8f7 100644 --- a/Waf.gitignore +++ b/Waf.gitignore @@ -1,3 +1,4 @@ # for projects that use Waf for building: http://code.google.com/p/waf/ .waf-* +.waf3-* .lock-* From b510c6633eb7dc66cd9fb6a27509f9ad2a2bc3ce Mon Sep 17 00:00:00 2001 From: Edson Dota Date: Fri, 2 Oct 2015 09:27:59 -0300 Subject: [PATCH 093/200] Add local_settings to Django's ignore --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index a65d0466..ede8087d 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -50,6 +50,7 @@ coverage.xml # Django stuff: *.log +local_settings.py # Sphinx documentation docs/_build/ From 09a78cc2bd668c2261c4432e64d202472da0d37e Mon Sep 17 00:00:00 2001 From: Jim Hester Date: Fri, 2 Oct 2015 08:50:47 -0400 Subject: [PATCH 094/200] Ignore `.RData` files N.B. this ignores only the exact file `.RData` generated by default from `save.image()` and `quit()`. It is _not_ what is referred to in https://github.com/github/gitignore/commit/1f8466164330277fc8c9126ded3cc207ff3baf91 and http://cran.r-project.org/doc/manuals/r-release/R-exts.html#Data-in-packages, which refers only to files with an `*.RData` _extension_. --- R.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/R.gitignore b/R.gitignore index 49037a0b..8eff68f7 100644 --- a/R.gitignore +++ b/R.gitignore @@ -2,6 +2,9 @@ .Rhistory .Rapp.history +# Session Data files +.RData + # Example code in package build process *-Ex.R From 1dff27e662e711c642fa29a73142a7f3341a50f8 Mon Sep 17 00:00:00 2001 From: Julien Roncaglia Date: Sun, 4 Oct 2015 17:00:43 +0200 Subject: [PATCH 095/200] Ignore FAKE - F# Make cache folder Recent versions of FAKE uses a cache folder containing a compiled version of all scripts named .fake that should never be commited to git. --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 64f70401..09c92145 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -218,3 +218,6 @@ _Pvt_Extensions # Paket dependency manager .paket/paket.exe + +# FAKE - F# Make +.fake/ From 8822253ae43658367872f446148725d5ea850fa8 Mon Sep 17 00:00:00 2001 From: enzian Date: Wed, 7 Oct 2015 14:40:06 +0200 Subject: [PATCH 096/200] added excludes for vendored directories (since GO 1.5) --- Go.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Go.gitignore b/Go.gitignore index daf913b1..a8843541 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -22,3 +22,7 @@ _testmain.go *.exe *.test *.prof + +# GO15VENDOREXPERIMENT flag specifics +vendor/** +!vendor/manifest \ No newline at end of file From b14da8f05aea00cb78883299890ccfbb692c818c Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Thu, 8 Oct 2015 07:45:25 -0400 Subject: [PATCH 097/200] Dartdoc, pubspec.lock disabiguation Added directory for dartdoc tool. Disambiguated comment for pubspec.lock pattern. --- Dart.gitignore | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index 38548b37..bf29d7ef 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,4 +1,4 @@ -# Don’t commit the following directories created by pub. +# Don’t commit the following directories created by pub. .buildlog .pub/ build/ @@ -11,5 +11,8 @@ packages *.js.deps *.js.map -# Include when developing application packages. +# Or the files created by dartdoc. +doc/ + +# Don't commit pubspec lock file. (Library packages only! Remove pattern if developing an application package.) pubspec.lock From afeb793d1d753cf0fc69cd2fa01a608a509e6819 Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Thu, 8 Oct 2015 10:43:02 -0400 Subject: [PATCH 098/200] Update Dart.gitignore --- Dart.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dart.gitignore b/Dart.gitignore index 38548b37..b1287d98 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -11,5 +11,8 @@ packages *.js.deps *.js.map -# Include when developing application packages. +# Or the files created by dartdoc. +doc/ + +# Don't commit pubspec lock file. (Library packages only! Remove pattern if developing an application package.) pubspec.lock From d0f5047edcf24b2408a956cdaa676596e3a34997 Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Sat, 10 Oct 2015 07:45:09 -0400 Subject: [PATCH 099/200] Fix line 1 Line 1 somehow different from upstream --- Dart.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dart.gitignore b/Dart.gitignore index bf29d7ef..b1287d98 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,4 +1,4 @@ -# Don’t commit the following directories created by pub. +# Don’t commit the following directories created by pub. .buildlog .pub/ build/ From c414dbc5a8c921a4a8768a01799d49923a63d740 Mon Sep 17 00:00:00 2001 From: Michael SALIHI Date: Sat, 10 Oct 2015 17:39:03 +0200 Subject: [PATCH 100/200] Fix path to ignored only root log, img and cache folder --- Prestashop.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Prestashop.gitignore b/Prestashop.gitignore index 1c8462b0..1e7a58d3 100644 --- a/Prestashop.gitignore +++ b/Prestashop.gitignore @@ -7,9 +7,9 @@ config/settings.*.php # The following files are generated by PrestaShop. admin-dev/autoupgrade/ -cache/ +/cache/* config/xml/*.xml -log/ +/log/* *sitemap.xml themes/*/cache/ modules/*/config*.xml @@ -21,5 +21,5 @@ admin-dev/backups/ admin-dev/export/ admin-dev/import/ download/ -img/ +/img/* upload/ From a2d7278d61d5e33a9408f0b675d65b8bb60b189b Mon Sep 17 00:00:00 2001 From: Jonathan Chu Date: Sun, 11 Oct 2015 21:47:46 -0400 Subject: [PATCH 101/200] Ignore all Emacs flycheck_*.el files --- Global/Emacs.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index e5327bad..f4e7fe79 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -30,3 +30,6 @@ tramp # cask packages .cask/ + +# Flycheck +flycheck_*.el From a98ae44ae87ebcdf3de1ea10f071176ac4c3e7fb Mon Sep 17 00:00:00 2001 From: Matti Jokitulppo Date: Mon, 12 Oct 2015 19:03:57 +0300 Subject: [PATCH 102/200] Ignore JSPM package folder --- Node.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index b38069de..9fe3853f 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -23,6 +23,7 @@ coverage # Compiled binary addons (http://nodejs.org/api/addons.html) build/Release -# Dependency directory +# Dependency directories # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git node_modules +jspm_packages From f4cf36c5e1e275cb40b981f84be0cd723cd0c152 Mon Sep 17 00:00:00 2001 From: Vitor Prado Date: Wed, 14 Oct 2015 13:45:12 -0300 Subject: [PATCH 103/200] Ignoring build folder inside app module in Android projects The `*/build` folder should be ignored because the android structure generate files and outputs inside this folder. --- Android.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.gitignore b/Android.gitignore index c9c2248a..7ee6ac0b 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -15,6 +15,7 @@ gen/ # Gradle files .gradle/ build/ +*/build/ # Local configuration file (sdk path, etc) local.properties From a811a95e6390eac2e135efe94a3120847f173bbf Mon Sep 17 00:00:00 2001 From: Joshua Mabina Date: Thu, 15 Oct 2015 17:58:00 +0300 Subject: [PATCH 104/200] added .env.example for projects generated with laravel new command --- Laravel.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index 36d7adeb..8b4e7b85 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -2,3 +2,4 @@ .env.*.php .env.php .env +.env.example From 4f043859d8437f784508423298adafd34464da42 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Sat, 17 Oct 2015 13:30:55 -0700 Subject: [PATCH 105/200] Fixed whitespace --- Objective-C.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 05096f66..033ccce2 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -33,7 +33,7 @@ xcuserdata # you should judge for yourself, the pros and cons are mentioned at: # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # -#Pods/ +# Pods/ # Carthage # From 807a0171926f4630f18d3ae28d6333623dd43cf9 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Sat, 17 Oct 2015 13:31:07 -0700 Subject: [PATCH 106/200] Fixed Cocoapods link --- Swift.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Swift.gitignore b/Swift.gitignore index d571cb2c..fba17246 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -31,7 +31,7 @@ xcuserdata # # We recommend against adding the Pods directory to your .gitignore. However # you should judge for yourself, the pros and cons are mentioned at: -# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # # Pods/ From efea7418600b3898702bb9e2ac5987efe17bbff5 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Sat, 17 Oct 2015 13:31:15 -0700 Subject: [PATCH 107/200] Switched to https --- Objective-C.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 033ccce2..fba17246 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -31,7 +31,7 @@ xcuserdata # # We recommend against adding the Pods directory to your .gitignore. However # you should judge for yourself, the pros and cons are mentioned at: -# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # # Pods/ From 68ffe8de3278d46cc091d78c9a20620069bd8d7a Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Sat, 17 Oct 2015 13:33:41 -0700 Subject: [PATCH 108/200] Added fastlane to iOS projects --- Objective-C.gitignore | 8 ++++++++ Swift.gitignore | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index fba17246..b15babe7 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -41,3 +41,11 @@ xcuserdata # Carthage/Checkouts Carthage/Build + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. + +fastlane/report.xml +fastlane/screenshots diff --git a/Swift.gitignore b/Swift.gitignore index fba17246..b15babe7 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -41,3 +41,11 @@ xcuserdata # Carthage/Checkouts Carthage/Build + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. + +fastlane/report.xml +fastlane/screenshots From 91f00b1c8e995040c82a6168496f7e82bfea3d57 Mon Sep 17 00:00:00 2001 From: Victor Rodrigues Date: Mon, 19 Oct 2015 21:20:09 +0200 Subject: [PATCH 109/200] Add /cover to Elixir.gitignore --- Elixir.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Elixir.gitignore b/Elixir.gitignore index 96076718..755b6055 100644 --- a/Elixir.gitignore +++ b/Elixir.gitignore @@ -1,4 +1,5 @@ /_build +/cover /deps erl_crash.dump *.ez From db23e4f579f4316647e4650bd424447cac0ad75a Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Wed, 21 Oct 2015 09:11:27 -0400 Subject: [PATCH 110/200] Update Dart.gitignore Modify patterns to explicitly match directories Modified patterns to match files created by tool in Dart SDK 1.12: - Added patterns matching files listed in https://www.dartlang.org/tools/private-files.html - Added *.js, removed *.js_, *.dart.js to match files created by dart2js --- Dart.gitignore | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index b1287d98..21d34d6e 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,18 +1,18 @@ -# Don’t commit the following directories created by pub. +# Files and directories created by pub .buildlog +.packages +.project .pub/ build/ -packages -.packages +**/packages/ -# Or the files created by dart2js. -*.dart.js -*.js_ +# Files created by dart2js +*.js *.js.deps *.js.map -# Or the files created by dartdoc. +# Directory created by dartdoc doc/ -# Don't commit pubspec lock file. (Library packages only! Remove pattern if developing an application package.) +# Don't commit pubspec lock file (Library packages only! Remove pattern if developing an application package) pubspec.lock From 4892e962c2f95b055e368a84e6f7f88542d2dc5d Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Wed, 21 Oct 2015 10:29:21 -0400 Subject: [PATCH 111/200] Add *.info.json to dart2js patterns --- Dart.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Dart.gitignore b/Dart.gitignore index 21d34d6e..fc5964d7 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -10,6 +10,7 @@ build/ *.js *.js.deps *.js.map +*.info.json # Directory created by dartdoc doc/ From 3a622f2dcba185683746b72ade44b64a6b9db48d Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Wed, 21 Oct 2015 10:45:49 -0400 Subject: [PATCH 112/200] Add *.precompiled.js Add *.precompiled.js as per https://stackoverflow.com/questions/20314796/which-files-are-generated-when-executing-dart2js-and-why --- Dart.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Dart.gitignore b/Dart.gitignore index fc5964d7..4af0fb23 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -8,6 +8,7 @@ build/ # Files created by dart2js *.js +*.precompiled.js *.js.deps *.js.map *.info.json From 36817de7ee5abcd818d822b9affbf4bd091eeb83 Mon Sep 17 00:00:00 2001 From: Denis Grinyuk Date: Thu, 22 Oct 2015 14:35:53 +0300 Subject: [PATCH 113/200] Some details for Castalia statistics file Before XE7 Castalia used to be standalone expert thus I suppose here should be some grounding --- Delphi.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Delphi.gitignore b/Delphi.gitignore index 8d5d458f..800ceb11 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -53,5 +53,5 @@ __history/ *.~* -# Castalia statistics file +# Castalia statistics file (since XE7 Castalia is distributed with Delphi) *.stat From 7f9f6a15353f29da42a9e157d8d582068bd35d65 Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Fri, 23 Oct 2015 12:46:40 -0400 Subject: [PATCH 114/200] Updates based on discussions with Dart team MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Updates based on discussions with Dart team See https://github.com/dart-lang/www.dartlang.org/issues/1496 * Removed *.precompiled.js - not generated by dart2js any more * *.js_ → *.part.js Also: 2. Added guidance comments 3. doc/ → doc/api as manually written documents may be in doc/ 4. Added reference to appropriate Dart web site page --- Dart.gitignore | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index 4af0fb23..31faaa45 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,3 +1,5 @@ +# See https://www.dartlang.org/tools/private-files.html + # Files and directories created by pub .buildlog .packages @@ -7,14 +9,19 @@ build/ **/packages/ # Files created by dart2js -*.js -*.precompiled.js +# (Most Dart developers will use pub build to compile Dart, use/modify these +# rules if you intend to use dart2js directly +# Convention is to use extension '.dart.js' for Dart compiled to Javascript to +# differentiate from explicit Javascript files) +*.dart.js +*.js.part *.js.deps *.js.map *.info.json # Directory created by dartdoc -doc/ +doc/api -# Don't commit pubspec lock file (Library packages only! Remove pattern if developing an application package) +# Don't commit pubspec lock file +# (Library packages only! Remove pattern if developing an application package) pubspec.lock From 344fc711d0336313af767ef75be3f937da7dd144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9lio?= Date: Fri, 23 Oct 2015 16:58:40 -0300 Subject: [PATCH 115/200] Added some folders the are "compiled" things /vendor - composer modules can be (and probably should) recompiled. Laravel comes with this line by default. /node_modules - npm modules, same of /vendor. Laravel comes with this line by default. /app/storage - Laravel things that can be despised (in staging) like cache, views cache and sessions --- Laravel.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index 8b4e7b85..79906c80 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -3,3 +3,8 @@ .env.php .env .env.example + +/vendor +/node_modules +/app/storage + From 7673714c7e182af72dc6d68fc1fee2d6fd4f9e10 Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Sat, 24 Oct 2015 12:46:47 -0400 Subject: [PATCH 116/200] Fixed generated part js file pattern --- Dart.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dart.gitignore b/Dart.gitignore index 31faaa45..7a9bc6c6 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -14,7 +14,7 @@ build/ # Convention is to use extension '.dart.js' for Dart compiled to Javascript to # differentiate from explicit Javascript files) *.dart.js -*.js.part +*.part.js *.js.deps *.js.map *.info.json From eefbb4f8f2593feaa844f3ccfc6e9a9718201a78 Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Sat, 24 Oct 2015 14:01:53 -0400 Subject: [PATCH 117/200] doc/api/ explicitly a directory --- Dart.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dart.gitignore b/Dart.gitignore index 7a9bc6c6..7c280441 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -20,7 +20,7 @@ build/ *.info.json # Directory created by dartdoc -doc/api +doc/api/ # Don't commit pubspec lock file # (Library packages only! Remove pattern if developing an application package) From 0a63fa39fcc3e181ac6ae9b250b3912f2f778020 Mon Sep 17 00:00:00 2001 From: Sam Sheffres Date: Tue, 27 Oct 2015 15:06:37 +0600 Subject: [PATCH 118/200] Add a gitignore for Unreal Engine 4 --- UE4.gitignore | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 UE4.gitignore diff --git a/UE4.gitignore b/UE4.gitignore new file mode 100644 index 00000000..80f9fff4 --- /dev/null +++ b/UE4.gitignore @@ -0,0 +1,60 @@ +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app +*.ipa + +# These project files can be generated by the engine +*.xcodeproj +*.sln +*.xcodeproj +*.suo +*.opensdf +*.sdf +*.sln + +# Precompiled Assets +SourceArt/**/*.png +SourceArt/**/*.tga + +# Binary Files +Binaries/* + +# Builds +Build/* + +# Don't ignore icon files in Build +!Build/**/*.ico + +# Configuration files generated by the Editor +Saved/* + +# Compiled source files for the engine to use +Intermediate/* + +# Cache files for the editor to use +DerivedDataCache/* From 710884d4f518ac8b3c23bbec060433f8336defb5 Mon Sep 17 00:00:00 2001 From: Jeroen Deviaene Date: Tue, 27 Oct 2015 23:05:02 +0100 Subject: [PATCH 119/200] Create gitignore for Lumen --- Lumen.gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Lumen.gitignore diff --git a/Lumen.gitignore b/Lumen.gitignore new file mode 100644 index 00000000..0e042c23 --- /dev/null +++ b/Lumen.gitignore @@ -0,0 +1,8 @@ +.env.*.php +.env.php +.env +.env.example + +vendor/ +node_modules/ +storage/ From f652ad762774e35b1553b8898dcc1154e819921d Mon Sep 17 00:00:00 2001 From: Jeroen Deviaene Date: Tue, 27 Oct 2015 23:07:36 +0100 Subject: [PATCH 120/200] Create gitignore for Laravel5 In Laravel 5 the storage folder was moved to the root of the application. The compiled.php has also been moved to the bootstrap/cache directory This was no longer compatible with the previous laravel.gitignore. --- Laravel5.gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Laravel5.gitignore diff --git a/Laravel5.gitignore b/Laravel5.gitignore new file mode 100644 index 00000000..c895d944 --- /dev/null +++ b/Laravel5.gitignore @@ -0,0 +1,9 @@ +bootstrap/cache/ +.env.*.php +.env.php +.env +.env.example + +vendor/ +node_modules/ +storage/ From 1d16414b1f8fe9ca10dd85596103566c663e07c4 Mon Sep 17 00:00:00 2001 From: jerodev Date: Wed, 28 Oct 2015 08:43:54 +0100 Subject: [PATCH 121/200] Merged laravel and laravel5 --- Laravel.gitignore | 11 ++++++----- Laravel5.gitignore | 9 --------- 2 files changed, 6 insertions(+), 14 deletions(-) delete mode 100644 Laravel5.gitignore diff --git a/Laravel.gitignore b/Laravel.gitignore index 79906c80..2a6c46de 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -1,10 +1,11 @@ -/bootstrap/compiled.php +bootstrap/compiled.php +bootstrap/cache .env.*.php .env.php .env .env.example -/vendor -/node_modules -/app/storage - +app/storage/ +node_modules/ +storage/ +vendor/ \ No newline at end of file diff --git a/Laravel5.gitignore b/Laravel5.gitignore deleted file mode 100644 index c895d944..00000000 --- a/Laravel5.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -bootstrap/cache/ -.env.*.php -.env.php -.env -.env.example - -vendor/ -node_modules/ -storage/ From 3a838f8640766d0a5894d700ce38c55477a63859 Mon Sep 17 00:00:00 2001 From: jerodev Date: Wed, 28 Oct 2015 13:24:11 +0100 Subject: [PATCH 122/200] Merged Laravel & Lumen + grouped rules --- Laravel.gitignore | 15 +++++++++------ Lumen.gitignore | 8 -------- 2 files changed, 9 insertions(+), 14 deletions(-) delete mode 100644 Lumen.gitignore diff --git a/Laravel.gitignore b/Laravel.gitignore index 2a6c46de..0790dea4 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -1,11 +1,14 @@ +vendor/ +node_modules/ + +# Laravel 4 specific bootstrap/compiled.php +app/storage/ + +# Laravel 5 & Lumen specific bootstrap/cache +storage/ .env.*.php .env.php .env -.env.example - -app/storage/ -node_modules/ -storage/ -vendor/ \ No newline at end of file +.env.example \ No newline at end of file diff --git a/Lumen.gitignore b/Lumen.gitignore deleted file mode 100644 index 0e042c23..00000000 --- a/Lumen.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -.env.*.php -.env.php -.env -.env.example - -vendor/ -node_modules/ -storage/ From 5dda2849bff44c22d9813c56c869f4c18bdc55d9 Mon Sep 17 00:00:00 2001 From: jerodev Date: Wed, 28 Oct 2015 13:28:46 +0100 Subject: [PATCH 123/200] missed slash in laravel.gitignore --- Laravel.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Laravel.gitignore b/Laravel.gitignore index 0790dea4..b4b05113 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -6,7 +6,7 @@ bootstrap/compiled.php app/storage/ # Laravel 5 & Lumen specific -bootstrap/cache +bootstrap/cache/ storage/ .env.*.php .env.php From 18a4bd70c71fd30df2180c515e7c2b36f93a8819 Mon Sep 17 00:00:00 2001 From: Sam Sheffres Date: Thu, 29 Oct 2015 12:09:21 +0600 Subject: [PATCH 124/200] Rename UE4 gitignore to UnrealEngine --- UE4.gitignore => UnrealEngine.gitignore | 4 ---- 1 file changed, 4 deletions(-) rename UE4.gitignore => UnrealEngine.gitignore (91%) diff --git a/UE4.gitignore b/UnrealEngine.gitignore similarity index 91% rename from UE4.gitignore rename to UnrealEngine.gitignore index 80f9fff4..e6fc76f8 100644 --- a/UE4.gitignore +++ b/UnrealEngine.gitignore @@ -37,10 +37,6 @@ *.sdf *.sln -# Precompiled Assets -SourceArt/**/*.png -SourceArt/**/*.tga - # Binary Files Binaries/* From e3cd87b2764ae4c583185c0b2a465424b8ac64ca Mon Sep 17 00:00:00 2001 From: Sam Sheffres Date: Thu, 29 Oct 2015 12:14:21 +0600 Subject: [PATCH 125/200] Re-add SourceArt Exclusions I removed on Accident --- UnrealEngine.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index e6fc76f8..80f9fff4 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -37,6 +37,10 @@ *.sdf *.sln +# Precompiled Assets +SourceArt/**/*.png +SourceArt/**/*.tga + # Binary Files Binaries/* From 2b504e6ba37811a507535933a56a44359ad7488f Mon Sep 17 00:00:00 2001 From: Felix Wehnert Date: Thu, 29 Oct 2015 09:13:17 +0100 Subject: [PATCH 126/200] Update TeX.gitignore --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index a7a84bc9..5b08eaf8 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -120,6 +120,9 @@ _minted* *.sympy sympy-plots-for-*.tex/ +# Texpad +.texpadtmp + # TikZ & PGF *.dpth *.md5 From 38d6cac990a82a1f7814571634e08295086763b5 Mon Sep 17 00:00:00 2001 From: Thomas Steinholz Date: Thu, 29 Oct 2015 17:24:45 -0400 Subject: [PATCH 127/200] Update JetBrains.gitignore Added a forgotten IDE to the .gitignore documentation. Why? For completeness and correctness What? [Webstorm](https://www.jetbrains.com/webstorm). --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 177bc80b..5d2e327f 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,4 +1,4 @@ -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm *.iml From 2111560949a6458d3d3fe1b3b3c822369a4254d7 Mon Sep 17 00:00:00 2001 From: Ben Reeves Date: Sat, 31 Oct 2015 17:17:36 -0400 Subject: [PATCH 128/200] Removed Redundant Lines samsheff accidentally typed a few of the lines twice ^.^ --- UnrealEngine.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 80f9fff4..247f644a 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -31,11 +31,9 @@ # These project files can be generated by the engine *.xcodeproj *.sln -*.xcodeproj *.suo *.opensdf *.sdf -*.sln # Precompiled Assets SourceArt/**/*.png From 3b0b68838d24c2021cd6bc89de665dfa6bc809f0 Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Tue, 3 Nov 2015 01:29:12 +0800 Subject: [PATCH 129/200] Revert "Ignoring build folder inside app module in Android projects" This reverts commit f4cf36c5e1e275cb40b981f84be0cd723cd0c152. --- Android.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Android.gitignore b/Android.gitignore index 7ee6ac0b..c9c2248a 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -15,7 +15,6 @@ gen/ # Gradle files .gradle/ build/ -*/build/ # Local configuration file (sdk path, etc) local.properties From f4faeebd86ee1e7c61d98a4265ee28d081dc21f6 Mon Sep 17 00:00:00 2001 From: Julien CROUZET Date: Mon, 2 Nov 2015 19:20:21 +0100 Subject: [PATCH 130/200] Add .npm cache directory --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index b38069de..c5e97b5d 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -26,3 +26,6 @@ build/Release # Dependency directory # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git node_modules + +# Optional npm cache directory +.npm From f59e22d1c3571b2b58fcbfee632cdfc51edba5e5 Mon Sep 17 00:00:00 2001 From: Jacer OMRI Date: Tue, 3 Nov 2015 10:16:32 +0100 Subject: [PATCH 131/200] add bower assets as described in the symfony cookbook http://symfony.com/doc/current/cookbook/frontend/bower.html --- Symfony.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Symfony.gitignore b/Symfony.gitignore index c68377d1..6fac1be4 100644 --- a/Symfony.gitignore +++ b/Symfony.gitignore @@ -26,6 +26,9 @@ /web/bundles/ /web/uploads/ +# Assets managed by Bower +/web/assets/vendor/ + # PHPUnit /app/phpunit.xml /phpunit.xml From 3885bb94a726bf6386a0bad663e11ee256e22367 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20F=C3=B6ldh=C3=A1zi?= Date: Tue, 3 Nov 2015 11:59:53 +0100 Subject: [PATCH 132/200] Update Eclipse.gitignore Add ignore for STS's .springBeans file --- Global/Eclipse.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 0e22e957..880dd928 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -37,3 +37,6 @@ local.properties # TeXlipse plugin .texlipse + +# STS (Spring Tool Suite) +.springBeans From b347454db37e78b91bd80a88d3c7f7828556d55d Mon Sep 17 00:00:00 2001 From: Jesper Utoft Date: Wed, 4 Nov 2015 10:56:54 +0100 Subject: [PATCH 133/200] Add pythontex intermediade files to Tex.gitignore --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 5b08eaf8..1dc6d62d 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -120,6 +120,10 @@ _minted* *.sympy sympy-plots-for-*.tex/ +#pythontex +*.pytxcode +pythontex-files-*/ + # Texpad .texpadtmp From 64a19dd501a68b0cbbd2c31d400d15410188002f Mon Sep 17 00:00:00 2001 From: Austin Riendeau Date: Wed, 4 Nov 2015 16:53:53 -0700 Subject: [PATCH 134/200] Revert 2bd7d8ec88bc9fad5aca91951826b16118227554 --- Go.gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Go.gitignore b/Go.gitignore index a8843541..daf913b1 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -22,7 +22,3 @@ _testmain.go *.exe *.test *.prof - -# GO15VENDOREXPERIMENT flag specifics -vendor/** -!vendor/manifest \ No newline at end of file From 5f5926a9bba5b04c4dc36bd931a7d13e096f5f0d Mon Sep 17 00:00:00 2001 From: Julien CROUZET Date: Thu, 5 Nov 2015 16:17:54 +0100 Subject: [PATCH 135/200] Ignore REPL history file Like in #1732, Docker images can consider project directoy as $HOME --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index c5e97b5d..4796eb8d 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -29,3 +29,6 @@ node_modules # Optional npm cache directory .npm + +# Optional REPL history +.node_repl_history From f0daa85888e8692f3b3ba08383e1dfb155304690 Mon Sep 17 00:00:00 2001 From: Mike Duigou Date: Thu, 5 Nov 2015 08:01:15 -0800 Subject: [PATCH 136/200] NetBeans file nb-configuration.xml should not be ignored. --- Global/NetBeans.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/NetBeans.gitignore b/Global/NetBeans.gitignore index debe0e48..520d91ff 100644 --- a/Global/NetBeans.gitignore +++ b/Global/NetBeans.gitignore @@ -4,5 +4,4 @@ nbbuild/ dist/ nbdist/ nbactions.xml -nb-configuration.xml .nb-gradle/ From 06581f9c741966f7b1ea4f390a84b456a64d6ee8 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Fri, 6 Nov 2015 15:04:28 +1100 Subject: [PATCH 137/200] Clean up expired entries, fix whitespace. --- Umbraco.gitignore | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index d5877017..ea05e1fb 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -1,21 +1,11 @@ # Note: VisualStudio gitignore rules may also be relevant -# ========================= # Umbraco -# ========================= # Ignore unimportant folders generated by Umbraco -**/App_Data/ClientDependency/ -**/App_Data/ExamineIndexes/ **/App_Data/Logs/ **/App_Data/[Pp]review/ **/App_Data/TEMP/ **/App_Data/NuGetBackup/ -**/App_Data/FeedCache/ -**/App_Data/courier/revisions/ -**/App_Data/courier/cache/ -**/App_Data/umbraco.licensing.log.txt -**/App_Data/*.udt -**/aspnet_client/ # Ignore Umbraco content cache file **/App_Data/umbraco.config @@ -25,8 +15,5 @@ !**/App_Data/[Pp]ackages/ !**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages -# ========================= # ImageProcessor DiskCache -# ========================= **/App_Data/cache/ -Cached/ From 84010e499fef0b61d4f3cb29a31138b47837797f Mon Sep 17 00:00:00 2001 From: chenyufeng <503434355@qq.com> Date: Mon, 9 Nov 2015 10:51:42 +0800 Subject: [PATCH 138/200] add *.xcscheme to Global/Xcode.gitignore,Objective-C.gitignore and Swift.gitignore --- Global/Xcode.gitignore | 1 + Objective-C.gitignore | 1 + Swift.gitignore | 1 + 3 files changed, 3 insertions(+) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index d07b7894..738468cc 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -21,3 +21,4 @@ xcuserdata *.xccheckout *.moved-aside *.xcuserstate +*.xcscheme diff --git a/Objective-C.gitignore b/Objective-C.gitignore index b15babe7..8001e5ba 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -22,6 +22,7 @@ xcuserdata *.moved-aside *.xcuserstate *.xcscmblueprint +*.xcscheme ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index b15babe7..8001e5ba 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -22,6 +22,7 @@ xcuserdata *.moved-aside *.xcuserstate *.xcscmblueprint +*.xcscheme ## Obj-C/Swift specific *.hmap From 3db9d96ecd6c91e72abf688fca3b89bc826b2ae9 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Thu, 12 Nov 2015 00:11:58 +0100 Subject: [PATCH 139/200] Added link to more information about the available options --- Objective-C.gitignore | 2 ++ Swift.gitignore | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 8001e5ba..4ccb4368 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -47,6 +47,8 @@ Carthage/Build # # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the # screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md fastlane/report.xml fastlane/screenshots diff --git a/Swift.gitignore b/Swift.gitignore index 8001e5ba..4ccb4368 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -47,6 +47,8 @@ Carthage/Build # # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the # screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md fastlane/report.xml fastlane/screenshots From cd3de4966970bb453ca72b19e25db48f39a97e21 Mon Sep 17 00:00:00 2001 From: Wayne Nilsen Date: Fri, 13 Nov 2015 06:05:10 -0500 Subject: [PATCH 140/200] add Cargo.lock to gitignore file by default See the [official recommendation](http://doc.crates.io/guide.html#cargotoml-vs-cargolock) > * If you're building a library, put Cargo.lock in your .gitignore. > * If you're building an executable, check Cargo.lock into git. --- Rust.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Rust.gitignore b/Rust.gitignore index 37727f91..94408df6 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -9,3 +9,4 @@ # Generated by Cargo /target/ +Cargo.lock From 271aaab77e1de2c529e89b2f2a8221ba86cf8eb2 Mon Sep 17 00:00:00 2001 From: Wayne Nilsen Date: Fri, 13 Nov 2015 11:17:04 -0500 Subject: [PATCH 141/200] added comment --- Rust.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rust.gitignore b/Rust.gitignore index 94408df6..a29d6856 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -9,4 +9,7 @@ # Generated by Cargo /target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock Cargo.lock From 7d2801017c5d98f9a2b871b503d1044e4a0fc940 Mon Sep 17 00:00:00 2001 From: Christopher Bunn Date: Sat, 14 Nov 2015 12:48:28 -0800 Subject: [PATCH 142/200] Updated LICENSE year to 2015 --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index ac31f1a8..4c9a2ab0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2014 GitHub, Inc. +Copyright (c) 2015 GitHub, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), From 381a78b8afedc5a5a59b8e6d903e9a0362dedc27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Haberth=C3=BCr?= Date: Mon, 16 Nov 2015 09:35:14 +0100 Subject: [PATCH 143/200] Adding endfloat.sty auxiliary files endfloat.sty produces these two auxiliary files. From Section 3.2 of its documentation: > Loading it will have LTEX produce two extra files with .ttt and .fff extensions (for tables and figures, respectively). --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 1dc6d62d..d4427994 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -141,3 +141,7 @@ pythontex-files-*/ # WinEdt *.bak *.sav + +# endfloat +*.ttt +*.fff From fde9f07c71c06882567e820d7f6c1bb24819874c Mon Sep 17 00:00:00 2001 From: Denis Grinyuk Date: Mon, 16 Nov 2015 16:07:56 +0300 Subject: [PATCH 144/200] Some C++ file extensions used by Delphi These depend of "C/C++ Output file generation" compiler setting --- Delphi.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Delphi.gitignore b/Delphi.gitignore index 800ceb11..89d2d7f9 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -20,6 +20,10 @@ # Deployment Manager configuration file for your project. Added in Delphi XE2. # Uncomment this if it is not mobile development and you do not use remote debug feature. #*.deployproj +# +# C++ object files produced when C/C++ Output file generation is configured. +# Uncomment this if you are not using external objects (zlib library for example). +#*.obj # # Delphi compiler-generated binaries (safe to delete) @@ -37,9 +41,12 @@ *.tds *.dcu *.lib +*.a +*.o # Delphi autogenerated files (duplicated info) *.cfg +*.hpp *Resource.rc # Delphi local files (user-specific info) From fe00bd78b8e0b86cd9124c96588ee9f056801042 Mon Sep 17 00:00:00 2001 From: Denis Grinyuk Date: Mon, 16 Nov 2015 16:19:43 +0300 Subject: [PATCH 145/200] Rarely used binary extension OLE Control eXtension (OCX), created by the Active Form wizard --- Delphi.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Delphi.gitignore b/Delphi.gitignore index 89d2d7f9..7af8d6fc 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -43,6 +43,7 @@ *.lib *.a *.o +*.ocx # Delphi autogenerated files (duplicated info) *.cfg From 97dc1fdfc3be743f402dd4a965909f85bc2447d0 Mon Sep 17 00:00:00 2001 From: Nick Brook Date: Thu, 19 Nov 2015 00:24:34 +0000 Subject: [PATCH 146/200] Remove *.xcscheme to Global/Xcode.gitignore,Objective-C.gitignore and Swift.gitignore --- Global/Xcode.gitignore | 1 - Objective-C.gitignore | 1 - Swift.gitignore | 1 - 3 files changed, 3 deletions(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index 738468cc..d07b7894 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -21,4 +21,3 @@ xcuserdata *.xccheckout *.moved-aside *.xcuserstate -*.xcscheme diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 4ccb4368..79d9331b 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -22,7 +22,6 @@ xcuserdata *.moved-aside *.xcuserstate *.xcscmblueprint -*.xcscheme ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index 4ccb4368..79d9331b 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -22,7 +22,6 @@ xcuserdata *.moved-aside *.xcuserstate *.xcscmblueprint -*.xcscheme ## Obj-C/Swift specific *.hmap From 6d942c5122bc85d9d97f048923651e654d9a491b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Corbasson?= Date: Fri, 20 Nov 2015 00:39:55 +0100 Subject: [PATCH 147/200] Add ignores for autoscan files --- Autotools.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Autotools.gitignore b/Autotools.gitignore index 053ff52f..88fe3158 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -2,6 +2,10 @@ Makefile.in +/autoscan.log +/autoscan-*.log +/configure.scan + # http://www.gnu.org/software/autoconf /autom4te.cache From 35b890428b527f80cffcc7efd6e0c5654e579348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Corbasson?= Date: Fri, 20 Nov 2015 01:01:04 +0100 Subject: [PATCH 148/200] Update Autotools.gitignore --- Autotools.gitignore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Autotools.gitignore b/Autotools.gitignore index 88fe3158..1e9158e2 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -2,16 +2,16 @@ Makefile.in -/autoscan.log -/autoscan-*.log -/configure.scan - # http://www.gnu.org/software/autoconf /autom4te.cache +/autoscan.log +/autoscan-*.log /aclocal.m4 /compile +/config.h.in /configure +/configure.scan /depcomp /install-sh /missing From ff775c60d314c4139d82294efa2c23caca4f40b8 Mon Sep 17 00:00:00 2001 From: dveim Date: Sun, 29 Nov 2015 20:43:21 +0200 Subject: [PATCH 149/200] remove harmful ignore 'project/project' is valid directory for 'project' project-related files. For example, if one configure his sbt build to use scala files directly from 'project/', dependencies like 'project/project/plugins.sbt' will be ignored because of this line. See http://www.scala-sbt.org/0.13/tutorial/Organizing-Build.html#sbt+is+recursive. --- PlayFramework.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/PlayFramework.gitignore b/PlayFramework.gitignore index ae5ec9fe..6d67f119 100644 --- a/PlayFramework.gitignore +++ b/PlayFramework.gitignore @@ -5,7 +5,6 @@ bin/ /lib/ /logs/ /modules -/project/project /project/target /target tmp/ From 935c3701bd1e74869bf99fdab0e3548475b0b79a Mon Sep 17 00:00:00 2001 From: Thomas Steinholz Date: Sun, 29 Nov 2015 14:20:50 -0500 Subject: [PATCH 150/200] Update Qt.gitignore Qt generates build files for me that are `build-Projname-WhateverWhatever` so this change continues to support *-build-* folders as well as others. --- Qt.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Qt.gitignore b/Qt.gitignore index 85a6baac..04b7a506 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -23,7 +23,7 @@ moc_*.cpp qrc_*.cpp ui_*.h Makefile* -*-build-* +*build-* # QtCreator From 5bb4e85357cb42ceff26233f67c27368d405cda0 Mon Sep 17 00:00:00 2001 From: Julien Liabeuf Date: Mon, 30 Nov 2015 11:03:09 +0700 Subject: [PATCH 151/200] Incorrect Dir Path When generating the ignore rules for Composer, an incorrect format is used. The vendor directory added is written `vendor/`, which causes other `vendors` directories to be ignored. The correct format to use is `/vendor/`, which would only ignore the root `vendor` directory. --- Composer.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Composer.gitignore b/Composer.gitignore index 3a693c92..c4222678 100644 --- a/Composer.gitignore +++ b/Composer.gitignore @@ -1,5 +1,5 @@ composer.phar -vendor/ +/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 From 454f5e6cf40e3b0d9a883a19b084bff78006eaf6 Mon Sep 17 00:00:00 2001 From: Curtis Badke Date: Mon, 30 Nov 2015 08:45:18 -0700 Subject: [PATCH 152/200] Fix typo for Azure Emulator log directory --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 49f381c4..5d0bed5d 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -156,7 +156,7 @@ csx/ *.build.csdef # Windows Azure Emulator -efc/ +ecf/ rfc/ # Windows Store app package directory From b387d8937b5709c97e80dcc5769687a1dc997628 Mon Sep 17 00:00:00 2001 From: Curtis Badke Date: Mon, 30 Nov 2015 15:59:49 -0700 Subject: [PATCH 153/200] Fix typo rfc -> rcf --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 5d0bed5d..d0d9bf78 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -157,7 +157,7 @@ csx/ # Windows Azure Emulator ecf/ -rfc/ +rcf/ # Windows Store app package directory AppPackages/ From a393ef8de999946cbb0210c24bb8ba39ffb511c0 Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Tue, 1 Dec 2015 11:33:51 -0800 Subject: [PATCH 154/200] Add 'opendb' file to VisualStudio.gitignore --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d0d9bf78..dd7327e6 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -76,6 +76,7 @@ _Chutzpah* ipch/ *.aps *.ncb +*.opendb *.opensdf *.sdf *.cachefile From ada61a7f50be34021f92f999c694c4d1abe29b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Santos?= Date: Wed, 2 Dec 2015 16:31:51 +0000 Subject: [PATCH 155/200] Update OpenCart.gitignore Ignore storage folder (contains logs, cache, etc.) --- OpenCart.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenCart.gitignore b/OpenCart.gitignore index cc937674..28e45aa6 100644 --- a/OpenCart.gitignore +++ b/OpenCart.gitignore @@ -9,3 +9,5 @@ image/data/ image/cache/ system/cache/ system/logs/ + +system/storage/ From 611c239f68c29c535a563d4e4231658378c31023 Mon Sep 17 00:00:00 2001 From: Nate Stedman Date: Fri, 4 Dec 2015 09:08:40 -0500 Subject: [PATCH 156/200] Add Swift Package Manager to Swift.gitignore Matches the style used for Carthage - build disabled by default, checkouts optionally disabled. --- Swift.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Swift.gitignore b/Swift.gitignore index 79d9331b..89d806ec 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -27,6 +27,12 @@ xcuserdata *.hmap *.ipa +# Swift Package Manager +# +# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. +# Packages/ +.build/ + # CocoaPods # # We recommend against adding the Pods directory to your .gitignore. However From 5d98cfd19e3bcbb2cda4877733cf10ab6ddcbdbf Mon Sep 17 00:00:00 2001 From: Shawn Gibbons Date: Sat, 5 Dec 2015 13:39:47 -0500 Subject: [PATCH 157/200] Updated for Joomla 3.4.5 --- Joomla.gitignore | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Joomla.gitignore b/Joomla.gitignore index cf36d8cf..ac47eaeb 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -296,6 +296,7 @@ /components/com_wrapper/* /components/index.html /images/banners/* +/images/headers/* /images/sampledata/* /images/joomla* /images/index.html @@ -309,6 +310,7 @@ /language/en-GB/en-GB.com_tags.ini /language/en-GB/en-GB.finder_cli.ini /language/en-GB/en-GB.lib_fof.sys.ini +/language/en-GB/en-GB.lib_fof.ini /language/en-GB/en-GB.com_content.ini /language/en-GB/en-GB.lib_idna_convert.sys.ini /language/en-GB/en-GB.com_mailto.ini @@ -395,21 +397,36 @@ /language/en-GB/install.xml /language/overrides/* /language/index.html +/layouts/joomla/* +/layouts/libraries/* +/layouts/plugins/* +/layouts/index.html /libraries/cms.php /libraries/cms/* +/libraries/fof/* +/libraries/idna_convert/* /libraries/joomla/* +/libraries/legacy/* +/libraries/phpass/* /libraries/phpmailer/* /libraries/phputf8/* /libraries/simplepie/* +/libraries/vendor/* +/libraries/classmap.php +/libraries/import.legacy.php /libraries/index.html /libraries/import.php /libraries/loader.php /libraries/platform.php /logs/* /media/cms/* +/media/com_contenthistory/* /media/com_finder/* +/media/com_joomlaupdate/* +/media/com_wrapper/* /media/contacts/* /media/editors/* +/media/jui/* /media/mailto/* /media/media/* /media/mod_languages/* @@ -439,6 +456,8 @@ /modules/mod_search/* /modules/mod_stats/* /modules/mod_syndicate/* +/modules/mod_tags_popular/* +/modules/mod_tags_similar/* /modules/mod_users_latest/* /modules/mod_weblinks/* /modules/mod_whosonline/* @@ -448,6 +467,7 @@ /plugins/authentication/gmail/* /plugins/authentication/joomla/* /plugins/authentication/ldap/* +/plugins/authentication/cookie/* /plugins/authentication/index.html /plugins/captcha/recaptcha/* /plugins/captcha/index.html @@ -523,3 +543,4 @@ /index.php /joomla.xml /*.txt +/robots.txt.dist \ No newline at end of file From c7a4ac81812aba86bc4cd2ec2f4b22efed40e100 Mon Sep 17 00:00:00 2001 From: Shawn Gibbons Date: Sat, 5 Dec 2015 13:49:30 -0500 Subject: [PATCH 158/200] Updated for Joomla 3.4.5 --- Joomla.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Joomla.gitignore b/Joomla.gitignore index ac47eaeb..ffaf0739 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -408,7 +408,6 @@ /libraries/joomla/* /libraries/legacy/* /libraries/phpass/* -/libraries/phpmailer/* /libraries/phputf8/* /libraries/simplepie/* /libraries/vendor/* From 6e1ae4aa6d87fc24214761a82489db478ea40a0c Mon Sep 17 00:00:00 2001 From: Shawn Gibbons Date: Sat, 5 Dec 2015 14:01:41 -0500 Subject: [PATCH 159/200] Updated for Joomla 3.4.5 --- Joomla.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Joomla.gitignore b/Joomla.gitignore index ffaf0739..ac47eaeb 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -408,6 +408,7 @@ /libraries/joomla/* /libraries/legacy/* /libraries/phpass/* +/libraries/phpmailer/* /libraries/phputf8/* /libraries/simplepie/* /libraries/vendor/* From bf845507564bfc38943730c11da8b05bf6033d9e Mon Sep 17 00:00:00 2001 From: Stephen Date: Sun, 6 Dec 2015 11:47:00 -0800 Subject: [PATCH 160/200] Update to include iMPACT and Core Generator files --- Global/XilinxISE.gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Global/XilinxISE.gitignore b/Global/XilinxISE.gitignore index e041f51b..4475f843 100644 --- a/Global/XilinxISE.gitignore +++ b/Global/XilinxISE.gitignore @@ -42,6 +42,16 @@ *_usage.xml *_xst.xrpt +# iMPACT generated files +_impactbatch.log +impact.xsl +impact_impact.xwbt +ise_impact.cmd +webtalk_impact.xml + +# Core Generator generated files +xaw2verilog.log + # project-wide generated files *.gise par_usage_statistics.html From 096d1d1b37997e6bc5f3dfe9a23a29c0b77a3b58 Mon Sep 17 00:00:00 2001 From: Villars Gimm Date: Tue, 8 Dec 2015 23:18:34 +0100 Subject: [PATCH 161/200] Based on a template from jmoody --- Calabash.gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Calabash.gitignore diff --git a/Calabash.gitignore b/Calabash.gitignore new file mode 100644 index 00000000..8a75b329 --- /dev/null +++ b/Calabash.gitignore @@ -0,0 +1,10 @@ +# Calabash / Cucumber +rerun/ +reports/ +screenshots/ +screenshot*.png +test-servers/ + +# bundler +.bundle +vendor From 5e08bf6060e7d0bc9c035f11d0ee81768b317a3f Mon Sep 17 00:00:00 2001 From: tim Date: Thu, 10 Dec 2015 13:08:58 +0800 Subject: [PATCH 162/200] Unity.gitignore modyfying, add `/[Bb]uilds/ /Assets/AssetStoreTools*` dictionaries and `*.svd` svd files to be ignored modified: Unity.gitignore --- Unity.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 9de94098..a51fd65e 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -2,8 +2,11 @@ /[Tt]emp/ /[Oo]bj/ /[Bb]uild/ +/[Bb]uilds/ +/Assets/AssetStoreTools* # Autogenerated VS/MD solution and project files +ExportedObj/ *.csproj *.unityproj *.sln @@ -13,6 +16,8 @@ *.userprefs *.pidb *.booproj +*.svd + # Unity3D generated meta files *.pidb.meta From a32059c07c47e18738da84d1c715d1886e9cf532 Mon Sep 17 00:00:00 2001 From: Jelte Fennema Date: Fri, 11 Dec 2015 11:35:40 +0100 Subject: [PATCH 163/200] Tex: Ignore files generated by pdfcomment package The pdfcomment package generates *.upa and *.upb files when compiling LaTeX files. These should be ignored as well. --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index d4427994..79459c92 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -120,6 +120,10 @@ _minted* *.sympy sympy-plots-for-*.tex/ +# pdfcomment +*.upa +*.upb + #pythontex *.pytxcode pythontex-files-*/ From f5784d7a10fe288a80066f60cf4a5efa280faca8 Mon Sep 17 00:00:00 2001 From: Justas Brazauskas Date: Sun, 13 Dec 2015 16:07:46 +0200 Subject: [PATCH 164/200] Fix few typos --- Global/EiffelStudio.gitignore | 2 +- Rails.gitignore | 4 ++-- Ruby.gitignore | 2 +- Typo3.gitignore | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Global/EiffelStudio.gitignore b/Global/EiffelStudio.gitignore index a7ba35f8..f41b4f70 100644 --- a/Global/EiffelStudio.gitignore +++ b/Global/EiffelStudio.gitignore @@ -1,2 +1,2 @@ -# The compilation directoy +# The compilation directory EIFGENs diff --git a/Rails.gitignore b/Rails.gitignore index f786a90a..55fcde6c 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -16,11 +16,11 @@ pickle-email-*.html config/initializers/secret_token.rb config/secrets.yml -## Environment normalisation: +## Environment normalization: /.bundle /vendor/bundle -# these should all be checked in to normalise the environment: +# these should all be checked in to normalize the environment: # Gemfile.lock, .ruby-version, .ruby-gemset # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: diff --git a/Ruby.gitignore b/Ruby.gitignore index 1ba91c05..a8b1cda2 100644 --- a/Ruby.gitignore +++ b/Ruby.gitignore @@ -21,7 +21,7 @@ build/ /doc/ /rdoc/ -## Environment normalisation: +## Environment normalization: /.bundle/ /vendor/bundle /lib/bundler/man/ diff --git a/Typo3.gitignore b/Typo3.gitignore index 5781fcc3..cb024fef 100644 --- a/Typo3.gitignore +++ b/Typo3.gitignore @@ -1,5 +1,5 @@ ## TYPO3 v6.2 -# Ignore serveral upload and file directories. +# Ignore several upload and file directories. /fileadmin/user_upload/ /fileadmin/_temp_/ /fileadmin/_processed_/ From 76b87217c836fa814e22763dc6b12b09ab86513a Mon Sep 17 00:00:00 2001 From: Richard K Date: Sun, 13 Dec 2015 13:40:01 -0200 Subject: [PATCH 165/200] Update Python.gitignore --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 7d440988..dcc76558 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -57,3 +57,6 @@ docs/_build/ # PyBuilder target/ + +# pyenv +.python-version From 21f95b328020f705cb46ca3431c4a97d6893c25d Mon Sep 17 00:00:00 2001 From: Alexey Belyansky Date: Mon, 14 Dec 2015 21:52:44 +0300 Subject: [PATCH 166/200] Ignore BundleArtifacts folder --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index dd7327e6..249d20f9 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -162,6 +162,7 @@ rcf/ # Windows Store app package directory AppPackages/ +BundleArtifacts/ # Visual Studio cache files # files ending in .cache can be ignored From 61a76c1c08252a7af0291564dd055f2b73ca8c5e Mon Sep 17 00:00:00 2001 From: Roland Cooper Date: Thu, 17 Dec 2015 23:29:32 +0200 Subject: [PATCH 167/200] Add new line at end of file --- Joomla.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Joomla.gitignore b/Joomla.gitignore index ac47eaeb..0d7a0de2 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -543,4 +543,4 @@ /index.php /joomla.xml /*.txt -/robots.txt.dist \ No newline at end of file +/robots.txt.dist From fe3b2f4d97a4673f1f47ccea3c5e674d7be6d395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Haberth=C3=BCr?= Date: Mon, 21 Dec 2015 13:55:17 +0100 Subject: [PATCH 168/200] Ignore auxiliary files from \usepackage{cprotect} [cprotect](https://www.ctan.org/tex-archive/macros/latex/contrib/cprotect?lang=en) tracks its contents in an auxiliary file, this is safe to ignore. --- TeX.gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/TeX.gitignore b/TeX.gitignore index 79459c92..b04dbd0e 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -32,8 +32,6 @@ *.pdfsync ## Auxiliary and intermediate files from other packages: - - # algorithms *.alg *.loa @@ -49,6 +47,9 @@ acs-*.bib *.snm *.vrb +# cprotect +*.cpt + #(e)ledmac/(e)ledpar *.end *.[1-9] From 6d1612cff43252b389a9e2e69f57c300a4993e82 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sun, 27 Dec 2015 07:29:24 -0800 Subject: [PATCH 169/200] Ignore files generated by NuGet v3 project.json --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 249d20f9..b68002de 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -151,6 +151,9 @@ publish/ !**/packages/build/ # Uncomment if necessary however generally it will be regenerated when needed #!**/packages/repositories.config +# NuGet v3's project.json files produces more ignoreable files +*.nuget.props +*.nuget.targets # Windows Azure Build Output csx/ From 346fb93318b0714e0413fbf0dc9d4b176ec5b3a7 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sun, 27 Dec 2015 07:51:37 -0800 Subject: [PATCH 170/200] Stop ignoring StyleCop.json StyleCop.Analyzers is the modern re-invention of StyleCop, and uses a StyleCop.json file that the default .gitignore file made very difficult to check in, and easy to think was checked in but isn't. See https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/32057fff82adf7cfb92aa50aef69a6b030eedf31/documentation/Configuration.md#source-control for the documented case. Looking through history, this line was last touched to make it case insensitive, and before that the line was in the original VisualStudio.gitignore file, without justification for why it should ignore all file extensions. From my experience with stylecop, the only file I remember it creating was stylecop.cache. I would change `[Ss]tyle[Cc]op.*` to `[Ss]tyle[Cc]op.cache` but there is already a line for suppressing all *.cache files (which wasn't there when the stylecop line was originally added). So I believe this line is now obsolete, and as I explain above, actually problematic. --- VisualStudio.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 249d20f9..314c9211 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -172,7 +172,6 @@ BundleArtifacts/ # Others ClientBin/ -[Ss]tyle[Cc]op.* ~$* *~ *.dbmdl From 849fa552f2171df8503d2b4e93c80c18493469dc Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sun, 27 Dec 2015 07:57:50 -0800 Subject: [PATCH 171/200] Remove `build/` suppression The authoring of NuGet packages quite often include `build` folders, and when this is .gitignore'd it's very often the source of bugs in files that don't get checked in. I've never seen a Visual Studio project that builds to a `build` folder (`bin` is the default name). As this is a Visual Studio template file, and we have real projects that include `build` folders that include source code, I recommend we remove suppression of this folder. --- VisualStudio.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 249d20f9..30b6cdb0 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -17,7 +17,6 @@ [Rr]eleases/ x64/ x86/ -build/ bld/ [Bb]in/ [Oo]bj/ From a25589c92187674f68dcfafe8433e0c1e6069159 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Lundsg=C3=A5rd?= Date: Mon, 28 Dec 2015 20:09:39 +0100 Subject: [PATCH 172/200] Ignore Azure ApplicationInsights.config Ignore Azure ApplicationInsights.config in VisualStudio.gitignore --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 314c9211..d2297f0b 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -160,6 +160,9 @@ csx/ ecf/ rcf/ +# Windows Azure ApplicationInsights config file +ApplicationInsights.config + # Windows Store app package directory AppPackages/ BundleArtifacts/ From 65ba08ced79926c4993e444702833153d4bfaab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Lundsg=C3=A5rd?= Date: Mon, 28 Dec 2015 20:11:44 +0100 Subject: [PATCH 173/200] Name update of Windows Azure Windows Azure -> Microsoft Azure. Due to https://azure.microsoft.com/sv-se/blog/upcoming-name-change-for-windows-azure/ --- VisualStudio.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d2297f0b..5362f99b 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -152,15 +152,15 @@ publish/ # Uncomment if necessary however generally it will be regenerated when needed #!**/packages/repositories.config -# Windows Azure Build Output +# Microsoft Azure Build Output csx/ *.build.csdef -# Windows Azure Emulator +# Microsoft Azure Emulator ecf/ rcf/ -# Windows Azure ApplicationInsights config file +# Microsoft Azure ApplicationInsights config file ApplicationInsights.config # Windows Store app package directory From 5fa2ff234591ddae5a79d183a67492d67773ff86 Mon Sep 17 00:00:00 2001 From: Dmitry Rosolko Date: Thu, 31 Dec 2015 12:40:20 +0300 Subject: [PATCH 174/200] Update Eclipse.gitignore Remove .gradle because it is not eclipse specific and already added in Gradle.gitignore. --- Global/Eclipse.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 880dd928..fcafca5d 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -1,6 +1,5 @@ *.pydevproject .metadata -.gradle bin/ tmp/ *.tmp From 3e9a2d98e256b87102e73011c16b13c721bc57fe Mon Sep 17 00:00:00 2001 From: dopefishh Date: Sun, 3 Jan 2016 13:28:45 +0100 Subject: [PATCH 175/200] Add TeX precompiled preamble and xypic A precompiled header(`latex -ini`) compiled creates a `.fmt` file. To speed up xypic's drawing, precompiled matrices are created with the `\CompileMatrices` entry in the preamble. This creates `*.xyc` files. --- TeX.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index b04dbd0e..06f59b3f 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -6,6 +6,7 @@ *.fls *.out *.toc +*.fmt ## Intermediate documents: *.dvi @@ -143,6 +144,9 @@ pythontex-files-*/ # xindy *.xdy +# xypic precompiled matrices +*.xyc + # WinEdt *.bak *.sav From 679c67738234abd77567df5c07257bfab314f106 Mon Sep 17 00:00:00 2001 From: Adriano Ferreira Date: Sun, 3 Jan 2016 11:56:41 -0500 Subject: [PATCH 176/200] Ignore timeline.xctimeline playground file --- Swift.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Swift.gitignore b/Swift.gitignore index 89d806ec..c705373d 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -27,6 +27,9 @@ xcuserdata *.hmap *.ipa +## Playgrounds +timeline.xctimeline + # Swift Package Manager # # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. From 33da976da9a6ff4394797ef807651a79114c0065 Mon Sep 17 00:00:00 2001 From: Adriano Ferreira Date: Sun, 3 Jan 2016 12:02:46 -0500 Subject: [PATCH 177/200] Ignore playground.xcworkspace playground file --- Swift.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Swift.gitignore b/Swift.gitignore index c705373d..5e5d5ceb 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -29,6 +29,7 @@ xcuserdata ## Playgrounds timeline.xctimeline +playground.xcworkspace # Swift Package Manager # From efab0fd13c8bcd0dc1bb43063b5647a98496b044 Mon Sep 17 00:00:00 2001 From: James Elford Date: Sun, 10 Jan 2016 09:01:17 +0000 Subject: [PATCH 178/200] Include lib64 for virtualenv On systems that require a lib64, virtualenv creates a symlink to the local lib. --- Global/VirtualEnv.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/VirtualEnv.gitignore b/Global/VirtualEnv.gitignore index 831cf3af..3259f81e 100644 --- a/Global/VirtualEnv.gitignore +++ b/Global/VirtualEnv.gitignore @@ -4,6 +4,7 @@ [Bb]in [Ii]nclude [Ll]ib +[Ll]ib64 [Ll]ocal [Ss]cripts pyvenv.cfg From ce4e9ccd7a714da6b0e1ea313acdaf832a533750 Mon Sep 17 00:00:00 2001 From: Rogier Slag Date: Sun, 10 Jan 2016 15:59:25 +0100 Subject: [PATCH 179/200] Exclude Latexian temp files for Tex documents Latexian adds some additional temporary files, which are not required for building the project. Therefore they are better left out as well --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 06f59b3f..fb533ccc 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -154,3 +154,6 @@ pythontex-files-*/ # endfloat *.ttt *.fff + +# Latexian +TSWLatexianTemp* From 491eca8bda234da47c8dcf32770ba8067e233822 Mon Sep 17 00:00:00 2001 From: mimibar Date: Wed, 13 Jan 2016 13:00:10 -0600 Subject: [PATCH 180/200] Comments Just added some comments. Some of us don't need some of the lines in the file. --- Global/Eclipse.gitignore | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index fcafca5d..6229f7cf 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -1,4 +1,4 @@ -*.pydevproject + .metadata bin/ tmp/ @@ -19,7 +19,10 @@ local.properties # Locally stored "Eclipse launch configurations" *.launch -# CDT-specific +# PyDev specific (Python IDE for Eclipse) +*.pydevproject + +# CDT-specific (C/C++ Development Tooling) .cproject # JDT-specific (Eclipse Java Development Tools) @@ -28,7 +31,7 @@ local.properties # Java annotation processor (APT) .factorypath -# PDT-specific +# PDT-specific (PHP Development Tools) .buildpath # sbteclipse plugin From 2cf1699227078831970231a8854b853f2ff0079c Mon Sep 17 00:00:00 2001 From: Prayag Verma Date: Sat, 16 Jan 2016 17:56:31 +0530 Subject: [PATCH 181/200] Update license year to 2016 --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 4c9a2ab0..b8a103ac 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015 GitHub, Inc. +Copyright (c) 2016 GitHub, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), From cedf149de3ecaee2492a8122a6d872f0b1e5fa19 Mon Sep 17 00:00:00 2001 From: Levin Rickert Date: Sun, 17 Jan 2016 17:43:54 +0100 Subject: [PATCH 182/200] URL doesn't exists anymore --- Node.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 4796eb8d..e920c167 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -24,7 +24,6 @@ coverage build/Release # Dependency directory -# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git node_modules # Optional npm cache directory From 9771968355d9ff605ed75054996f4bf1bf9c62d4 Mon Sep 17 00:00:00 2001 From: Christopher Warrington Date: Fri, 22 Jan 2016 14:57:28 -0800 Subject: [PATCH 183/200] Ignore default Emacs server auth dir The server-auth-dir is where Emacs stores authentication files for Emacs servers (running over TCP). These are (usually) ephemeral in nature, and should be ignored. --- Global/Emacs.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index e5327bad..95e09eba 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -30,3 +30,6 @@ tramp # cask packages .cask/ + +# server auth directory +/server/ From 514f24b99a1a0c724dca4583b8bc890342dd4191 Mon Sep 17 00:00:00 2001 From: Vahagn Harutyunyan Date: Sat, 23 Jan 2016 14:44:18 +0400 Subject: [PATCH 184/200] Add *.VC.opendb for UnrealEngine Add *.VC.opendb to the .gitignore for the UnrealEngine for Visual Studio 2015 Update 1 users. This reflects the changes in the VisualStudio.gitignore made in https://github.com/github/gitignore/pull/1778 and https://github.com/github/gitignore/pull/1783 but is more specifically targeted at solving the issue http://stackoverflow.com/questions/34319008/git-issue-with-visual-studio-2015-update-1 . --- UnrealEngine.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 247f644a..94e990aa 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -34,6 +34,7 @@ *.suo *.opensdf *.sdf +*.VC.opendb # Precompiled Assets SourceArt/**/*.png From 9c92fa360fcd3c823b96476ad5c2d0c96e48cd69 Mon Sep 17 00:00:00 2001 From: pisaacs Date: Sat, 23 Jan 2016 12:56:49 -0500 Subject: [PATCH 185/200] Add .byebug_history to gitignore .byebug_history included in default Rails5 setup (https://github.com/rails/rails/blob/master/railties/lib/rails/generators/rails/app/templates/gitignore) --- Rails.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rails.gitignore b/Rails.gitignore index 55fcde6c..2121e0a8 100644 --- a/Rails.gitignore +++ b/Rails.gitignore @@ -33,3 +33,6 @@ bower.json # Ignore pow environment settings .powenv + +# Ignore Byebug command history file. +.byebug_history From 2c3b06b1ecc04ed9298d843592de1de6717a1191 Mon Sep 17 00:00:00 2001 From: Victor Arribas Date: Mon, 25 Jan 2016 18:50:35 +0100 Subject: [PATCH 186/200] Qt: ignore CMakeLists.txt.user --- Qt.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Qt.gitignore b/Qt.gitignore index 04b7a506..4a524e3a 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -32,3 +32,7 @@ Makefile* #QtCtreator Qml *.qmlproject.user *.qmlproject.user.* + +#QtCtreator CMake +CMakeLists.txt.user + From edb522ba0b1897434764968ce7698ba39119dd2a Mon Sep 17 00:00:00 2001 From: Ray Fang Date: Wed, 27 Jan 2016 14:41:47 +0800 Subject: [PATCH 187/200] Update reference article link --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 2947063e..e845b237 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,5 +1,5 @@ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm -# Reference https://intellij-support.jetbrains.com/entries/23393067 +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # User-specific stuff: .idea/workspace.xml From 8ec50f4b7448d90578e28f34632070da7b7935cf Mon Sep 17 00:00:00 2001 From: Villars Gimm Date: Wed, 27 Jan 2016 12:24:30 +0100 Subject: [PATCH 188/200] Move Calabash to Global --- Calabash.gitignore => Global/Calabash.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Calabash.gitignore => Global/Calabash.gitignore (100%) diff --git a/Calabash.gitignore b/Global/Calabash.gitignore similarity index 100% rename from Calabash.gitignore rename to Global/Calabash.gitignore From 71e0c804e6698818a661af9e1e03845a95ad3dbe Mon Sep 17 00:00:00 2001 From: Julien Carsique Date: Thu, 16 Jul 2015 14:19:00 +0200 Subject: [PATCH 189/200] Add Code Recommenders directory Code Recommenders introduced in Eclipse Luna (4.5) creates a .recommenders directory at the root of the workspace, like .metadata --- Global/Eclipse.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index 29a336c2..53236b63 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -45,3 +45,6 @@ local.properties # STS (Spring Tool Suite) .springBeans + +# Code Recommenders +.recommenders/ From 03e1898c933f3283d7fa7e6b5fdcd1a6c08eda76 Mon Sep 17 00:00:00 2001 From: Jesper Utoft Date: Wed, 3 Feb 2016 11:42:49 +0100 Subject: [PATCH 190/200] Add ignore for .lox files from fixme package --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 8c9d916f..1b3dec1c 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -51,6 +51,9 @@ acs-*.bib # cprotect *.cpt +# fixme +*.lox + #(r)(e)ledmac/(r)(e)ledpar *.end *.?end From 31c960a5ca3d26f3c449bac0b90de482c3650b51 Mon Sep 17 00:00:00 2001 From: icylogic Date: Wed, 3 Feb 2016 21:51:15 +0800 Subject: [PATCH 191/200] update Eagle.gitignore for .lck --- Eagle.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Eagle.gitignore b/Eagle.gitignore index b12e5bfe..9ced1260 100644 --- a/Eagle.gitignore +++ b/Eagle.gitignore @@ -38,3 +38,7 @@ eagle.epf *.info *.eps + +# file locks introduced since 7.x +*.lck + From 98a3ab7719edd27d4c86af3daa1fdf883bb2e114 Mon Sep 17 00:00:00 2001 From: Andrew Pennebaker Date: Sat, 6 Feb 2016 02:51:00 -0600 Subject: [PATCH 192/200] matlab: ignore octave session info --- Global/Matlab.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Matlab.gitignore b/Global/Matlab.gitignore index 79bc56cd..32a5ad4c 100644 --- a/Global/Matlab.gitignore +++ b/Global/Matlab.gitignore @@ -14,3 +14,6 @@ # Simulink Code Generation slprj/ + +# Session info +octave-workspace From 31045e29f8d6d8103262a096e145b6085f4336ea Mon Sep 17 00:00:00 2001 From: Noah Lovelady-Allen Date: Sun, 7 Feb 2016 08:57:08 -0500 Subject: [PATCH 193/200] Remove redundancy in Global/Vim.gitignore Anything matched by `*.un~` will also be matched by the last rule, `*~`. --- Global/Vim.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/Global/Vim.gitignore b/Global/Vim.gitignore index 325bd576..1099aaab 100644 --- a/Global/Vim.gitignore +++ b/Global/Vim.gitignore @@ -1,8 +1,6 @@ # swap [._]*.s[a-w][a-z] [._]s[a-w][a-z] -# persistent undo -*.un~ # session Session.vim # temporary From bcbbc6eae2d5ba533364aa697f42441c3c34db55 Mon Sep 17 00:00:00 2001 From: "Austin J. Alexander" Date: Sun, 7 Feb 2016 13:08:03 -0500 Subject: [PATCH 194/200] fix style by adding space after # --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 3762b399..51275802 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -59,7 +59,7 @@ docs/_build/ # PyBuilder target/ -#Ipython Notebook +# Ipython Notebook .ipynb_checkpoints # pyenv From cd222dfc626e1ba97a00f1c9a83a9e8e29fd66ba Mon Sep 17 00:00:00 2001 From: Roberto Novelo Date: Wed, 10 Feb 2016 12:45:16 -0600 Subject: [PATCH 195/200] Added Library Mappings and VCS Root These files differ on Windows and OS X. --- Global/JetBrains.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index e845b237..b9ed92cb 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -5,6 +5,8 @@ .idea/workspace.xml .idea/tasks.xml .idea/dictionaries +.idea/vcs.xml +.idea/jsLibraryMappings.xml # Sensitive or high-churn files: .idea/dataSources.ids From cf46e139ad908f632c19c92be1612b970aeb8235 Mon Sep 17 00:00:00 2001 From: Andrew Pennebaker Date: Thu, 11 Feb 2016 14:21:19 -0600 Subject: [PATCH 196/200] work around intellij gradle wrapper refreshing bug --- Gradle.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gradle.gitignore b/Gradle.gitignore index 2200361b..77617a15 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -9,3 +9,6 @@ gradle-app.setting # Cache of project .gradletasknamecache + +# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 +# gradle/wrapper/gradle-wrapper.properties From 1995ac64abf8ec9c318d2d1068621259030cfb35 Mon Sep 17 00:00:00 2001 From: Harrison G Date: Fri, 12 Feb 2016 06:06:03 -0500 Subject: [PATCH 197/200] Fix capitalization of IPython --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 51275802..70fc64d6 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -59,7 +59,7 @@ docs/_build/ # PyBuilder target/ -# Ipython Notebook +# IPython Notebook .ipynb_checkpoints # pyenv From 76cf90ecba2d526715b1a8bfcd9450eecc11ce4b Mon Sep 17 00:00:00 2001 From: Harrison G Date: Fri, 12 Feb 2016 07:14:41 -0500 Subject: [PATCH 198/200] Add Flask instance folder Contains private configuration. Equivalent to Django's local_settings.py. --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 70fc64d6..cf332868 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -53,6 +53,9 @@ coverage.xml *.log local_settings.py +# Flask instance folder +instance/ + # Sphinx documentation docs/_build/ From a2106e309d50ac4ce34661444c805509c03e2844 Mon Sep 17 00:00:00 2001 From: Harrison G Date: Fri, 12 Feb 2016 07:17:09 -0500 Subject: [PATCH 199/200] Fix capitalization of KiCad According to their website, the correct capitalization is KiCad, not KiCAD. --- KiCAD.gitignore => KiCad.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename KiCAD.gitignore => KiCad.gitignore (71%) diff --git a/KiCAD.gitignore b/KiCad.gitignore similarity index 71% rename from KiCAD.gitignore rename to KiCad.gitignore index a9e50ba4..24cddf9b 100644 --- a/KiCAD.gitignore +++ b/KiCad.gitignore @@ -1,4 +1,4 @@ -# For PCBs designed using KiCAD: http://www.kicad-pcb.org/ +# For PCBs designed using KiCad: http://www.kicad-pcb.org/ # Temporary files *.000 From 10ec8707f00ba8e6665fdfaf5d4425e481a0715c Mon Sep 17 00:00:00 2001 From: Joowon Ryoo Date: Sat, 13 Feb 2016 01:13:30 +0900 Subject: [PATCH 200/200] Update Android.gitignore Add some files --- Android.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index c9c2248a..d5650ce5 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -11,6 +11,7 @@ # Generated files bin/ gen/ +out/ # Gradle files .gradle/ @@ -30,3 +31,6 @@ proguard/ # Android Studio captures folder captures/ + +# Intellij +*.iml