From 620d4878a014cefdd1919c39527290c852539712 Mon Sep 17 00:00:00 2001 From: John Stilley <1831479+theJollySin@users.noreply.github.com> Date: Fri, 3 Jul 2020 14:07:44 -0400 Subject: [PATCH 1/8] Fixing target and adding debug to Rust gitignore (#3436) The problem here was two fold: 1. the folder "/target/" would be top-level of the repo only, it should be "target/" to properly exclude target folders anywhere in the repo 2. the default Rust/Cargo folder when compiling code is "debug/", which gets used perhaps more often that "target/", added that --- Rust.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Rust.gitignore b/Rust.gitignore index 088ba6ba..ff47c2d7 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -1,6 +1,7 @@ # Generated by Cargo # will have compiled files and executables -/target/ +debug/ +target/ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html From 6eff882467cbde7b4e293b4dd6abd7685fc67844 Mon Sep 17 00:00:00 2001 From: Justin Gregory Date: Fri, 3 Jul 2020 15:15:33 -0500 Subject: [PATCH 2/8] Fix false positives on Coverage*.cs files (#3454) I added this .gitignore to a project that included a file named CoverageSearchModel.cs, and the file was wrongly ignored. This change fixes the incorrect use of the range operator on the Coverlet rules. --- VisualStudio.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 83ba0814..1ee53850 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -142,7 +142,9 @@ _TeamCity* !.axoCover/settings.json # Coverlet is a free, cross platform Code Coverage Tool -coverage*[.json, .xml, .info] +coverage*.json +coverage*.xml +coverage*.info # Visual Studio code coverage results *.coverage From c9fab68db3d854d1482fb566f521989b4506fd7f Mon Sep 17 00:00:00 2001 From: ZhengYuan Loo Date: Sat, 4 Jul 2020 04:17:35 +0800 Subject: [PATCH 3/8] Update stale heading anchor (#3445) Co-authored-by: ZhengYuan Loo --- Global/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/README.md b/Global/README.md index 06b6649b..6e57d87f 100644 --- a/Global/README.md +++ b/Global/README.md @@ -4,7 +4,7 @@ This directory contains globally useful gitignores, e.g. OS-specific and editor specific. For more on global gitignores: - + And a good blog post about 'em: From 5cf393421db855df42b64e081a916d054f6c5ecc Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Sat, 4 Jul 2020 04:19:48 +0800 Subject: [PATCH 4/8] ignore *~ files in the po directory (#3453) Common IME for `gettext` utilities like `tools::update_pkg_po('.')` to create these temp files (at least on Mac) --- R.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/R.gitignore b/R.gitignore index e2101077..da10c745 100644 --- a/R.gitignore +++ b/R.gitignore @@ -40,3 +40,6 @@ vignettes/*.pdf # pkgdown site docs/ + +# translation temp files +po/*~ From eea28935df555ba6cdc373bec7d5212272d49bfa Mon Sep 17 00:00:00 2001 From: Maher Zaidoune Date: Sat, 4 Jul 2020 17:35:59 +0100 Subject: [PATCH 5/8] ignore HPROF files (#3456) --- Android.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index 56cc6425..23de6e20 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -83,3 +83,6 @@ lint/generated/ lint/outputs/ lint/tmp/ # lint/reports/ + +# Android Profiling +*.hprof From 36ce3a894d9ddff2916bc98d71380aa7167ff1d7 Mon Sep 17 00:00:00 2001 From: Kevin Cochran <40193276+kevincloud@users.noreply.github.com> Date: Mon, 6 Jul 2020 20:36:25 -0400 Subject: [PATCH 6/8] Exclude *.tfvars files (#3452) Co-authored-by: Kevin Cochran --- Terraform.gitignore | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Terraform.gitignore b/Terraform.gitignore index 8778d48f..beb38d84 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -8,11 +8,12 @@ # Crash log files crash.log -# Ignore any .tfvars files that are generated automatically for each Terraform run. Most -# .tfvars files are managed as part of configuration and so should be included in -# version control. +# Exclude all .tfvars files, which are likely to contain sentitive data, such as +# password, private keys, and other secrets. These should not be part of version +# control as they are data points which are potentially sensitive and subject +# to change depending on the environment. # -# example.tfvars +*.tfvars # Ignore override files as they are usually used to override resources locally and so # are not checked in From f44d83083e2b0438d557279d8047d1dff8607882 Mon Sep 17 00:00:00 2001 From: Michael Alexsander Date: Sun, 12 Jul 2020 12:04:53 -0300 Subject: [PATCH 7/8] Remove pointless blank line from the beginning of the Godot file (#3466) --- Godot.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Godot.gitignore b/Godot.gitignore index 122aab1c..4f48ad79 100644 --- a/Godot.gitignore +++ b/Godot.gitignore @@ -1,4 +1,3 @@ - # Godot-specific ignores .import/ export.cfg From 218a941be92679ce67d0484547e3e142b2f5f6f0 Mon Sep 17 00:00:00 2001 From: Diego Herranz Date: Sun, 12 Jul 2020 16:07:13 +0100 Subject: [PATCH 8/8] KiCad: add *.kicad_sch-bak and *.kicad_prl (#3427) * KiCad: add *.kicad_sch-bak As used by the new file formats for KiCad 6.0 See https://kicad-pcb.org/blog/2020/05/Development-Highlight-New-schematic-and-symbol-library-file-formats-are-now-the-default/ * Add *.kicad_prl to KiCad.gitignore More info: https://forum.kicad.info/t/new-project-file-format/23705 --- KiCad.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/KiCad.gitignore b/KiCad.gitignore index 853ee63f..bd70969a 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -6,6 +6,8 @@ *.bak *.bck *.kicad_pcb-bak +*.kicad_sch-bak +*.kicad_prl *.sch-bak *~ _autosave-*