From b25db7156bc4a76f4380c72965bdf4178a2aa920 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 1 Jan 2018 20:57:36 +0100 Subject: [PATCH 01/17] Go: Add '*.exe~' to .gitignore When you build a Go executable, which does already exists and is in use on Windows (e.g. running) then the output binary name will be extended by a '~' prefix. https://github.com/golang/go/blob/558eeb2d850d064b0b02b65a7bf3af6c108c248d/src/cmd/go/internal/work/exec.go#L1165-L1170 --- Go.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Go.gitignore b/Go.gitignore index ea58090b..f1c181ec 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -1,5 +1,6 @@ # Binaries for programs and plugins *.exe +*.exe~ *.dll *.so *.dylib From 7272fe439b6b3d8f525aa5a2c5e6262899c02b78 Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Mon, 1 Jan 2018 14:26:54 -0800 Subject: [PATCH 02/17] Update Node.gitignore --- Node.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index 97e28736..d1bed128 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -57,3 +57,5 @@ typings/ # dotenv environment variables file .env +# next.js build output +.next From 94f0d69b6fcced8982eb50ecec7cae5523fee095 Mon Sep 17 00:00:00 2001 From: mbukejlovic Date: Thu, 4 Jan 2018 10:26:19 +0100 Subject: [PATCH 03/17] Fixed the unignore of folder 'packages' Considering the VisualStudio gitignore file contains a line "**/[Pp]ackages/*", these 2 lines from Umbraco gitignore never get applied properly to the desired files, even though Umbraco lines were added after the VS lines. I guess the VS's line is more specific, so it gets a priority of some sort. --- Umbraco.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Umbraco.gitignore b/Umbraco.gitignore index c0392626..10fc2b4d 100644 --- a/Umbraco.gitignore +++ b/Umbraco.gitignore @@ -16,8 +16,8 @@ # Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder) # Make sure to include details from VisualStudio.gitignore BEFORE this -!**/App_Data/[Pp]ackages/ -!**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages +!**/App_Data/[Pp]ackages/* +!**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages/* # ImageProcessor DiskCache **/App_Data/cache/ From 27b2d19960b0a338d3f02fe1fd09470981f8acd7 Mon Sep 17 00:00:00 2001 From: Ruttanachai Auitragool Date: Fri, 12 Jan 2018 15:54:34 +0700 Subject: [PATCH 04/17] Update Android.gitignore Add fastlane in Android gitignore --- Android.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index addf405e..d5713722 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -54,3 +54,10 @@ google-services.json freeline.py freeline/ freeline_project_description.json + +# fastlane +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots +fastlane/test_output +fastlane/readme.md From 4cd348e3218e50f9b659af3ef00b84c9dce23dc5 Mon Sep 17 00:00:00 2001 From: Felipe Meneguzzi Date: Tue, 16 Jan 2018 09:24:56 -0200 Subject: [PATCH 05/17] Update TeX.gitignore Added a temporary file used in MacTeX --- TeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/TeX.gitignore b/TeX.gitignore index 9bb63365..5359e544 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -10,6 +10,7 @@ *.fot *.cb *.cb2 +.*.lb ## Intermediate documents: *.dvi From 4162c93865c81164fcab83b5ea0fa0b3fd38453d Mon Sep 17 00:00:00 2001 From: Felix Divo Date: Fri, 26 Jan 2018 11:32:59 +0100 Subject: [PATCH 06/17] Added ignore for files created by `catkin_make_isolated` Simply execute `catkin_make_isolated` and `build` and `devel` will have different names, but should be ignored as well. --- ROS.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ROS.gitignore b/ROS.gitignore index 425641f2..35d74bb7 100644 --- a/ROS.gitignore +++ b/ROS.gitignore @@ -13,6 +13,8 @@ msg/*Feedback.msg msg/*Goal.msg msg/*Result.msg msg/_*.py +build_isolated/ +devel_isolated/ # Generated by dynamic reconfigure *.cfgc From 415d7322307917704c865e36628973e797642a65 Mon Sep 17 00:00:00 2001 From: komaflash // ec8or Date: Tue, 30 Jan 2018 10:02:51 +0100 Subject: [PATCH 07/17] Added "ServiceFabricBackup/" The latest update of Visual Studio 17 (15.5.5) introduces a new backup folder called "ServiceFabricBackup" before upgrading service fabric applications. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d3d5371b..c49041ff 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -237,6 +237,7 @@ _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML UpgradeLog*.htm +ServiceFabricBackup/ # SQL Server files *.mdf From 91654d4e53a78e0b571c0ee8bca9ee93d38cde01 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Wed, 31 Jan 2018 20:26:54 -0500 Subject: [PATCH 08/17] Add `.dart_tool/` Followup to https://github.com/dart-lang/site-www/issues/444#issuecomment-346560788 --- Dart.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Dart.gitignore b/Dart.gitignore index 4d2a4d6d..58950beb 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,6 +1,7 @@ # See https://www.dartlang.org/tools/private-files.html # Files and directories created by pub +.dart_tool/ .packages .pub/ build/ From f651f0d3eef062a8592e017a194e703d93f3e5c9 Mon Sep 17 00:00:00 2001 From: raimon Date: Sun, 4 Feb 2018 17:01:22 +0900 Subject: [PATCH 09/17] Add ignore '.pytest_cache' directory in Unit test section --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index af2f5375..b989be6c 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -45,6 +45,7 @@ nosetests.xml coverage.xml *.cover .hypothesis/ +.pytest_cache/ # Translations *.mo From ca82236eb8e6e1ba0423f33ad29b67b1cd31b74b Mon Sep 17 00:00:00 2001 From: Nathan Floris Copier Date: Mon, 5 Feb 2018 19:23:52 -0700 Subject: [PATCH 10/17] Fixes WebStorm capitalization in comment On line 1, WebStorm is capitalized the same way as the other IDE names. --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index a30eacf1..2e29437f 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,4 +1,4 @@ -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # User-specific stuff: From 2170a0447b724c210960395f39d9ad76c3fd44e3 Mon Sep 17 00:00:00 2001 From: "Dmitriy \"DK\" Korobskiy" Date: Wed, 7 Feb 2018 11:05:42 -0500 Subject: [PATCH 11/17] .idea/**/datasources.xml is now safe to store Since IDEA 14 (2014), IDEA and other contemporaneous JebBrains IDEs don't store sensitive info in `datasources.xml` and it makes sense to version control to share project data sources among the team. `dataSources.local.xml` is user-specific: contain usernames and could be sensitive from a security perspective, albeit passwords could be externalized to e.g. Mac Keychain. References: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839, https://youtrack.jetbrains.com/issue/IDEA-127105 --- Global/JetBrains.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 2e29437f..9c01e12b 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -9,7 +9,6 @@ # Sensitive or high-churn files: .idea/**/dataSources/ .idea/**/dataSources.ids -.idea/**/dataSources.xml .idea/**/dataSources.local.xml .idea/**/sqlDataSources.xml .idea/**/dynamic.xml From 82caf7ce6700cbf2dabcdd3079432bb6ab95440c Mon Sep 17 00:00:00 2001 From: dgabbe Date: Mon, 12 Feb 2018 11:47:41 -0500 Subject: [PATCH 12/17] Exclude secret deployment key in rsconnect/ Exclude secret deployment key in rsconnect/, see https://shiny.rstudio.com/articles/shinyapps.html for details. --- R.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/R.gitignore b/R.gitignore index fcff087a..26fad6fa 100644 --- a/R.gitignore +++ b/R.gitignore @@ -31,3 +31,6 @@ vignettes/*.pdf # Temporary files created by R markdown *.utf8.md *.knit.md + +# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html +rsconnect/ From 6d6dce75f8ec06bcd18e6fbceb9c2278a32f23a8 Mon Sep 17 00:00:00 2001 From: davidebeatrici Date: Tue, 13 Feb 2018 00:22:21 +0100 Subject: [PATCH 13/17] Qt: Remove extra empty lines --- Qt.gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Qt.gitignore b/Qt.gitignore index 037a1e75..967c468d 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -1,5 +1,4 @@ # C++ objects and libs - *.slo *.lo *.o @@ -11,7 +10,6 @@ *.dylib # Qt-es - object_script.*.Release object_script.*.Debug *_plugin_import.cpp @@ -35,7 +33,6 @@ Makefile* target_wrapper.* # QtCreator - *.autosave # QtCtreator Qml @@ -44,4 +41,3 @@ target_wrapper.* # QtCtreator CMake CMakeLists.txt.user* - From 2e3f1955d2c438157a024d2136895d54f91c877f Mon Sep 17 00:00:00 2001 From: davidebeatrici Date: Mon, 12 Feb 2018 03:22:09 +0100 Subject: [PATCH 14/17] Qt: Correct typo "QtCtreator" to "QtCreator" --- Qt.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Qt.gitignore b/Qt.gitignore index 967c468d..5291a385 100644 --- a/Qt.gitignore +++ b/Qt.gitignore @@ -35,9 +35,9 @@ target_wrapper.* # QtCreator *.autosave -# QtCtreator Qml +# QtCreator Qml *.qmlproject.user *.qmlproject.user.* -# QtCtreator CMake +# QtCreator CMake CMakeLists.txt.user* From 2e7e0bb4f2681aa45b01db9b5f011cafd563a9da Mon Sep 17 00:00:00 2001 From: Quique Fdez Guerra Date: Thu, 22 Feb 2018 18:09:53 +0100 Subject: [PATCH 15/17] Remove typings ignore Nobody is using v1 of typings anymore on new projects and 'typings' is the recommended name for the folders of your custom types. On the other hand the official Visual Studio ignore is not ignoring this folder. --- VisualStudio.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index c49041ff..8e930f59 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -259,9 +259,6 @@ FakesAssemblies/ .ntvs_analysis.dat node_modules/ -# TypeScript v1 declaration files -typings/ - # Visual Studio 6 build log *.plg From c4ed4015e674101690b7274d0e5d49d1cc43475f Mon Sep 17 00:00:00 2001 From: "Wesley T. Honeycutt" Date: Thu, 1 Mar 2018 19:38:51 -0600 Subject: [PATCH 16/17] Added htlatex for TeX.gitignore --- TeX.gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 5359e544..78c1c5cd 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -110,6 +110,14 @@ acs-*.bib *.gaux *.gtex +# htlatex +*.4ct +*.4tc +*.idv +*.lg +*.trc +*.xref + # hyperref *.brf From 60ad7088f7b41a53fbfd64f372a909dc3c8b1df1 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Fri, 2 Mar 2018 10:39:24 -0800 Subject: [PATCH 17/17] Fix URL in comments Points to valid URI --- Dart.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dart.gitignore b/Dart.gitignore index 58950beb..7bf00e82 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,4 +1,4 @@ -# See https://www.dartlang.org/tools/private-files.html +# See https://www.dartlang.org/guides/libraries/private-files # Files and directories created by pub .dart_tool/