From 297b78cea6e3d3ee1f2e41e5c120b0dcf6cdfe97 Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Sat, 17 Jan 2015 12:47:39 -0500 Subject: [PATCH 001/129] 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 002/129] 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 79234283de7e60615277421f6e79f0c3b05ebb15 Mon Sep 17 00:00:00 2001 From: Denis Grinyuk Date: Tue, 3 Feb 2015 17:25:43 +0300 Subject: [PATCH 003/129] 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 5d55d5cd9a25b08f895d74a9b66c9c906b1d1ece Mon Sep 17 00:00:00 2001 From: Mike Duigou Date: Mon, 2 Mar 2015 11:38:10 -0800 Subject: [PATCH 004/129] Add buildNumber.properties The popular build plugin org.codehaus.mojo:buildnumber-maven-plugin stores the build number it managers in a file named buildNumber.properties. --- Maven.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Maven.gitignore b/Maven.gitignore index d66c5655..8fffe724 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -5,3 +5,4 @@ pom.xml.versionsBackup pom.xml.next release.properties dependency-reduced-pom.xml +buildNumber.properties From fa9a28a68fc0e9d3a57c94afa7a57bdc5763fcbb Mon Sep 17 00:00:00 2001 From: ergl Date: Thu, 5 Mar 2015 10:56:18 +0100 Subject: [PATCH 005/129] Updated Jetbrains.gitignore --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 0481a342..dff645a0 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -32,7 +32,7 @@ ## Plugin-specific files: # IntelliJ -out/ +/out/ # mpeltonen/sbt-idea plugin .idea_modules/ From 9f80691efd0ec84e6e6303b44e06de39e9e9eb85 Mon Sep 17 00:00:00 2001 From: Lucretiel Date: Fri, 6 Mar 2015 01:06:58 -0500 Subject: [PATCH 006/129] Added coverage annotation files Coverage creates annotation files by appending ",cover" (with a comma, not a period) to the filename. --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 10d47bd3..54bf4f5f 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -41,6 +41,7 @@ htmlcov/ .cache nosetests.xml coverage.xml +,cover # Translations *.mo From 8c0685fd96b5de80078b39bcb022c68ecd00e996 Mon Sep 17 00:00:00 2001 From: jake johns Date: Tue, 10 Mar 2015 02:49:24 -0500 Subject: [PATCH 007/129] Add ".env" to Laravel.gitignore Laravel 5 uses vlucas/phpdotenv for env configuration. http://laravel.com/docs/5.0/configuration#environment-configuration Previous version used env.php files. the new configuration files do not have .php extension --- Laravel.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index ac3492e2..36d7adeb 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -1,3 +1,4 @@ /bootstrap/compiled.php .env.*.php .env.php +.env From d060ee0e571ed5d0d965e62fcaf80af87204affb Mon Sep 17 00:00:00 2001 From: riosc Date: Wed, 11 Mar 2015 15:53:11 -0300 Subject: [PATCH 008/129] removing aditional white space removing this aditional white space avoid a mistake for beginners developers ignore the pod directory, because is confusing to note when they remove the '#' character and git still is tracking the pod dir. --- Objective-C.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index a3cd143a..c964cd88 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -23,4 +23,4 @@ DerivedData # you should judge for yourself, the pros and cons are mentioned at: # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control # -# Pods/ +#Pods/ From 08de2b88e286e6f90376bc8d104b3052d0e0a310 Mon Sep 17 00:00:00 2001 From: Alberto Leal Date: Wed, 11 Mar 2015 23:14:12 -0400 Subject: [PATCH 009/129] Add dSYM folder to C.gitignore for OSX env See https://github.com/github/gitignore/pull/527 > For C.gitignore add dSYM folder from Mac OS X to gitignore --- C.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/C.gitignore b/C.gitignore index edf6645d..bbf313b2 100644 --- a/C.gitignore +++ b/C.gitignore @@ -27,3 +27,6 @@ *.i*86 *.x86_64 *.hex + +# Debug files +*.dSYM/ From e71dfbb6d095a541eb74017525c8507c83b70d35 Mon Sep 17 00:00:00 2001 From: TAC Date: Sat, 14 Mar 2015 15:22:33 +0900 Subject: [PATCH 010/129] Add .ensime_cache dir .ensime_cache is cache dir. --- Global/Ensime.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/Ensime.gitignore b/Global/Ensime.gitignore index 3772bdfe..f2daebb9 100644 --- a/Global/Ensime.gitignore +++ b/Global/Ensime.gitignore @@ -1,3 +1,4 @@ # Ensime specific .ensime +.ensime_cache/ .ensime_lucene/ From 4e33a249cf7ea843872f0c4fc9619b3dc9ab0abc Mon Sep 17 00:00:00 2001 From: myurtoglu Date: Sat, 14 Mar 2015 17:29:54 -0700 Subject: [PATCH 011/129] Add CUDA.gitignore --- CUDA.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CUDA.gitignore diff --git a/CUDA.gitignore b/CUDA.gitignore new file mode 100644 index 00000000..cb385db8 --- /dev/null +++ b/CUDA.gitignore @@ -0,0 +1,6 @@ +*.i +*.ii +*.gpu +*.ptx +*.cubin +*.fatbin From ba6f0a94abe2c802caba33b42da1e6a36e40f526 Mon Sep 17 00:00:00 2001 From: Lucretiel Date: Mon, 16 Mar 2015 10:37:24 -0400 Subject: [PATCH 012/129] Fixed coverage annotation Added missing wildcard to the `*,cover` coverage annotation. --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 54bf4f5f..ba746605 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -41,7 +41,7 @@ htmlcov/ .cache nosetests.xml coverage.xml -,cover +*,cover # Translations *.mo From 57e9f2a809a4e94391feb208db625a73ac4e9e66 Mon Sep 17 00:00:00 2001 From: Dan Nixon Date: Thu, 19 Mar 2015 19:59:59 +0000 Subject: [PATCH 013/129] Create KiCAD.gitignore Add file for KiCAD EDA software --- KiCAD.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 KiCAD.gitignore diff --git a/KiCAD.gitignore b/KiCAD.gitignore new file mode 100644 index 00000000..3dd696ea --- /dev/null +++ b/KiCAD.gitignore @@ -0,0 +1,11 @@ +# For PCBs designed using KiCAD: http://www.kicad-pcb.org/ + +# Temporary files +*.000 +*.bak + +# Netlist files (exported from Eeschema) +*.net + +# Autorouter files (exported from Pcbnew) +.dsn From 082ab4a3ec6eeee3c2aa6f02aebec1acd59afb60 Mon Sep 17 00:00:00 2001 From: Ian Garcez Date: Mon, 23 Mar 2015 18:11:11 -0300 Subject: [PATCH 014/129] Stop ignoring app/code/local/Mage with 'mage' on the gitignore file, a user can't add files customized from Mage --- Magento.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Magento.gitignore b/Magento.gitignore index 7231003a..e2ea0133 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -89,7 +89,7 @@ LICENSE_AFL.txt LICENSE.html LICENSE.txt LICENSE_EE* -mage +/mage media/customer/ media/dhl/ media/downloadable/ From 3292d1d35d0ed6030c2618e1619623bbddcddb60 Mon Sep 17 00:00:00 2001 From: Eddie Gurnee Date: Thu, 26 Mar 2015 01:27:09 -0400 Subject: [PATCH 015/129] comment out CakePHP version headers --- CakePHP.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CakePHP.gitignore b/CakePHP.gitignore index 6f5ae46c..55a665e4 100644 --- a/CakePHP.gitignore +++ b/CakePHP.gitignore @@ -1,11 +1,11 @@ -CakePHP 3 +# CakePHP 3 /vendor/* /config/app.php /tmp/* /logs/* -CakePHP 2 +# CakePHP 2 /app/tmp/* /app/Config/core.php From 7078949f7dfbdc95c75764ec13118184c1fbaa17 Mon Sep 17 00:00:00 2001 From: Jean-Christophe GAY Date: Sun, 29 Mar 2015 18:11:30 +0200 Subject: [PATCH 016/129] Ignore timing.properties from takari-smart-builder This extension is an alternative scheduler to build multi-module Maven projects. It stores and updates timing for every build run in .mvn/timing.properties. http://takari.io/book/30-team-maven.html#takari-smart-builder --- Maven.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Maven.gitignore b/Maven.gitignore index 8fffe724..1cdc9f7f 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -6,3 +6,4 @@ pom.xml.next release.properties dependency-reduced-pom.xml buildNumber.properties +.mvn/timing.properties From 5b3bb94904b705fe2fc714696dd042f9344d5bab Mon Sep 17 00:00:00 2001 From: shalecraig Date: Sun, 29 Mar 2015 12:24:23 -0400 Subject: [PATCH 017/129] Link to section being described --- Global/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/README.md b/Global/README.md index adc1099c..06b6649b 100644 --- a/Global/README.md +++ b/Global/README.md @@ -4,7 +4,7 @@ This directory contains globally useful gitignores, e.g. OS-specific and editor specific. For more on global gitignores: - + And a good blog post about 'em: From 57faa80a185f8b732e55e4fb7643e4793071c53f Mon Sep 17 00:00:00 2001 From: Tushar Kapila Date: Thu, 2 Apr 2015 22:39:52 +0530 Subject: [PATCH 018/129] 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 019/129] 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 925bdbe76ecfaf53b229cf516d04c1092ab6a053 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Wed, 8 Apr 2015 12:07:41 -0700 Subject: [PATCH 020/129] Add .jekyll-metadata to default Jekyll .gitignore --- Jekyll.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Jekyll.gitignore b/Jekyll.gitignore index 0c3e5abb..5c91b60c 100644 --- a/Jekyll.gitignore +++ b/Jekyll.gitignore @@ -1,2 +1,3 @@ _site/ .sass-cache/ +.jekyll-metadata From 884d8411c1c4694789a70483bb119e21f529f960 Mon Sep 17 00:00:00 2001 From: Ginger Geek Date: Thu, 16 Apr 2015 10:16:48 +0100 Subject: [PATCH 021/129] 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 022/129] 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 023/129] 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 024/129] 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 025/129] 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 026/129] 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 027/129] 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 028/129] 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 029/129] 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 030/129] 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 031/129] 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 032/129] 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 033/129] 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 034/129] 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 035/129] 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 036/129] 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 037/129] 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 038/129] 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 039/129] 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 040/129] 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 041/129] 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 042/129] 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 043/129] 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 044/129] 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 045/129] 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 046/129] [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 047/129] 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 048/129] 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 049/129] 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 050/129] 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 051/129] 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 052/129] 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 053/129] 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 054/129] 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 055/129] 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 07b15ab2a1c2e3e6f9fcf297d7b5a4c21552b39e Mon Sep 17 00:00:00 2001 From: Skyler Berg Date: Sun, 7 Jun 2015 11:40:21 -0700 Subject: [PATCH 056/129] 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 4323f1e2c8faa792dac2619a1983fc9ffa4fffc1 Mon Sep 17 00:00:00 2001 From: Brian Gesiak Date: Tue, 9 Jun 2015 00:24:09 -0400 Subject: [PATCH 057/129] [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 058/129] 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 059/129] 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 060/129] 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 061/129] 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 062/129] 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 063/129] 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 064/129] 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 065/129] 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 066/129] 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 2d69d6a7e3f50891cde36caaa5d94f5f1d3b6457 Mon Sep 17 00:00:00 2001 From: sfhardman Date: Thu, 23 Jul 2015 11:21:57 +1200 Subject: [PATCH 067/129] 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 068/129] 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 069/129] 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 070/129] 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 14fe6b0a5c149b60ccd5768eaf540f22985f9c8f Mon Sep 17 00:00:00 2001 From: Jonathan Boulanger Date: Tue, 4 Aug 2015 12:13:51 -0400 Subject: [PATCH 071/129] 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 072/129] 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 073/129] 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 074/129] 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 075/129] 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 076/129] 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 b34eaa318fef71139cf54ba1d40456e4b6718de8 Mon Sep 17 00:00:00 2001 From: Star Peng Date: Sun, 9 Mar 2014 23:03:43 +0800 Subject: [PATCH 077/129] 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 ed7d67a1757841e03ea70d995e3e7a9fe828afa1 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Mon, 31 Aug 2015 09:39:54 +0200 Subject: [PATCH 078/129] 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/129] 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/129] 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/129] 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/129] 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/129] 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/129] 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 3ceedd266a05a299e8144499e300d50b01a07cc3 Mon Sep 17 00:00:00 2001 From: Nellemandela Date: Tue, 22 Sep 2015 20:02:06 +0200 Subject: [PATCH 085/129] 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 086/129] 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 087/129] 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 088/129] 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 089/129] 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 090/129] 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 091/129] 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 09a78cc2bd668c2261c4432e64d202472da0d37e Mon Sep 17 00:00:00 2001 From: Jim Hester Date: Fri, 2 Oct 2015 08:50:47 -0400 Subject: [PATCH 092/129] 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 093/129] 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 094/129] 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 095/129] 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 096/129] 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 097/129] 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 098/129] 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 f4cf36c5e1e275cb40b981f84be0cd723cd0c152 Mon Sep 17 00:00:00 2001 From: Vitor Prado Date: Wed, 14 Oct 2015 13:45:12 -0300 Subject: [PATCH 099/129] 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 100/129] 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 101/129] 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 102/129] 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 103/129] 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 104/129] 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 105/129] 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 106/129] 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 107/129] 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 108/129] 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 109/129] 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 110/129] 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 111/129] 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 112/129] 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 113/129] 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 114/129] 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 115/129] 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 116/129] 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 117/129] 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 118/129] 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 119/129] 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 120/129] 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 121/129] 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 122/129] 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 123/129] 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 124/129] 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 125/129] 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 126/129] 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 127/129] 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 128/129] 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 129/129] 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