From 69fef749cb58953eb1091c36b88882dd19e50096 Mon Sep 17 00:00:00 2001 From: Carl Suster Date: Sun, 1 Mar 2015 12:53:03 +1100 Subject: [PATCH 001/107] Add an explanation to reduce PHP framework clutter --- CONTRIBUTING.md | 5 +++++ README.md | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 91543ab4..1b94f6cb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -28,6 +28,11 @@ high quality, we request that contributions adhere to the following guidelines. In general, the more you can do to help us understand the change you’re making, the more likely we’ll be to accept your contribution quickly. +If a template is mostly a list of files installed by a particular version of +some software (e.g. a PHP framework) then it's brittle and probably no more +helpful than a simple `ls`. If it's not possible to curate a small set of +useful rules, then the template might not be a good fit for this collection. + Please also understand that we can’t list every tool that ever existed. Our aim is to curate a collection of the *most common and helpful* templates, not to make sure we cover every project possible. If we choose not to diff --git a/README.md b/README.md index 14042e94..684a1abf 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,11 @@ high quality, we request that contributions adhere to the following guidelines. In general, the more you can do to help us understand the change you’re making, the more likely we’ll be to accept your contribution quickly. +If a template is mostly a list of files installed by a particular version of +some software (e.g. a PHP framework) then it's brittle and probably no more +helpful than a simple `ls`. If it's not possible to curate a small set of +useful rules, then the template might not be a good fit for this collection. + Please also understand that we can’t list every tool that ever existed. Our aim is to curate a collection of the *most common and helpful* templates, not to make sure we cover every project possible. If we choose not to From 2ac96e7caa4258408278e1cc26f5367c0880d6e9 Mon Sep 17 00:00:00 2001 From: Tinh-Hai Collet Date: Fri, 15 May 2015 16:11:44 +0100 Subject: [PATCH 002/107] First .gitignore for Stata files --- Stata.gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Stata.gitignore diff --git a/Stata.gitignore b/Stata.gitignore new file mode 100644 index 00000000..26ea2e69 --- /dev/null +++ b/Stata.gitignore @@ -0,0 +1,19 @@ +# .gitignore file for git projects containing Stata files +# Commercial statistical software: http://www.stata.com + +# Stata dataset and output files +*.dta +*.gph +*.log +*.smcl +*.stpr +*.stsem + +# Graphic export files from Stata +*.ps +*.eps +*.wmf +*.emf +*.pdf +*.png +*.tif From d5a1f908a9d5d992efa3d1491b99b2ae171dc87b Mon Sep 17 00:00:00 2001 From: Tinh-Hai Collet Date: Mon, 18 May 2015 19:06:04 +0100 Subject: [PATCH 003/107] Move Stata.gitignore to Global/, as discussed with shiftkey --- Stata.gitignore => Global/Stata.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Stata.gitignore => Global/Stata.gitignore (100%) diff --git a/Stata.gitignore b/Global/Stata.gitignore similarity index 100% rename from Stata.gitignore rename to Global/Stata.gitignore From aaef8dd60562b2d25cc9db3e7510e32a01c40580 Mon Sep 17 00:00:00 2001 From: Tinh-Hai Collet Date: Wed, 15 Jul 2015 08:20:21 +0100 Subject: [PATCH 004/107] Commented out the exclusion of image files, added a link to list the image file types --- Global/Stata.gitignore | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Global/Stata.gitignore b/Global/Stata.gitignore index 26ea2e69..07997bb1 100644 --- a/Global/Stata.gitignore +++ b/Global/Stata.gitignore @@ -10,10 +10,15 @@ *.stsem # Graphic export files from Stata -*.ps -*.eps -*.wmf -*.emf -*.pdf -*.png -*.tif +# Stata command graph export: http://www.stata.com/manuals14/g-2graphexport.pdf +# +# You may add graphic export files to your .gitignore. However you should be +# aware that this will exclude all image files from this main directory +# and subdirectories. +# *.ps +# *.eps +# *.wmf +# *.emf +# *.pdf +# *.png +# *.tif From 872ae5d445d0de2dc3b71cace62be2ef620fd634 Mon Sep 17 00:00:00 2001 From: Simeon Visser Date: Sun, 2 Aug 2015 19:26:46 +0100 Subject: [PATCH 005/107] Added .gitignore for PureScript --- PureScript.gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 PureScript.gitignore diff --git a/PureScript.gitignore b/PureScript.gitignore new file mode 100644 index 00000000..361cf527 --- /dev/null +++ b/PureScript.gitignore @@ -0,0 +1,8 @@ +# Dependencies +.psci_modules +bower_components +node_modules + +# Generated files +.psci +output From 4f440157df037697bda55607c902635494f54c30 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Thu, 26 Nov 2015 17:03:54 +0100 Subject: [PATCH 006/107] Add rule to unignore the maven wrapper jar --- Maven.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Maven.gitignore b/Maven.gitignore index 1cdc9f7f..9af45b17 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -7,3 +7,6 @@ release.properties dependency-reduced-pom.xml buildNumber.properties .mvn/timing.properties + +# Exclude maven wrapper +!/.mvn/wrapper/maven-wrapper.jar From 7e93ef34489ba831766a6b56e67522fda0ed21fd Mon Sep 17 00:00:00 2001 From: Sean Fisk Date: Thu, 24 Mar 2016 13:26:09 -0400 Subject: [PATCH 007/107] Waf: Update project URL --- Waf.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Waf.gitignore b/Waf.gitignore index 48e8d8f7..56181927 100644 --- a/Waf.gitignore +++ b/Waf.gitignore @@ -1,4 +1,4 @@ -# for projects that use Waf for building: http://code.google.com/p/waf/ .waf-* .waf3-* .lock-* +# For projects that use the Waf build system: https://waf.io/ From d80090a04a40a6376ddbbe1e46130947b8474069 Mon Sep 17 00:00:00 2001 From: Sean Fisk Date: Thu, 24 Mar 2016 13:26:58 -0400 Subject: [PATCH 008/107] Waf: Be more explicit in patterns --- Waf.gitignore | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Waf.gitignore b/Waf.gitignore index 56181927..dad2b56b 100644 --- a/Waf.gitignore +++ b/Waf.gitignore @@ -1,4 +1,9 @@ -.waf-* -.waf3-* -.lock-* # For projects that use the Waf build system: https://waf.io/ +# Dot-hidden on Unix-like systems +.waf-*-*/ +.waf3-*-*/ +# Hidden directory on Windows (no dot) +waf-*-*/ +waf3-*-*/ +# Lockfile +.lock-waf_*_build From 869ed27de9d6781d4a9e03f12598497b171ccc06 Mon Sep 17 00:00:00 2001 From: Tony Lotts Date: Wed, 25 May 2016 00:05:22 +0800 Subject: [PATCH 009/107] Ignore ensime files See https://github.com/ensime --- Scala.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Scala.gitignore b/Scala.gitignore index c58d83b3..47210014 100644 --- a/Scala.gitignore +++ b/Scala.gitignore @@ -13,5 +13,7 @@ project/boot/ project/plugins/project/ # Scala-IDE specific +.ensime +.ensime_cache/ .scala_dependencies .worksheet From d3b23596c0cf4cbc15c4326bf8d962e3f9c4c9a0 Mon Sep 17 00:00:00 2001 From: halloworld Date: Mon, 20 Jun 2016 11:12:58 +0800 Subject: [PATCH 010/107] =?UTF-8?q?=E6=B7=BB=E5=8A=A0DS=5FStore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Objective-C.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 86f21d8e..3e012f2d 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -58,3 +58,4 @@ fastlane/screenshots # https://github.com/johnno1962/injectionforxcode iOSInjectionProject/ +.DS_Store From c50a47616216f6fa460272fa37aec88f9488c9f6 Mon Sep 17 00:00:00 2001 From: sammy Date: Wed, 6 Jul 2016 10:01:06 -0700 Subject: [PATCH 011/107] Update Perl.gitignore ignore perltidy output files --- Perl.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Perl.gitignore b/Perl.gitignore index ae2ad536..5ade0a16 100644 --- a/Perl.gitignore +++ b/Perl.gitignore @@ -16,5 +16,6 @@ Build.bat nytprof.out /pm_to_blib *.o +*.pm.tdy *.bs /_eumm/ From eb90a5771f74502ad3f502391279dbf7062849bb Mon Sep 17 00:00:00 2001 From: Cy Date: Mon, 25 Jul 2016 11:05:58 +0800 Subject: [PATCH 012/107] Update Laravel.gitignore Ignore Homestead related config files --- Laravel.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index 1cd717b6..7cf79610 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -10,6 +10,8 @@ bootstrap/cache/ .env.*.php .env.php .env +Homestead.yaml +Homestead.json # Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer .rocketeer/ From edfd83412f8230b68130bef44dd064bacfd02d3e Mon Sep 17 00:00:00 2001 From: Kevin Most Date: Mon, 1 Aug 2016 15:58:42 -0400 Subject: [PATCH 013/107] Add .externalNativeBuild to Android gitignore --- Android.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index e5df7b91..935ceef0 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -39,3 +39,6 @@ captures/ # Keystore files *.jks + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild From 1ca4b201e03711e6e31c393cb73c5c43be1b040c Mon Sep 17 00:00:00 2001 From: Arvid Gerstmann Date: Tue, 6 Sep 2016 06:56:04 +0200 Subject: [PATCH 014/107] Extend C to ignore Visual Studio artifacts Visual Studio creates a few artifacts which weren't ignored before, mainly .idb, .pdb and .ilk files which are either created by CL.EXE or by LINK.EXE were added to the gitignore for Windows projects. A little more information can be found here on Microsoft's documentation: https://msdn.microsoft.com/en-us/library/3awe4781.aspx --- C.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/C.gitignore b/C.gitignore index 7a065c70..6c0ea0c5 100644 --- a/C.gitignore +++ b/C.gitignore @@ -7,6 +7,11 @@ *.obj *.elf +# Linker output +*.ilk +*.map +*.exp + # Precompiled Headers *.gch *.pch @@ -34,3 +39,5 @@ # Debug files *.dSYM/ *.su +*.idb +*.pdb From aad5932d4b18949f10d252539c7aab59bdf85e31 Mon Sep 17 00:00:00 2001 From: Peter Morlion Date: Wed, 7 Sep 2016 12:09:45 +0200 Subject: [PATCH 015/107] Include shared settings, according to official docs Official docs, found here: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 (as of 13 Aug 2016) --- Global/JetBrains.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index ea83a5eb..0a254147 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -4,9 +4,6 @@ # User-specific stuff: .idea/workspace.xml .idea/tasks.xml -.idea/dictionaries -.idea/vcs.xml -.idea/jsLibraryMappings.xml # Sensitive or high-churn files: .idea/dataSources.ids From da681d7115724f7517bdf29b2a9ca3a41b61442a Mon Sep 17 00:00:00 2001 From: Muhammad Rehan Saeed Date: Thu, 15 Sep 2016 08:48:08 +0100 Subject: [PATCH 016/107] Add support for Cake.Net Cake.Net creates a tools folder at the root which contains downloaded packages and should not be checked in. --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index f3e58fc2..e4ca5275 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -263,3 +263,6 @@ paket-files/ # Python Tools for Visual Studio (PTVS) __pycache__/ *.pyc + +# Cake +tools/ From 4f7062e132d7f88e68ab737e64fef872bd3a491f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ferreira=20Loff?= Date: Mon, 19 Sep 2016 17:21:02 +0100 Subject: [PATCH 017/107] Add .nfs files to Linux.gitignore --- Global/Linux.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index cc958689..b56bf65d 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -8,3 +8,6 @@ # Linux trash folder which might appear on any partition or disk .Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* From a080e3676747f4aa1b7ba2a0300abea7d2be421e Mon Sep 17 00:00:00 2001 From: aarian93p Date: Wed, 21 Sep 2016 09:55:57 +0330 Subject: [PATCH 018/107] Added kernel module compilation results Adds kernel module compile to the ignore list. --- C.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/C.gitignore b/C.gitignore index 7a065c70..d93756fe 100644 --- a/C.gitignore +++ b/C.gitignore @@ -34,3 +34,10 @@ # Debug files *.dSYM/ *.su + +# Kernel Module Compile Results +*.mod.c +modules.order +Module.symvers +Mkfile.old +dkms.conf From b7e6ce66c701ac11cc2eff352f03ded64fc2287b Mon Sep 17 00:00:00 2001 From: aarian93p Date: Wed, 21 Sep 2016 10:04:49 +0330 Subject: [PATCH 019/107] More kernel module compilation results Added a few missed files from kernel compilation results --- C.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C.gitignore b/C.gitignore index d93756fe..06e97ff4 100644 --- a/C.gitignore +++ b/C.gitignore @@ -36,7 +36,8 @@ *.su # Kernel Module Compile Results -*.mod.c +*.mod* +*.cmd modules.order Module.symvers Mkfile.old From 841cf5859239626b4e8430e1734e07c7fc9c1b54 Mon Sep 17 00:00:00 2001 From: Mike Ralphson Date: Wed, 21 Sep 2016 07:18:07 +0100 Subject: [PATCH 020/107] Update Node.gitignore (*.tgz) Add `*.tgz`, the output of `npm pack`, or other build-steps. --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index bf7525f9..bc7fc557 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -39,3 +39,6 @@ jspm_packages # Optional REPL history .node_repl_history + +# Output of 'npm pack' +*.tgz From b87e4747419dca9f238930b099a1373f88cbb0b9 Mon Sep 17 00:00:00 2001 From: Muhammad Rehan Saeed Date: Mon, 26 Sep 2016 09:27:10 +0100 Subject: [PATCH 021/107] Update VisualStudio.gitignore --- VisualStudio.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index e4ca5275..1b86e7ec 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -264,5 +264,5 @@ paket-files/ __pycache__/ *.pyc -# Cake -tools/ +# Cake - Uncomment if you are using it +# tools/ From 14740a52c50fabdab1758808e995dcd9766bd76f Mon Sep 17 00:00:00 2001 From: futabooo Date: Tue, 27 Sep 2016 10:33:41 +0900 Subject: [PATCH 022/107] Add vendor folder to Go.gitignore --- Go.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Go.gitignore b/Go.gitignore index cd0d5d1e..397a0ed4 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -25,3 +25,6 @@ _testmain.go # Output of the go coverage tool, specifically when used with LiteIDE *.out + +# external packages folder +vendor/ From 309aa7aba03dff56971883c5507cbf32b6380853 Mon Sep 17 00:00:00 2001 From: Wayne Nilsen Date: Sun, 2 Oct 2016 23:46:39 -0400 Subject: [PATCH 023/107] Add rustfmt gitignore (#2108) --- Rust.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rust.gitignore b/Rust.gitignore index cb14a420..50281a44 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -5,3 +5,6 @@ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk From 80794566375c97695d84b4cbd664baec90d56005 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Tue, 11 Oct 2016 09:39:26 +0200 Subject: [PATCH 024/107] autotools.gitignore: add missing files See the full list of scripts documented in AC_CONFIG_AUX_DIR in https://www.gnu.org/software/automake/manual/html_node/Optional.html --- Autotools.gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Autotools.gitignore b/Autotools.gitignore index 1e9158e2..e3923f96 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -1,6 +1,11 @@ # http://www.gnu.org/software/automake Makefile.in +/ar-lib +/mdate-sh +/py-compile +/test-driver +/ylwrap # http://www.gnu.org/software/autoconf @@ -9,10 +14,20 @@ Makefile.in /autoscan-*.log /aclocal.m4 /compile +/config.guess /config.h.in +/config.sub /configure /configure.scan /depcomp /install-sh /missing /stamp-h1 + +# https://www.gnu.org/software/libtool/ + +/ltmain.sh + +# http://www.gnu.org/software/texinfo + +/texinfo.tex From 46d36eb78f4f14b9bc941b3aa72ac9d1092efd04 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Tue, 11 Oct 2016 17:18:40 -0400 Subject: [PATCH 025/107] Update Coq.gitignore Add various files that show up when you run tactics (the *.cache in 8.4 and 8.5, .*.cache in 8.6), build plugins (the various OCaml files), and for the native compiler of Coq 8.5. --- Coq.gitignore | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/Coq.gitignore b/Coq.gitignore index d3083b3a..ad9b23e2 100644 --- a/Coq.gitignore +++ b/Coq.gitignore @@ -1,3 +1,27 @@ -*.vo +.*.aux +*.a +*.cma +*.cmi +*.cmo +*.cmx +*.cmxa +*.cmxs *.glob +*.ml.d +*.ml4.d +*.mli.d +*.o *.v.d +*.vio +*.vo +.coq-native/ +.csdp.cache +.lia.cache +.nia.cache +.nlia.cache +.nra.cache +csdp.cache +lia.cache +nia.cache +nlia.cache +nra.cache From 6615075fe4add11e8374573fe53b778cf2883ded Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Tue, 11 Oct 2016 17:21:20 -0400 Subject: [PATCH 026/107] Add .native --- Coq.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Coq.gitignore b/Coq.gitignore index ad9b23e2..a3cb78ee 100644 --- a/Coq.gitignore +++ b/Coq.gitignore @@ -10,6 +10,7 @@ *.ml.d *.ml4.d *.mli.d +*.native *.o *.v.d *.vio From 8202fbb408af642c886b525ef7149812376cba6e Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Tue, 11 Oct 2016 17:25:39 -0400 Subject: [PATCH 027/107] Add mllib, mlpack files --- Coq.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Coq.gitignore b/Coq.gitignore index a3cb78ee..f25a61d9 100644 --- a/Coq.gitignore +++ b/Coq.gitignore @@ -10,6 +10,8 @@ *.ml.d *.ml4.d *.mli.d +*.mllib.d +*.mlpack.d *.native *.o *.v.d From 2d39231149063e67436933e5ff44273ae4093321 Mon Sep 17 00:00:00 2001 From: Rhys Powell Date: Wed, 12 Oct 2016 11:36:46 +1100 Subject: [PATCH 028/107] Update Elixir.gitignore This should really ignore compiled .beam files as well --- Elixir.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Elixir.gitignore b/Elixir.gitignore index 755b6055..ac67aaf3 100644 --- a/Elixir.gitignore +++ b/Elixir.gitignore @@ -3,3 +3,4 @@ /deps erl_crash.dump *.ez +*.beam From 11c20eb3ba402f1dfc359b070e1d2ea4e72ed74a Mon Sep 17 00:00:00 2001 From: Craig Morris Date: Wed, 12 Oct 2016 14:07:57 +0100 Subject: [PATCH 029/107] Add yarn ignored file --- Node.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index bc7fc557..9a439fcd 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -42,3 +42,7 @@ jspm_packages # Output of 'npm pack' *.tgz + +# Yarn Integrity file +.yarn-integrity + From b5f807c0b65b5a0a05fa7839a0e01158afc49158 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 15 Oct 2016 11:41:12 +0000 Subject: [PATCH 030/107] excluding vqmod cache files and logs --- OpenCart.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/OpenCart.gitignore b/OpenCart.gitignore index 28e45aa6..254103bd 100644 --- a/OpenCart.gitignore +++ b/OpenCart.gitignore @@ -11,3 +11,9 @@ system/cache/ system/logs/ system/storage/ + +# vQmod +vqmod/logs/* +vqmod/vqcache/* +vqmod/checked.cache +vqmod/mods.cache From f2aff1de00735757ed0ae3b75edadcec58ff357d Mon Sep 17 00:00:00 2001 From: dvlprs Date: Sat, 15 Oct 2016 11:44:22 +0000 Subject: [PATCH 031/107] excluding vqmod cache files and logs --- OpenCart.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenCart.gitignore b/OpenCart.gitignore index 254103bd..97be41fa 100644 --- a/OpenCart.gitignore +++ b/OpenCart.gitignore @@ -12,8 +12,9 @@ system/logs/ system/storage/ -# vQmod +# vQmod log files vqmod/logs/* +# vQmod cache files vqmod/vqcache/* vqmod/checked.cache vqmod/mods.cache From 14cf3b029da5e42ab42aaea0098b2cc9a2683156 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Mon, 17 Oct 2016 13:48:16 +0800 Subject: [PATCH 032/107] ignore public/storage for laravel 5 Ref: https://github.com/laravel/laravel/blob/master/.gitignore#L2 --- Laravel.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index 1cd717b6..e7c594fa 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -7,6 +7,7 @@ app/storage/ # Laravel 5 & Lumen specific bootstrap/cache/ +public/storage .env.*.php .env.php .env From 89ba2cc174ead26c56aaca83a9de82f7c6485a3f Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Mon, 17 Oct 2016 17:24:02 +0800 Subject: [PATCH 033/107] Ignore Passport-generated OAuth keys --- Laravel.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index e7c594fa..f4ec862a 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -8,6 +8,7 @@ app/storage/ # Laravel 5 & Lumen specific bootstrap/cache/ public/storage +storage/*.key .env.*.php .env.php .env From 679c64a9364fc5190ac23bca612a547f564a632f Mon Sep 17 00:00:00 2001 From: "Jason N. Gaylord" Date: Mon, 17 Oct 2016 18:49:23 -0400 Subject: [PATCH 034/107] Removed LaunchSettings.json from being committed --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 1b86e7ec..f4a3bfc1 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -44,6 +44,7 @@ dlldata.c project.lock.json project.fragment.lock.json artifacts/ +Properties/launchSettings.json *_i.c *_p.c From d226019b72a60bfdbe4147df6b7384f18fea77db Mon Sep 17 00:00:00 2001 From: mrs-mrl Date: Wed, 19 Oct 2016 13:24:44 +0200 Subject: [PATCH 035/107] ignore Visual Studio 6 workspace file see e.g. http://stackoverflow.com/a/1530193 https://msdn.microsoft.com/en-us/library/aa241721(v=vs.60).aspx --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index f4a3bfc1..62dd6c9e 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -239,6 +239,9 @@ FakesAssemblies/ # Visual Studio 6 workspace options file *.opt +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + # Visual Studio LightSwitch build output **/*.HTMLClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts From 1a553e1f5ffba90cb6bcefc9092170c72c33072e Mon Sep 17 00:00:00 2001 From: Krishna Ram Prakash R Date: Fri, 21 Oct 2016 14:21:09 +0530 Subject: [PATCH 036/107] laravel: fixed incorrect ignoring of cache folder --- Laravel.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Laravel.gitignore b/Laravel.gitignore index e7c594fa..d1c62fe8 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -6,7 +6,6 @@ bootstrap/compiled.php app/storage/ # Laravel 5 & Lumen specific -bootstrap/cache/ public/storage .env.*.php .env.php From 60968bb13981e8fb8d13768935b5f2a615c3516a Mon Sep 17 00:00:00 2001 From: Wooseop Kim Date: Sat, 22 Oct 2016 12:05:13 +0900 Subject: [PATCH 037/107] Add .idea/tasks.xml Please refer to [the official guide](https://intellij-support.jetbrains.com/hc/en-us/articles/206544839-How-to-manage-projects-under-Version-Control-Systems). --- Android.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.gitignore b/Android.gitignore index 935ceef0..91e3c007 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -35,6 +35,7 @@ captures/ # Intellij *.iml .idea/workspace.xml +.idea/tasks.xml .idea/libraries # Keystore files From 32a03614427beca95df615b16c35149a712d2a0a Mon Sep 17 00:00:00 2001 From: Denis Defreyne Date: Sun, 23 Oct 2016 15:03:16 +0200 Subject: [PATCH 038/107] Nanoc: Fix capitalisation of Nanoc --- Nanoc.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nanoc.gitignore b/Nanoc.gitignore index abc21828..14a637fb 100644 --- a/Nanoc.gitignore +++ b/Nanoc.gitignore @@ -1,4 +1,4 @@ -# For projects using nanoc (http://nanoc.ws/) +# For projects using Nanoc (http://nanoc.ws/) # Default location for output, needs to match output_dir's value found in config.yaml output/ From 3cc7c492da3d5507569ef66366db7b27610124f6 Mon Sep 17 00:00:00 2001 From: Denis Defreyne Date: Sun, 23 Oct 2016 15:04:39 +0200 Subject: [PATCH 039/107] Nanoc: Improve grammar --- Nanoc.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nanoc.gitignore b/Nanoc.gitignore index 14a637fb..0242ba4f 100644 --- a/Nanoc.gitignore +++ b/Nanoc.gitignore @@ -1,6 +1,6 @@ # For projects using Nanoc (http://nanoc.ws/) -# Default location for output, needs to match output_dir's value found in config.yaml +# Default location for output (needs to match output_dir's value found in config.yaml) output/ # Temporary file directory From 2736857d9bf43b23c2e9c6475d0d3136d34e5c61 Mon Sep 17 00:00:00 2001 From: Denis Defreyne Date: Sun, 23 Oct 2016 15:05:29 +0200 Subject: [PATCH 040/107] Nanoc: Mention nanoc.yaml rather than config.yaml --- Nanoc.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nanoc.gitignore b/Nanoc.gitignore index 0242ba4f..3f36ea2a 100644 --- a/Nanoc.gitignore +++ b/Nanoc.gitignore @@ -1,6 +1,6 @@ # For projects using Nanoc (http://nanoc.ws/) -# Default location for output (needs to match output_dir's value found in config.yaml) +# Default location for output (needs to match output_dir's value found in nanoc.yaml) output/ # Temporary file directory From d1c4bde0458bdc4d6400800c38d559f0d85076e8 Mon Sep 17 00:00:00 2001 From: Israel Roldan Date: Sun, 23 Oct 2016 16:58:30 +0200 Subject: [PATCH 041/107] Update ExtJs.gitignore --- ExtJs.gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ExtJs.gitignore b/ExtJs.gitignore index 5ffc2154..c92aea0f 100644 --- a/ExtJs.gitignore +++ b/ExtJs.gitignore @@ -1,4 +1,12 @@ .architect +bootstrap.css +bootstrap.js bootstrap.json +bootstrap.jsonp build/ +classic.json +classic.jsonp ext/ +modern.json +modern.jsonp +resources/sass/.sass-cache/ From cc686ca1c65d14763525b98e195cfcac43d61204 Mon Sep 17 00:00:00 2001 From: Troy Pracy Date: Thu, 27 Oct 2016 03:15:56 +1100 Subject: [PATCH 042/107] add backup files (*~) --- Elisp.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Elisp.gitignore b/Elisp.gitignore index 9b4291b7..89a75977 100644 --- a/Elisp.gitignore +++ b/Elisp.gitignore @@ -3,3 +3,6 @@ # Packaging .cask + +# Backup files +*~ \ No newline at end of file From a9e99535a0d8b4e9c9b7de0ffd720552594158d3 Mon Sep 17 00:00:00 2001 From: Troy Pracy Date: Thu, 27 Oct 2016 03:16:42 +1100 Subject: [PATCH 043/107] add undo-tree save-files --- Elisp.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Elisp.gitignore b/Elisp.gitignore index 89a75977..25f2b431 100644 --- a/Elisp.gitignore +++ b/Elisp.gitignore @@ -5,4 +5,7 @@ .cask # Backup files -*~ \ No newline at end of file +*~ + +# Undo-tree save-files +*.~undo-tree \ No newline at end of file From 95a405c3ef1cd0a96d51f9052d1e58c8e98c42e2 Mon Sep 17 00:00:00 2001 From: Troy Pracy Date: Thu, 27 Oct 2016 03:19:31 +1100 Subject: [PATCH 044/107] add final newline --- Elisp.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Elisp.gitignore b/Elisp.gitignore index 25f2b431..206569dc 100644 --- a/Elisp.gitignore +++ b/Elisp.gitignore @@ -8,4 +8,4 @@ *~ # Undo-tree save-files -*.~undo-tree \ No newline at end of file +*.~undo-tree From d8a1d416bb2826b398595d808fcddfdd9deefd79 Mon Sep 17 00:00:00 2001 From: Matt Braymer-Hayes Date: Wed, 26 Oct 2016 12:48:53 -0700 Subject: [PATCH 045/107] Rename 'IPython Notebook' comment to 'Jupyter Notebook' --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 37fc9d40..6a2bf47a 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -66,7 +66,7 @@ docs/_build/ # PyBuilder target/ -# IPython Notebook +# Jupyter Notebook .ipynb_checkpoints # pyenv From c2bf044184f671d710b9a5ca8139edc96fb888ea Mon Sep 17 00:00:00 2001 From: Luis Fernando Gomes Date: Fri, 28 Oct 2016 00:23:58 -0200 Subject: [PATCH 046/107] Add bower dependency directory --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index bc7fc557..4b187ffa 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -21,6 +21,9 @@ coverage # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) .grunt +# Bower dependency directory (https://bower.io/) +bower_components + # node-waf configuration .lock-wscript From a1c526681bcb84c894288a827580568184f0e42e Mon Sep 17 00:00:00 2001 From: Ben Balter Date: Fri, 28 Oct 2016 11:18:45 -0400 Subject: [PATCH 047/107] Use the exact CC-0 license text --- LICENSE | 203 +++++++++++++++++++++++++++----------------------------- 1 file changed, 99 insertions(+), 104 deletions(-) diff --git a/LICENSE b/LICENSE index 0e259d42..670154e3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,121 +1,116 @@ -Creative Commons Legal Code - CC0 1.0 Universal - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - Statement of Purpose The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of +exclusive Copyright and Related Rights (defined below) upon the creator and +subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. +Certain owners wish to permanently relinquish those rights to a Work for the +purpose of contributing to a commons of creative, cultural and scientific +works ("Commons") that the public can reliably and without fear of later +claims of infringement build upon, modify, incorporate in other works, reuse +and redistribute as freely as possible in any form whatsoever and for any +purposes, including without limitation commercial purposes. These owners may +contribute to the Commons to promote the ideal of a free culture and the +further production of creative, cultural and scientific works, or to gain +reputation or greater distribution for their Work in part through the use and +efforts of others. -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. +For these and/or other purposes and motivations, and without any expectation +of additional consideration or compensation, the person associating CC0 with a +Work (the "Affirmer"), to the extent that he or she is an owner of Copyright +and Related Rights in the Work, voluntarily elects to apply CC0 to the Work +and publicly distribute the Work under its terms, with knowledge of his or her +Copyright and Related Rights in the Work and the meaning and intended legal +effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: +Related Rights"). Copyright and Related Rights include, but are not limited +to, the following: - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. + i. the right to reproduce, adapt, distribute, perform, display, communicate, + and translate a Work; -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. + ii. moral rights retained by the original author(s) and/or performer(s); -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. + iii. publicity and privacy rights pertaining to a person's image or likeness + depicted in a Work; + + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + + v. rights protecting the extraction, dissemination, use and reuse of data in + a Work; + + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation thereof, + including any amended or successor version of such directive); and + + vii. other similar, equivalent or corresponding rights throughout the world + based on applicable law or treaty, and any national implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention of, +applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and +unconditionally waives, abandons, and surrenders all of Affirmer's Copyright +and Related Rights and associated claims and causes of action, whether now +known or unknown (including existing as well as future claims and causes of +action), in the Work (i) in all territories worldwide, (ii) for the maximum +duration provided by applicable law or treaty (including future time +extensions), (iii) in any current or future medium and for any number of +copies, and (iv) for any purpose whatsoever, including without limitation +commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes +the Waiver for the benefit of each member of the public at large and to the +detriment of Affirmer's heirs and successors, fully intending that such Waiver +shall not be subject to revocation, rescission, cancellation, termination, or +any other legal or equitable action to disrupt the quiet enjoyment of the Work +by the public as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason be +judged legally invalid or ineffective under applicable law, then the Waiver +shall be preserved to the maximum extent permitted taking into account +Affirmer's express Statement of Purpose. In addition, to the extent the Waiver +is so judged Affirmer hereby grants to each affected person a royalty-free, +non transferable, non sublicensable, non exclusive, irrevocable and +unconditional license to exercise Affirmer's Copyright and Related Rights in +the Work (i) in all territories worldwide, (ii) for the maximum duration +provided by applicable law or treaty (including future time extensions), (iii) +in any current or future medium and for any number of copies, and (iv) for any +purpose whatsoever, including without limitation commercial, advertising or +promotional purposes (the "License"). The License shall be deemed effective as +of the date CC0 was applied by Affirmer to the Work. Should any part of the +License for any reason be judged legally invalid or ineffective under +applicable law, such partial invalidity or ineffectiveness shall not +invalidate the remainder of the License, and in such case Affirmer hereby +affirms that he or she will not (i) exercise any of his or her remaining +Copyright and Related Rights in the Work or (ii) assert any associated claims +and causes of action with respect to the Work, in either case contrary to +Affirmer's express Statement of Purpose. 4. Limitations and Disclaimers. - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + + b. Affirmer offers the Work as-is and makes no representations or warranties + of any kind concerning the Work, express, implied, statutory or otherwise, + including without limitation warranties of title, merchantability, fitness + for a particular purpose, non infringement, or the absence of latent or + other defects, accuracy, or the present or absence of errors, whether or not + discoverable, all to the greatest extent permissible under applicable law. + + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without limitation + any person's Copyright and Related Rights in the Work. Further, Affirmer + disclaims responsibility for obtaining any necessary consents, permissions + or other rights required for any use of the Work. + + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to this + CC0 or use of the Work. + +For more information, please see + From 222976838c635d8ce17149c700e123e579d95951 Mon Sep 17 00:00:00 2001 From: Ruslan Gunawardana Date: Sat, 29 Oct 2016 08:16:09 +0300 Subject: [PATCH 048/107] Updated Jetbrains.gitignore Added datasource folder --- Global/JetBrains.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 0a254147..e375c744 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -6,6 +6,7 @@ .idea/tasks.xml # Sensitive or high-churn files: +.idea/dataSources/ .idea/dataSources.ids .idea/dataSources.xml .idea/dataSources.local.xml From 2cb9cf4ebd44d244e46463808fa6f0be9415f931 Mon Sep 17 00:00:00 2001 From: Benjamin Lea Date: Tue, 1 Nov 2016 11:58:33 +1100 Subject: [PATCH 049/107] Update Objective-C and Swift to match Xcode.gitignore The Objective-C and Swift gitignore files are missing `*.xccheckout` and `*.xcscmblueprint`, but these are still included in the Xcode gitignore. This commit synchronises the three files. The files themselves contain information about the user's local source control status and shouldn't be included in most Xcode repositories. `*.xcuserstate` appears to always be contained in `xcuserdata/` which is already ignored. --- Objective-C.gitignore | 3 ++- Swift.gitignore | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 58c51eca..af90c007 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -19,7 +19,8 @@ xcuserdata/ ## Other *.moved-aside -*.xcuserstate +*.xccheckout +*.xcscmblueprint ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index 2c22487b..ef132059 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -19,7 +19,8 @@ xcuserdata/ ## Other *.moved-aside -*.xcuserstate +*.xccheckout +*.xcscmblueprint ## Obj-C/Swift specific *.hmap From 8d974a01f7e7f9d469ce5479ebd4785722ff5f47 Mon Sep 17 00:00:00 2001 From: Gary Smith Date: Tue, 1 Nov 2016 07:50:48 -0400 Subject: [PATCH 050/107] Update to take into account Dart SDK 1.20 Dart SDK 1.20 no longer creates `packages` directories. Added comments to `pub` files section to differentiate what is needed for >= SDK 1.20 and what is additionally needed for older SDK versions. --- Dart.gitignore | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index 7c280441..4b366585 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,13 +1,19 @@ # See https://www.dartlang.org/tools/private-files.html # Files and directories created by pub -.buildlog + +# SDK 1.20 and later (no longer creates packages directories) .packages -.project .pub/ build/ + +# Older SDK versions +# (Include if the minimum SDK version specified in pubsepc.yaml is earlier than 1.20) +.project +.buildlog **/packages/ + # Files created by dart2js # (Most Dart developers will use pub build to compile Dart, use/modify these # rules if you intend to use dart2js directly From c6a0ceae0863806d829b4b15ef6d29b49294a4cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rn=20Christensen?= Date: Wed, 2 Nov 2016 13:27:57 +0100 Subject: [PATCH 051/107] Added C++ project filter file. Reference: http://stackoverflow.com/questions/1826901/should-i-add-vcxproj-filter-files-to-source-control --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 62dd6c9e..04d69ae8 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -6,6 +6,7 @@ *.user *.userosscache *.sln.docstates +*.vcxproj.filters # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs From f8bf136b5eb8e93178ed13c7203ad0faf496121f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rn=20Christensen?= Date: Wed, 2 Nov 2016 13:29:53 +0100 Subject: [PATCH 052/107] Added reference to get latest from GitHub. If the .gitignore file is inlcuded in another project, it may be feasible to have a reference to origin. --- VisualStudio.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 04d69ae8..09e40734 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -1,5 +1,7 @@ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore # User-specific files *.suo From 548fb984f7173dea0fbd572ef0ef3784019100c0 Mon Sep 17 00:00:00 2001 From: Calem Bendell Date: Wed, 2 Nov 2016 11:48:05 -0400 Subject: [PATCH 053/107] add the *.VC.db to unreal engine ignore as of visual studio 2015 update 2 this file stores the intellisense database. this file is typically huge and shouldn't be included in a repository. --- UnrealEngine.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index be0e4913..beec7b91 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -1,6 +1,9 @@ # Visual Studio 2015 user specific files .vs/ +# Visual Studio 2015 database file +*.VC.db + # Compiled Object files *.slo *.lo From 743d94a12c62930b2af8916ae72a4c8b5298654e Mon Sep 17 00:00:00 2001 From: Lucas Gautheron Date: Thu, 3 Nov 2016 10:32:51 +0100 Subject: [PATCH 054/107] TeX: feynMF/feynMP --- TeX.gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index f620fad2..1afbaf19 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -61,6 +61,15 @@ acs-*.bib # fixme *.lox +# feynmf/feynmp +*.mf +*.mp +*.t[1-9] +*.t[1-9][0-9] +*.tfm +*.[1-9] +*.[1-9][0-9] + #(r)(e)ledmac/(r)(e)ledpar *.end *.?end From 9fc8ca6cc082f2b9b0b7e4179091c56de3aed53c Mon Sep 17 00:00:00 2001 From: Darren Date: Thu, 3 Nov 2016 21:30:40 -0700 Subject: [PATCH 055/107] Delete IPythonNotebook.gitignore The IPython Notebook is now known as the Jupyter Notebook (see http://ipython.org/notebook.html). Jupyter ignore values are already found in the Python.gitignore. --- Global/IPythonNotebook.gitignore | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 Global/IPythonNotebook.gitignore diff --git a/Global/IPythonNotebook.gitignore b/Global/IPythonNotebook.gitignore deleted file mode 100644 index 27c13510..00000000 --- a/Global/IPythonNotebook.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# Temporary data -.ipynb_checkpoints/ From 3081a7059a5973fa31a13c5d5f4317fe667500d4 Mon Sep 17 00:00:00 2001 From: Robson Roberto Souza Peixoto Date: Fri, 4 Nov 2016 09:57:41 -0300 Subject: [PATCH 056/107] Add .dir-locals.el Read more here: https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html --- Global/Emacs.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index 0c96c9ad..3ac7904d 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -39,4 +39,7 @@ flycheck_*.el /server/ # projectiles files -.projectile \ No newline at end of file +.projectile + +# directory configuration +.dir-locals.el From e66cf596e066e5006e18f6a63a27a7d23a88da77 Mon Sep 17 00:00:00 2001 From: ChuckLu <244657538@qq.com> Date: Mon, 7 Nov 2016 11:20:03 +0800 Subject: [PATCH 057/107] ignore Properties/launchSettings.json even if Properties is a subfolder --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 09e40734..0db2e3ee 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -47,7 +47,7 @@ dlldata.c project.lock.json project.fragment.lock.json artifacts/ -Properties/launchSettings.json +**/Properties/launchSettings.json *_i.c *_p.c From a3e8ce6386d3cac207d1688a803ad2759aedb2d0 Mon Sep 17 00:00:00 2001 From: Al Levity Date: Mon, 7 Nov 2016 08:57:00 +0000 Subject: [PATCH 058/107] Change *.mt patterns to single *.mtc[0-9]* --- TeX.gitignore | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/TeX.gitignore b/TeX.gitignore index 1afbaf19..e94915eb 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -123,9 +123,7 @@ acs-*.bib *.maf *.mlf *.mlt -*.mtc -*.mtc[0-9] -*.mtc[1-9][0-9] +*.mtc[0-9]* # minted _minted* From dd09700e57763044daecb6b3c72c9befe9a43d87 Mon Sep 17 00:00:00 2001 From: Robin Kanters Date: Sun, 13 Nov 2016 17:43:00 +0100 Subject: [PATCH 059/107] Removed bower asset exclusion This is recommended by the Symfony docs: http://symfony.com/doc/current/frontend/bower.html#should-i-git-ignore-or-commit-bower-assets --- Symfony.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Symfony.gitignore b/Symfony.gitignore index 7d56f982..647989af 100644 --- a/Symfony.gitignore +++ b/Symfony.gitignore @@ -31,9 +31,6 @@ /web/bundles/ /web/uploads/ -# Assets managed by Bower -/web/assets/vendor/ - # PHPUnit /app/phpunit.xml /phpunit.xml From 7b7cc2f532674219a9f274c9bf524e7e65bba8aa Mon Sep 17 00:00:00 2001 From: Steven Vascellaro Date: Tue, 15 Nov 2016 17:32:41 -0500 Subject: [PATCH 060/107] Add rule to ignore *.ctxt to Java.gitignore .ctxt files are generated automatically each time a project is compiled in BlueJ. --- Java.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Java.gitignore b/Java.gitignore index 32858aad..e44e0860 100644 --- a/Java.gitignore +++ b/Java.gitignore @@ -1,5 +1,8 @@ *.class +# BlueJ files +*.ctxt + # Mobile Tools for Java (J2ME) .mtj.tmp/ From 4f1b03c640ad89096e303423b30ffa09f7e68f2f Mon Sep 17 00:00:00 2001 From: "Henrik W. Moe" Date: Wed, 16 Nov 2016 09:52:12 +0100 Subject: [PATCH 061/107] Replace DNX with .NET Core --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 0db2e3ee..79db921b 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -43,7 +43,7 @@ TestResult.xml [Rr]eleasePS/ dlldata.c -# DNX +# .NET Core project.lock.json project.fragment.lock.json artifacts/ From 6f72a9b84fb86b2806b402530d5ffa454ac47cb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Corr=C3=AAa=20Gomes?= Date: Fri, 18 Nov 2016 12:47:00 -0200 Subject: [PATCH 062/107] Basic files that must be ignored The other files, such as IDEs files, third-party files and system files must be added in the gitignore global of the system, not in the project scope. --- Magento.gitignore | 120 +++++++--------------------------------------- 1 file changed, 16 insertions(+), 104 deletions(-) diff --git a/Magento.gitignore b/Magento.gitignore index 195c9b7a..b282f5cf 100644 --- a/Magento.gitignore +++ b/Magento.gitignore @@ -1,104 +1,16 @@ -.htaccess.sample -.modgit/ -.modman/ -app/code/community/Phoenix/Moneybookers/ -app/code/community/Cm/RedisSession/ -app/code/core/ -app/design/adminhtml/default/default/ -app/design/frontend/base/ -app/design/frontend/rwd/ -app/design/frontend/default/blank/ -app/design/frontend/default/default/ -app/design/frontend/default/iphone/ -app/design/frontend/default/modern/ -app/design/frontend/enterprise/default -app/design/install/ -app/etc/modules/Enterprise_* -app/etc/modules/Mage_*.xml -app/etc/modules/Phoenix_Moneybookers.xml -app/etc/modules/Cm_RedisSession.xml -app/etc/applied.patches.list -app/etc/config.xml -app/etc/enterprise.xml -app/etc/local.xml.additional -app/etc/local.xml.template -app/etc/local.xml -app/.htaccess -app/bootstrap.php -app/locale/en_US/ -app/Mage.php -/cron.php -cron.sh -dev/.htaccess -dev/tests/functional/ -downloader/ -errors/ -favicon.ico -/get.php -includes/ -/index.php -index.php.sample -/install.php -js/blank.html -js/calendar/ -js/enterprise/ -js/extjs/ -js/firebug/ -js/flash/ -js/index.php -js/jscolor/ -js/lib/ -js/mage/ -js/prototype/ -js/scriptaculous/ -js/spacer.gif -js/tiny_mce/ -js/varien/ -lib/3Dsecure/ -lib/Apache/ -lib/flex/ -lib/googlecheckout/ -lib/.htaccess -lib/LinLibertineFont/ -lib/Mage/ -lib/PEAR/ -lib/Pelago/ -lib/phpseclib/ -lib/Varien/ -lib/Zend/ -lib/Cm/ -lib/Credis/ -lib/Magento/ -LICENSE_AFL.txt -LICENSE.html -LICENSE.txt -LICENSE_EE* -/mage -media/ -/api.php -nbproject/ -pear -pear/ -php.ini.sample -pkginfo/ -RELEASE_NOTES.txt -shell/.htaccess -shell/abstract.php -shell/compiler.php -shell/indexer.php -shell/log.php -sitemap.xml -skin/adminhtml/default/default/ -skin/adminhtml/default/enterprise -skin/frontend/base/ -skin/frontend/rwd/ -skin/frontend/default/blank/ -skin/frontend/default/blue/ -skin/frontend/default/default/ -skin/frontend/default/french/ -skin/frontend/default/german/ -skin/frontend/default/iphone/ -skin/frontend/default/modern/ -skin/frontend/enterprise -skin/install/ -var/ +#--------------------------# +# Magento Default Files # +#--------------------------# + +/app/etc/local.xml +/media/* +!/media/.htaccess +!/media/customer/.htaccess +!/media/dhl/logo.jpg +!/media/downloadable/.htaccess +!/media/xmlconnect/custom/ok.gif +!/media/xmlconnect/original/ok.gif +!/media/xmlconnect/system/ok.gif +/var/* +!/var/.htaccess +!/var/package/*.xml From 3e303c561b0984751100c9a649d3447a4191e44b Mon Sep 17 00:00:00 2001 From: Davor Mas Date: Mon, 21 Nov 2016 14:04:42 +0100 Subject: [PATCH 063/107] Modified VS Code .gitignore Added extensions.json as exception in .vscode folder. File is used as extensions recommendation for project. --- Global/VisualStudioCode.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore index d9960081..0511e2b5 100644 --- a/Global/VisualStudioCode.gitignore +++ b/Global/VisualStudioCode.gitignore @@ -2,3 +2,4 @@ !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json +!.vscode/extensions.json From a216e49b7f247bbc80dfb512e2c70feaca7423b9 Mon Sep 17 00:00:00 2001 From: Alice94 Date: Thu, 24 Nov 2016 12:14:00 +0100 Subject: [PATCH 064/107] Update TeX.gitignore Add missing beamer temporary file extension --- TeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/TeX.gitignore b/TeX.gitignore index e94915eb..f2cbb7aa 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -52,6 +52,7 @@ acs-*.bib # beamer *.nav +*.pre *.snm *.vrb From 40a71145c31c331a7d132df917d3fcfc0b0c14e5 Mon Sep 17 00:00:00 2001 From: hastegan Date: Thu, 24 Nov 2016 18:55:05 +0100 Subject: [PATCH 065/107] Symfony: Fix rule for backed up entities --- Symfony.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Symfony.gitignore b/Symfony.gitignore index 647989af..ed4d3c6c 100644 --- a/Symfony.gitignore +++ b/Symfony.gitignore @@ -42,4 +42,4 @@ /composer.phar # Backup entities generated with doctrine:generate:entities command -*/Entity/*~ +**/Entity/*~ From aaae3d86ad58c27a4cce2b9ada6de91a76215a52 Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Sat, 26 Nov 2016 16:45:29 +0100 Subject: [PATCH 066/107] TeX: ignore endnotes *.ent files The `endnotes` package generates `*.ent` files. These should also be ignored. --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index f2cbb7aa..60eb07c2 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -59,6 +59,9 @@ acs-*.bib # cprotect *.cpt +# endnotes +*.ent + # fixme *.lox From cb9eec421fb9a19c6393e32baef49a8ed86c1ddf Mon Sep 17 00:00:00 2001 From: Rolando Espinoza Date: Sat, 26 Nov 2016 20:46:06 -0300 Subject: [PATCH 067/107] Ignore wheels directory. As eggs/ directory, wheels directory may contain compiled wheels. --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 6a2bf47a..9a05e2de 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -20,6 +20,7 @@ lib64/ parts/ sdist/ var/ +wheels/ *.egg-info/ .installed.cfg *.egg From 4eb7aea77057d9d5b10dbfb86ea40b1cd6252845 Mon Sep 17 00:00:00 2001 From: Memmie Lenglet Date: Wed, 30 Nov 2016 13:30:27 +0100 Subject: [PATCH 068/107] Add ehthumbs_vista.db as Windows thumbnail cache file As Windows Vista Media Center thumbnails References: - https://nctritech.wordpress.com/tag/ehthumbs_vista-db/ - https://thumbsviewer.github.io/ - https://www.file-extensions.org/db-file-extension-windows-thumbnail-database --- Global/Windows.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Global/Windows.gitignore b/Global/Windows.gitignore index a0d31452..ba26afd9 100644 --- a/Global/Windows.gitignore +++ b/Global/Windows.gitignore @@ -1,6 +1,7 @@ -# Windows image file caches +# Windows thumbnail cache files Thumbs.db ehthumbs.db +ehthumbs_vista.db # Folder config file Desktop.ini From 29826098e0d7cf271e4acb5427b1e1a4ab7d07d6 Mon Sep 17 00:00:00 2001 From: Matthew Gerstman Date: Wed, 30 Nov 2016 08:37:24 -0500 Subject: [PATCH 069/107] Standardize comment capitalization --- Go.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Go.gitignore b/Go.gitignore index 397a0ed4..5e1047c9 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -26,5 +26,5 @@ _testmain.go # Output of the go coverage tool, specifically when used with LiteIDE *.out -# external packages folder +# External packages folder vendor/ From 2c8f625b3a60e4eadb567f85ae4ff736fb7e33cc Mon Sep 17 00:00:00 2001 From: sshaw Date: Thu, 1 Dec 2016 19:52:48 -0500 Subject: [PATCH 070/107] Add zip and gzip extensions to Perl.gitignore ExtUtils::MakeMaker based builds can generate .zip and .gz files --- Perl.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Perl.gitignore b/Perl.gitignore index ae2ad536..b43bb846 100644 --- a/Perl.gitignore +++ b/Perl.gitignore @@ -18,3 +18,6 @@ nytprof.out *.o *.bs /_eumm/ +# ExtUitls::MakeMaker +/*.zip +/*.gz From a6e758625a256236b1055c4635d39ba3de0e2313 Mon Sep 17 00:00:00 2001 From: sshaw Date: Thu, 1 Dec 2016 21:17:56 -0500 Subject: [PATCH 071/107] Annotate some of the Perl entries --- Perl.gitignore | 39 +++++++++++++++++++++++++-------------- 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/Perl.gitignore b/Perl.gitignore index b43bb846..d41364ab 100644 --- a/Perl.gitignore +++ b/Perl.gitignore @@ -1,23 +1,34 @@ -/blib/ -/.build/ -_build/ -cover_db/ -inc/ -Build !Build/ -Build.bat .last_cover_stats -/Makefile -/Makefile.old -/MANIFEST.bak /META.yml /META.json /MYMETA.* -nytprof.out -/pm_to_blib *.o *.bs -/_eumm/ + +# Devel::Cover +cover_db/ + +# Devel::NYTProf +nytprof.out + +# Dizt::Zilla +/.build/ + +# Module::Build +_build/ +Build +Build.bat + +# Module::Install +inc/ + # ExtUitls::MakeMaker -/*.zip +/blib/ +/_eumm/ /*.gz +/Makefile +/Makefile.old +/MANIFEST.bak +/pm_to_blib +/*.zip From 59f8ccd66d2a49c25769fd807d913e07af346343 Mon Sep 17 00:00:00 2001 From: roubles Date: Mon, 5 Dec 2016 22:38:27 -0500 Subject: [PATCH 072/107] Existing .gitignore for vim incorrectly matched matched ".swq" through ".swz". While will never be generated by the vim source code. http://unix.stackexchange.com/questions/326707/vim-what-are-all-the-possible-swapfile-extensions --- Global/Vim.gitignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Global/Vim.gitignore b/Global/Vim.gitignore index bdc04a0b..42e7afc1 100644 --- a/Global/Vim.gitignore +++ b/Global/Vim.gitignore @@ -1,6 +1,8 @@ # swap -[._]*.s[a-w][a-z] -[._]s[a-w][a-z] +[._]*.s[a-v][a-z] +[._]*.sw[a-p] +[._]s[a-v][a-z] +[._]sw[a-p] # session Session.vim # temporary From 8e28cc2bdde28ab57c23900bf284bef2a42636c9 Mon Sep 17 00:00:00 2001 From: Vanya Kapitonov Date: Tue, 6 Dec 2016 20:48:29 +1100 Subject: [PATCH 073/107] Added pattern for expex forward references --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 60eb07c2..6ab4c3cb 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -206,3 +206,6 @@ TSWLatexianTemp* # auto folder when using emacs and auctex /auto/* + +# expex forward references with \gathertags +*-tags.tex \ No newline at end of file From cfbdccf265dec650d22487fd4d5a9a590bcb15e7 Mon Sep 17 00:00:00 2001 From: Andrew Pennebaker Date: Wed, 7 Dec 2016 16:42:45 -0600 Subject: [PATCH 074/107] fix gitignore syntax Some .gitignore parsers interpret directory vs non-directory patterns strictly (e.g. monochromegane/go-gitignore), so a `node_modules` pattern would not necessarily match against a real `node_modules` directory. It's generally safe to add a trailing slash to directory .gitignore patterns. --- Node.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index 9a439fcd..32bfa0ed 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -28,8 +28,8 @@ coverage build/Release # Dependency directories -node_modules -jspm_packages +node_modules/ +jspm_packages/ # Optional npm cache directory .npm From d7df566f0bed36e7d76fe5f4d1ceea38c4ab6d36 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 9 Dec 2016 20:01:58 +1100 Subject: [PATCH 075/107] =?UTF-8?q?Revert=20"=E6=B7=BB=E5=8A=A0DS=5FStore"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Objective-C.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 5946618b..58c51eca 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -60,4 +60,3 @@ fastlane/test_output # https://github.com/johnno1962/injectionforxcode iOSInjectionProject/ -.DS_Store From 71ad213116a2c0c34d08413260447891ef0abfef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BA=84=E5=A4=A9=E7=BF=BC?= Date: Wed, 14 Dec 2016 01:11:07 +0800 Subject: [PATCH 076/107] ignore compile_commands.json CMake may generate `compile_commands.json` file with `set(CMAKE_EXPORT_COMPILE_COMMANDS ON)` Option --- CMake.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/CMake.gitignore b/CMake.gitignore index 0cc7e4b5..27ada059 100644 --- a/CMake.gitignore +++ b/CMake.gitignore @@ -4,4 +4,5 @@ CMakeScripts Makefile cmake_install.cmake install_manifest.txt +compile_commands.json CTestTestfile.cmake From b87e078781b06c52a456b1cafca3c6c97d40b57d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20I=2E=20Seluy?= Date: Tue, 20 Dec 2016 08:45:49 -0300 Subject: [PATCH 077/107] add lines from official codeigniter download - Added lines from the zip of Codeigniter-3.1.2 --- CodeIgniter.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CodeIgniter.gitignore b/CodeIgniter.gitignore index 0f77d9e1..e639a818 100644 --- a/CodeIgniter.gitignore +++ b/CodeIgniter.gitignore @@ -1,6 +1,13 @@ +.DS_Store + */config/development */logs/log-*.php !*/logs/index.html */cache/* !*/cache/index.html !*/cache/.htaccess + +user_guide_src/build/* +user_guide_src/cilexer/build/* +user_guide_src/cilexer/dist/* +user_guide_src/cilexer/pycilexer.egg-info/* From 673926ef316112b7902f8c39625e2334ae20ca08 Mon Sep 17 00:00:00 2001 From: Nacho Seluy Date: Wed, 21 Dec 2016 00:14:00 -0300 Subject: [PATCH 078/107] Deleted the line corresponding to an OS-specific gitignore file --- CodeIgniter.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/CodeIgniter.gitignore b/CodeIgniter.gitignore index e639a818..60571a0c 100644 --- a/CodeIgniter.gitignore +++ b/CodeIgniter.gitignore @@ -1,5 +1,3 @@ -.DS_Store - */config/development */logs/log-*.php !*/logs/index.html From eed62c30e29857a5f881557c7a0f0bb781dcb75f Mon Sep 17 00:00:00 2001 From: Brian Teeman Date: Sat, 24 Dec 2016 10:15:38 +0000 Subject: [PATCH 079/107] Update Joomla gitignore Removed some non core joomla extensions Removed some old joomla 2.5 templates Removed some index.html no longer present Removed weblinks component, modules and plugins no longer distributed in the core --- Joomla.gitignore | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/Joomla.gitignore b/Joomla.gitignore index 93103fdb..53a74e74 100644 --- a/Joomla.gitignore +++ b/Joomla.gitignore @@ -29,8 +29,6 @@ /administrator/components/com_search/* /administrator/components/com_templates/* /administrator/components/com_users/* -/administrator/components/com_weblinks/* -/administrator/components/index.html /administrator/help/* /administrator/includes/* /administrator/language/en-GB/en-GB.com_ajax.ini @@ -41,7 +39,6 @@ /administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini /administrator/language/en-GB/en-GB.com_postinstall.ini /administrator/language/en-GB/en-GB.com_postinstall.sys.ini -/administrator/language/en-GB/en-GB.com_sitemapjen.sys.ini /administrator/language/en-GB/en-GB.com_tags.ini /administrator/language/en-GB/en-GB.com_tags.sys.ini /administrator/language/en-GB/en-GB.mod_stats_admin.ini @@ -250,15 +247,10 @@ /administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini /administrator/language/en-GB/en-GB.plg_user_profile.ini /administrator/language/en-GB/en-GB.plg_user_profile.sys.ini -/administrator/language/en-GB/en-GB.tpl_bluestork.ini -/administrator/language/en-GB/en-GB.tpl_bluestork.sys.ini /administrator/language/en-GB/en-GB.tpl_hathor.ini /administrator/language/en-GB/en-GB.tpl_hathor.sys.ini /administrator/language/en-GB/en-GB.xml -/administrator/language/en-GB/index.html -/administrator/language/ru-RU/index.html /administrator/language/overrides/* -/administrator/language/index.html /administrator/logs/index.html /administrator/manifests/* /administrator/modules/mod_custom/* @@ -278,12 +270,9 @@ /administrator/modules/mod_unread/* /administrator/modules/mod_version/* /administrator/modules/mod_stats_admin/* -/administrator/modules/index.html -/administrator/templates/bluestork/* /administrator/templates/isis/* /administrator/templates/hathor/* /administrator/templates/system/* -/administrator/templates/index.html /administrator/index.php /cache/* /bin/* @@ -302,7 +291,6 @@ /components/com_newsfeeds/* /components/com_search/* /components/com_users/* -/components/com_weblinks/* /components/com_wrapper/* /components/index.html /images/banners/* @@ -403,7 +391,6 @@ /language/en-GB/en-GB.tpl_beez5.ini /language/en-GB/en-GB.tpl_beez5.sys.ini /language/en-GB/en-GB.xml -/language/en-GB/index.html /language/en-GB/install.xml /language/overrides/* /language/index.html @@ -428,8 +415,6 @@ /libraries/index.html /libraries/import.php /libraries/loader.php -/libraries/platform.php -/logs/* /media/cms/* /media/com_contenthistory/* /media/com_finder/* @@ -472,7 +457,6 @@ /modules/mod_tags_popular/* /modules/mod_tags_similar/* /modules/mod_users_latest/* -/modules/mod_weblinks/* /modules/mod_whosonline/* /modules/mod_wrapper/* /modules/index.html @@ -481,9 +465,7 @@ /plugins/authentication/joomla/* /plugins/authentication/ldap/* /plugins/authentication/cookie/* -/plugins/authentication/index.html /plugins/captcha/recaptcha/* -/plugins/captcha/index.html /plugins/content/emailcloak/* /plugins/content/example/* /plugins/content/finder/* @@ -494,27 +476,21 @@ /plugins/content/pagenavigation/* /plugins/content/vote/* /plugins/content/contact/* -/plugins/content/index.html /plugins/editors/codemirror/* /plugins/editors/none/* /plugins/editors/tinymce/* -/plugins/editors/index.html /plugins/editors-xtd/module/* /plugins/editors-xtd/article/* /plugins/editors-xtd/image/* /plugins/editors-xtd/pagebreak/* /plugins/editors-xtd/readmore/* -/plugins/editors-xtd/index.html /plugins/extension/example/* /plugins/extension/joomla/* -/plugins/extension/index.html -/plugins/finder/index.html /plugins/finder/categories/* /plugins/finder/contacts/* /plugins/finder/content/* /plugins/finder/newsfeeds/* /plugins/finder/tags/* -/plugins/finder/weblinks/* /plugins/installer/* /plugins/quickicon/extensionupdate/* /plugins/quickicon/joomlaupdate/* @@ -547,10 +523,7 @@ /plugins/user/profile/* /plugins/user/index.html /plugins/index.html -/templates/atomic/* /templates/beez3/* -/templates/beez_20/* -/templates/beez5/* /templates/protostar/* /templates/system/* /templates/index.html From ee8e5b35c5e4c7a96c64fd2dd4df6c74946d6d56 Mon Sep 17 00:00:00 2001 From: yassu Date: Sun, 25 Dec 2016 00:07:16 +0900 Subject: [PATCH 080/107] [TeX] delete Leading blanks --- TeX.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TeX.gitignore b/TeX.gitignore index 6ab4c3cb..a74b7181 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -204,7 +204,7 @@ TSWLatexianTemp* # KBibTeX *~[0-9]* -# auto folder when using emacs and auctex +# auto folder when using emacs and auctex /auto/* # expex forward references with \gathertags From 9644178b6e131d8d968b6cb76c5153060fb963c8 Mon Sep 17 00:00:00 2001 From: Ruslan Gunawardana Date: Mon, 26 Dec 2016 00:14:54 +0200 Subject: [PATCH 081/107] Add .idea/gradle.xml Please refer to [the official guide](https://intellij-support.jetbrains.com/hc/en-us/articles/206544839-How-to-manage-projects-under-Version-Control-Systems). gradle.xml may contain user-specific local Gradle location. --- Android.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.gitignore b/Android.gitignore index 91e3c007..d028d125 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -36,6 +36,7 @@ captures/ *.iml .idea/workspace.xml .idea/tasks.xml +.idea/gradle.xml .idea/libraries # Keystore files From 9f603c0d3c7bd3d92bd4ffa1f17ce5aee39f8f1f Mon Sep 17 00:00:00 2001 From: ailisp Date: Tue, 27 Dec 2016 12:12:30 -0500 Subject: [PATCH 082/107] Update CommonLisp.gitignore For Clozure Common Lisp, the fast load file is not .fasl or .lisp-temp. It's platform specific. Reference: https://www.cs.utexas.edu/users/jared/Milawa/Support/ccl/doc/ccl-documentation.html --- CommonLisp.gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CommonLisp.gitignore b/CommonLisp.gitignore index 4806e580..e7de127b 100644 --- a/CommonLisp.gitignore +++ b/CommonLisp.gitignore @@ -1,3 +1,17 @@ *.FASL *.fasl *.lisp-temp +*.dfsl +*.pfsl +*.d64fsl +*.p64fsl +*.lx64fsl +*.lx32fsl +*.dx64fsl +*.dx32fsl +*.fx64fsl +*.fx32fsl +*.sx64fsl +*.sx32fsl +*.wx64fsl +*.wx32fsl From 99a4854bb9ddc87d29b23286e96220d2eca20899 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Fri, 30 Dec 2016 00:43:36 +0100 Subject: [PATCH 083/107] Add .spl and .soc - .soc - package changes - .spl - documentclass elsarticle (Elsevier journals) Source: http://tex.stackexchange.com/a/256803/9075 --- TeX.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 6ab4c3cb..a2d874d8 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -56,9 +56,15 @@ acs-*.bib *.snm *.vrb +# changes +*.soc + # cprotect *.cpt +# elsarticle (documentclass of Elsevier journals) +*.spl + # endnotes *.ent From 399c7104b979b354f566ec27e9c8b7f1b62a4b3a Mon Sep 17 00:00:00 2001 From: Arthur Carabott Date: Mon, 2 Jan 2017 23:42:01 +0000 Subject: [PATCH 084/107] SublimeText: ignore new Package Control certs Package Control now has a number of bundles for certificates instead of the old directory. This ignores them as per http://github.com/wbond/package_control/issues/1153 https://forum.sublimetext.com/t/generating-oscrypto-ca-bundle-crt-after-mac-os-install-and-security/23020 from the author --- Global/SublimeText.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/SublimeText.gitignore b/Global/SublimeText.gitignore index 69c8c2b2..95ff2244 100644 --- a/Global/SublimeText.gitignore +++ b/Global/SublimeText.gitignore @@ -20,6 +20,9 @@ Package Control.ca-bundle Package Control.system-ca-bundle Package Control.cache/ Package Control.ca-certs/ +Package Control.merged-ca-bundle +Package Control.user-ca-bundle +oscrypto-ca-bundle.crt bh_unicode_properties.cache # Sublime-github package stores a github token in this file From e8b08757e0ea56dc35abb4b7dc089b7abe4d1af3 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Thu, 5 Jan 2017 19:24:10 +0100 Subject: [PATCH 085/107] Add *.pax --- TeX.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/TeX.gitignore b/TeX.gitignore index 6ab4c3cb..5140cb1a 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -142,6 +142,9 @@ _minted* # nomencl *.nlo +# pax +*.pax + # sagetex *.sagetex.sage *.sagetex.py @@ -208,4 +211,4 @@ TSWLatexianTemp* /auto/* # expex forward references with \gathertags -*-tags.tex \ No newline at end of file +*-tags.tex From e3f8c21a97532343b858d54af853377c790861e0 Mon Sep 17 00:00:00 2001 From: Jules Blok Date: Fri, 6 Jan 2017 13:08:56 +0100 Subject: [PATCH 086/107] VisualStudio: Don't ignore project filters --- VisualStudio.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 79db921b..d9e876cf 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -8,7 +8,6 @@ *.user *.userosscache *.sln.docstates -*.vcxproj.filters # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs From fb66674511950008cdf7f5e7f772c29fa18e09b0 Mon Sep 17 00:00:00 2001 From: Roger Date: Tue, 10 Jan 2017 15:10:50 -0500 Subject: [PATCH 087/107] Add debugging files to the gitignore --- Unity.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Unity.gitignore b/Unity.gitignore index 1c103889..6bffdb2e 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -18,6 +18,7 @@ ExportedObj/ *.pidb *.booproj *.svd +*.pdb # Unity3D generated meta files From a4cdac19de274e742eb71dfbae7a60134a15c78f Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Tue, 10 Jan 2017 20:51:40 +0000 Subject: [PATCH 088/107] Corrected ignore settings for Cake - It is recommended to include the packages.config file when using Cake - This ensures that the Cake version that is being used is *pinned* and updated only when the user decides --- VisualStudio.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d9e876cf..1d1e8372 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -271,4 +271,5 @@ __pycache__/ *.pyc # Cake - Uncomment if you are using it -# tools/ +# tools/** +# !tools/packages.config From 95938f08eb66c9ad998aadb3e59045217b5f47ca Mon Sep 17 00:00:00 2001 From: Andrew Pennebaker Date: Tue, 10 Jan 2017 18:30:58 -0600 Subject: [PATCH 089/107] cmake: add Testing/ log directory --- CMake.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/CMake.gitignore b/CMake.gitignore index 27ada059..9ea395f1 100644 --- a/CMake.gitignore +++ b/CMake.gitignore @@ -1,6 +1,7 @@ CMakeCache.txt CMakeFiles CMakeScripts +Testing Makefile cmake_install.cmake install_manifest.txt From fb6cd71357bede88ef3dd8b2b9ac619cd13ca959 Mon Sep 17 00:00:00 2001 From: Ernest Gu Date: Thu, 12 Jan 2017 00:14:28 -0800 Subject: [PATCH 090/107] Fixed/Added ignore rules - *.ses files are generated by Freerouting (which is the partially integrated autorouter) - *.dsn files weren't actually being ignored --- KiCad.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/KiCad.gitignore b/KiCad.gitignore index 606ed1c7..208bc4fc 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -13,7 +13,8 @@ _autosave-* *.net # Autorouter files (exported from Pcbnew) -.dsn +*.dsn +*.ses # Exported BOM files *.xml From fcd57164976516b01488ec4418a4b4d4de923c07 Mon Sep 17 00:00:00 2001 From: Fiona Hagen Date: Fri, 13 Jan 2017 10:45:58 +0100 Subject: [PATCH 091/107] Add Google Services --- Android.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index d028d125..760e84ff 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -44,3 +44,6 @@ captures/ # External native build folder generated in Android Studio 2.2 and later .externalNativeBuild + +# Google Services (e.g. APIs or Firebase) +google-services.json From d8b46e7d2d0f37a736ebd123cb2e4c02f8386df9 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 15 Jan 2017 00:06:56 +0100 Subject: [PATCH 092/107] Update JetBrains.gitignore In newer versions of the IntelliJ platform (such as the one used for Rider), the .idea files are now placed in a subdirectory of the same, named after the current project (such as ".idea/.idea.Everlook/.idea/workspace.xml"). Adding a double-star pattern to these folder rules will also ignore these new files and maintain backwards compatibility with previous revisions of this file. --- Global/JetBrains.gitignore | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index e375c744..401fee15 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -2,24 +2,24 @@ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # User-specific stuff: -.idea/workspace.xml -.idea/tasks.xml +.idea/**/workspace.xml +.idea/**/tasks.xml # Sensitive or high-churn files: -.idea/dataSources/ -.idea/dataSources.ids -.idea/dataSources.xml -.idea/dataSources.local.xml -.idea/sqlDataSources.xml -.idea/dynamic.xml -.idea/uiDesigner.xml +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.xml +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml # Gradle: -.idea/gradle.xml -.idea/libraries +.idea/**/gradle.xml +.idea/**/libraries # Mongo Explorer plugin: -.idea/mongoSettings.xml +.idea/**/mongoSettings.xml ## File-based project format: *.iws From e67fbf847cb6a788d62c8bac4c5afc7ccd9a3986 Mon Sep 17 00:00:00 2001 From: msdx <645079761@qq.com> Date: Tue, 17 Jan 2017 13:45:59 +0800 Subject: [PATCH 093/107] Add freeline rules. --- Android.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index 760e84ff..a1a65c2d 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -47,3 +47,8 @@ captures/ # Google Services (e.g. APIs or Firebase) google-services.json + +#Freeline +freeline.py +freeline/ +freeline_project_description.json From 66c8b842c0f677343d032ed12205e3b9b3be73e1 Mon Sep 17 00:00:00 2001 From: Calem Bendell Date: Mon, 23 Jan 2017 16:34:46 -0500 Subject: [PATCH 094/107] Add Map Built Data Add built data to the gitignore. Includes data about a map for UE4.14 that is generated when the user builds it (surprise! :D). Often gigabytes in size. Definitely don't want it in your repository. --- UnrealEngine.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index beec7b91..05134c16 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -56,6 +56,9 @@ Build/* # Don't ignore icon files in Build !Build/**/*.ico +# Built data for maps +*_BuiltData.uasset + # Configuration files generated by the Editor Saved/* From acec206ed74afd492e88dd356363fe69204b3caf Mon Sep 17 00:00:00 2001 From: Evan Culver Date: Mon, 23 Jan 2017 17:51:10 -0800 Subject: [PATCH 095/107] Ignore project-local Glide cache --- Go.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Go.gitignore b/Go.gitignore index 5e1047c9..8fbf8f77 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -28,3 +28,6 @@ _testmain.go # External packages folder vendor/ + +# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 +.glide/ From ad446600de3a4f8bcb75283594a3d70c10406c24 Mon Sep 17 00:00:00 2001 From: Fabrizio Brancati Date: Tue, 24 Jan 2017 11:16:40 +0100 Subject: [PATCH 096/107] Updating Swift.gitignore with Package.pins --- Swift.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Swift.gitignore b/Swift.gitignore index 2c22487b..7bcc61ba 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -35,6 +35,7 @@ playground.xcworkspace # # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. # Packages/ +# Package.pins .build/ # CocoaPods From b236b95c4d67d46bcfbd1941731a1c242ec1b844 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 24 Jan 2017 13:41:24 +0100 Subject: [PATCH 097/107] Add .venv as file --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 9a05e2de..49a6770a 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -83,6 +83,7 @@ celerybeat-schedule .venv/ venv/ ENV/ +.venv # Spyder project settings .spyderproject From e3dad9eb645aa0668ed258d37a80fe2bae500244 Mon Sep 17 00:00:00 2001 From: Malcolm Date: Wed, 25 Jan 2017 16:13:33 +1300 Subject: [PATCH 098/107] Add .env to Node.gitignore --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index 9a439fcd..5ad9b574 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -46,3 +46,6 @@ jspm_packages # Yarn Integrity file .yarn-integrity +# dotenv environment variables file +.env + From 23adefa4be450685d9a1edd7637dc5d0299eaa90 Mon Sep 17 00:00:00 2001 From: Robinson Presotto Date: Thu, 26 Jan 2017 22:25:00 +0100 Subject: [PATCH 099/107] Ignore xcworkspace for UnrealEngine Xcode projects --- UnrealEngine.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index beec7b91..018fd5f1 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -36,6 +36,7 @@ # These project files can be generated by the engine *.xcodeproj +*.xcworkspace *.sln *.suo *.opensdf From c9b3900783078616cd462ef10a547025de6885c9 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Fri, 27 Jan 2017 16:37:26 +0800 Subject: [PATCH 100/107] ignore public/hot folder for laravel project ref: https://github.com/laravel/laravel/pull/4121 --- Laravel.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index a2d15640..c565162f 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -7,6 +7,7 @@ app/storage/ # Laravel 5 & Lumen specific public/storage +public/hot storage/*.key .env.*.php .env.php From e73e4fd575fd9a308ed66276f0a78633ff95b365 Mon Sep 17 00:00:00 2001 From: Jumbalaya Date: Fri, 27 Jan 2017 16:23:44 +0000 Subject: [PATCH 101/107] Added Simulink .autosave extension --- Global/Matlab.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Matlab.gitignore b/Global/Matlab.gitignore index 32a5ad4c..09dfde64 100644 --- a/Global/Matlab.gitignore +++ b/Global/Matlab.gitignore @@ -17,3 +17,6 @@ slprj/ # Session info octave-workspace + +# Simulink autosave extension +.autosave From 9c07495c0112032709077736b6ef8bee36feb274 Mon Sep 17 00:00:00 2001 From: Iqbal Mohammad Abdul Ghoni Date: Sat, 28 Jan 2017 23:48:56 +0700 Subject: [PATCH 102/107] Laravel: ignore npm-debug.log --- Laravel.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index a2d15640..edafe38a 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -1,5 +1,6 @@ vendor/ node_modules/ +npm-debug.log # Laravel 4 specific bootstrap/compiled.php From 0dae103110a7076b4612dd13dba7eedb4c24d2c3 Mon Sep 17 00:00:00 2001 From: Alexey Palazhchenko Date: Mon, 30 Jan 2017 17:09:30 +0300 Subject: [PATCH 103/107] Update Go git ignore patterns. --- Go.gitignore | 28 +++------------------------- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/Go.gitignore b/Go.gitignore index 8fbf8f77..39438782 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -1,33 +1,11 @@ -# Compiled Object files, Static and Dynamic libs (Shared Objects) -*.o -*.a -*.so - -# Folders -_obj -_test - -# Architecture specific extensions/prefixes -*.[568vq] -[568vq].out - -*.cgo1.go -*.cgo2.c -_cgo_defun.c -_cgo_gotypes.go -_cgo_export.* - -_testmain.go - +# Binary on Windows *.exe + +# Test binary, build with `go test -c` *.test -*.prof # Output of the go coverage tool, specifically when used with LiteIDE *.out -# External packages folder -vendor/ - # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 .glide/ From d1bed7cdadca23157276c447fee602c807f6ecd2 Mon Sep 17 00:00:00 2001 From: Alexey Palazhchenko Date: Mon, 30 Jan 2017 17:42:26 +0300 Subject: [PATCH 104/107] Add patterns for plugins. --- Go.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Go.gitignore b/Go.gitignore index 39438782..57b72cb8 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -1,5 +1,7 @@ -# Binary on Windows +# Binaries for programs and plugins *.exe +*.dll +*.so # Test binary, build with `go test -c` *.test From c94ee9a8e717f44d8d7926e9f4aecba52aa5918f Mon Sep 17 00:00:00 2001 From: Alexey Palazhchenko Date: Mon, 30 Jan 2017 17:48:28 +0300 Subject: [PATCH 105/107] Add plugins for Mac. --- Go.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Go.gitignore b/Go.gitignore index 57b72cb8..a1338d68 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -2,6 +2,7 @@ *.exe *.dll *.so +*.dylib # Test binary, build with `go test -c` *.test From 0c0c3b6b859493bde50480f5a637d5fa8f8b2f0c Mon Sep 17 00:00:00 2001 From: Taemin Hong Date: Tue, 31 Jan 2017 16:19:57 +0900 Subject: [PATCH 106/107] Unity: ignore Visual Studio 2015 cache directory Since the version 5.2, Unity has used Visual Studio 2015 instead of MonoDevelop as default script editor in Windows. This change may be helpful for Unity developers who use the recent version of Unity in Windows. --- Unity.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 6bffdb2e..b829399a 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -5,6 +5,9 @@ /[Bb]uilds/ /Assets/AssetStoreTools* +# Visual Studio 2015 cache directory +/.vs/ + # Autogenerated VS/MD/Consulo solution and project files ExportedObj/ .consulo/ From 421aa579f7cb5454cd349a88374d6846f88aa0c2 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 1 Feb 2017 17:50:44 +0100 Subject: [PATCH 107/107] Remove / from .venv --- Python.gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Python.gitignore b/Python.gitignore index 49a6770a..cf3102d6 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -80,10 +80,9 @@ celerybeat-schedule .env # virtualenv -.venv/ +.venv venv/ ENV/ -.venv # Spyder project settings .spyderproject