From 297b78cea6e3d3ee1f2e41e5c120b0dcf6cdfe97 Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Sat, 17 Jan 2015 12:47:39 -0500 Subject: [PATCH 01/24] 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 c63fc582604c6859782e930538f68625415f5d55 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 14 May 2015 14:02:26 +0930 Subject: [PATCH 02/24] 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 03/24] 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 eab7f25a2b16e27f9075918a949db6ff18128d6e Mon Sep 17 00:00:00 2001 From: Lars Gyrup Brink Nielsen Date: Fri, 15 May 2015 20:35:12 +0200 Subject: [PATCH 04/24] 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 fbe660091e3d91dfd21e5728463e9f5b084cbe6e Mon Sep 17 00:00:00 2001 From: Katrin Leinweber Date: Wed, 20 May 2015 17:12:32 +0200 Subject: [PATCH 05/24] 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 06/24] 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 07/24] 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 08/24] 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 09/24] 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 4323f1e2c8faa792dac2619a1983fc9ffa4fffc1 Mon Sep 17 00:00:00 2001 From: Brian Gesiak Date: Tue, 9 Jun 2015 00:24:09 -0400 Subject: [PATCH 10/24] [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 11/24] 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 12/24] 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 13/24] 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 14/24] 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 15/24] 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 16/24] 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 17/24] 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 18/24] 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 19/24] 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 20/24] 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 21/24] 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 22/24] 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 23/24] 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 5e87c947e4ed2f4ba0c5b98ea2711cbaea107df8 Mon Sep 17 00:00:00 2001 From: cyrbil Date: Thu, 6 Aug 2015 11:30:45 +0200 Subject: [PATCH 24/24] 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