From 73b42b65f7abc1e6736d6dab3715cd64d48517aa Mon Sep 17 00:00:00 2001 From: Aaron Alexander Date: Mon, 4 Apr 2016 17:22:43 -0400 Subject: [PATCH 001/194] Add .gitignore for TestComplete --- TestComplete.gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 TestComplete.gitignore diff --git a/TestComplete.gitignore b/TestComplete.gitignore new file mode 100644 index 00000000..8378b9ee --- /dev/null +++ b/TestComplete.gitignore @@ -0,0 +1,14 @@ +# Test Complete ignore files: https://support.smartbear.com/viewarticle/68002/ + +# Tester-specific Settings +*.tcCFGExtender +*.tcLS + +# Type library declarations +*.tlb + +# Log files +*.tcLogs + +# Backup files +*.bak From aa4ab4ec7f516910f073667c1c6db87f693bbb02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Vieira=20Porto?= Date: Sun, 20 Jan 2019 23:04:19 -0200 Subject: [PATCH 002/194] Adds .gitignore for Adventure Game Studio Projects --- AGS.gitignore | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 AGS.gitignore diff --git a/AGS.gitignore b/AGS.gitignore new file mode 100644 index 00000000..c1eec3bb --- /dev/null +++ b/AGS.gitignore @@ -0,0 +1,26 @@ +# Adventure Game Studio git ignore +# -------------------------------- +# Built things +_Debug/ +_Release/ +Compiled/ +*.exe + +#Audio Cache can be rebuilt from sources +AudioCache/ + +# User +_OpenInEditor.lock +Game.agf.user + +# backups +Game.agf.bak +backup_acsprset.spr + +# memory dumps +*.dmp + +# temporary files +~aclzw.tmp +game28.dta +warnings.log From 1e4fbb60d1bda7dbd8f0054ab9235fbe34f3ad71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Vieira=20Porto?= Date: Mon, 21 Jan 2019 07:18:59 -0200 Subject: [PATCH 003/194] Removed _Release folder and added more things - Removed non-standard `_Release` folder; - Added per room settings for next ags `*.crm.user`; - Reorganized the lines in some categories with more comments. --- AGS.gitignore | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/AGS.gitignore b/AGS.gitignore index c1eec3bb..e381672e 100644 --- a/AGS.gitignore +++ b/AGS.gitignore @@ -1,26 +1,34 @@ # Adventure Game Studio git ignore # -------------------------------- + # Built things _Debug/ -_Release/ Compiled/ -*.exe -#Audio Cache can be rebuilt from sources +# AudioCache can be rebuilt from sources AudioCache/ -# User +# Lockfile _OpenInEditor.lock -Game.agf.user -# backups +# User settings +Game.agf.user +*.crm.user + +# Backups Game.agf.bak backup_acsprset.spr -# memory dumps +# Memory dumps *.dmp -# temporary files +# Temporary files +# temporarily created during sprite or room background compression ~aclzw.tmp +# temporary, main game data, before getting packed into exe game28.dta +# temporary build of the game before being moved to Compiled/ folder +*.exe + +# Log files warnings.log From 4d956021fafc69bda558a7ed5c8b8809ac2d7e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Vieira=20Porto?= Date: Sun, 17 Feb 2019 12:50:49 -0300 Subject: [PATCH 004/194] renamed to AdventureGameStudio.gitignore and removed header --- AGS.gitignore => AdventureGameStudio.gitignore | 3 --- 1 file changed, 3 deletions(-) rename AGS.gitignore => AdventureGameStudio.gitignore (87%) diff --git a/AGS.gitignore b/AdventureGameStudio.gitignore similarity index 87% rename from AGS.gitignore rename to AdventureGameStudio.gitignore index e381672e..27a089f4 100644 --- a/AGS.gitignore +++ b/AdventureGameStudio.gitignore @@ -1,6 +1,3 @@ -# Adventure Game Studio git ignore -# -------------------------------- - # Built things _Debug/ Compiled/ From 1f7726a47339f72bb70ea3c81b2a1f490f530acf Mon Sep 17 00:00:00 2001 From: Shawn Kovalchick Date: Sat, 4 Jan 2020 07:59:02 -0500 Subject: [PATCH 005/194] Create PlatformIO.gitignore Add default ignores from PlatformIO in VSCode --- Global/PlatformIO.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Global/PlatformIO.gitignore diff --git a/Global/PlatformIO.gitignore b/Global/PlatformIO.gitignore new file mode 100644 index 00000000..2de98aba --- /dev/null +++ b/Global/PlatformIO.gitignore @@ -0,0 +1,6 @@ +.pio +.pioenvs +.piolibdeps +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json From f6426bd354a87444521c2d132c95863a3037a0ae Mon Sep 17 00:00:00 2001 From: Dmitry Maganov Date: Fri, 26 Jun 2020 19:58:01 +0300 Subject: [PATCH 006/194] Create Haxe.gitignore --- Haxe.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Haxe.gitignore diff --git a/Haxe.gitignore b/Haxe.gitignore new file mode 100644 index 00000000..4891a0ff --- /dev/null +++ b/Haxe.gitignore @@ -0,0 +1,2 @@ +.haxelib/ +dump/ From ad2622c2dd8f220bb6c0355f92a7e6986aa1e100 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 28 Sep 2020 13:22:59 -0400 Subject: [PATCH 007/194] rust: allow /target and /debug to be symlinks See rust-lang/cargo#4944 for the cargo change. --- Rust.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rust.gitignore b/Rust.gitignore index ff47c2d7..4ff33bb9 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -1,7 +1,7 @@ # Generated by Cargo # will have compiled files and executables -debug/ -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 15854c5bb4bf2b757ff0d9c04b18b43eb785e6f3 Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Wed, 30 Sep 2020 13:33:32 +0530 Subject: [PATCH 008/194] Update C++.gitignore --- C++.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/C++.gitignore b/C++.gitignore index 259148fa..b753618a 100644 --- a/C++.gitignore +++ b/C++.gitignore @@ -11,6 +11,12 @@ *.gch *.pch +# Linker files +*.ilk + +# Debugger Files +*.pdb + # Compiled Dynamic libraries *.so *.dylib From f7db945023ba43d5ea93a83bb944de6d874c8979 Mon Sep 17 00:00:00 2001 From: Jullyana Mattos Vycas <45983213+jumattos@users.noreply.github.com> Date: Thu, 1 Oct 2020 11:55:56 -0700 Subject: [PATCH 009/194] VisualStudio: add "out" folder to build results --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 1ee53850..eaa99029 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -29,6 +29,7 @@ x86/ bld/ [Bb]in/ [Oo]bj/ +[Oo]ut/ [Ll]og/ [Ll]ogs/ From 4a6f74426e8fa1432a39a73d8c3495fcefb4302a Mon Sep 17 00:00:00 2001 From: Arman Bilge Date: Wed, 14 Oct 2020 19:41:41 -0700 Subject: [PATCH 010/194] [SBT] Ignore .bsp directory --- Global/SBT.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/SBT.gitignore b/Global/SBT.gitignore index 5ed6acb6..98ee5070 100644 --- a/Global/SBT.gitignore +++ b/Global/SBT.gitignore @@ -10,3 +10,4 @@ project/plugins/project/ .history .cache .lib/ +.bsp/ From e07b0dc3ee383c30002e1635c821797334c406c3 Mon Sep 17 00:00:00 2001 From: tbeu Date: Sat, 19 Dec 2020 17:09:50 +0100 Subject: [PATCH 011/194] Also ignore *.idb (to match C.gitignore) *.idb files (of VS2005 and probably other versions, too) should be also ignored. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 1ee53850..5413b8ad 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -75,6 +75,7 @@ StyleCopReport.xml *.ilk *.meta *.obj +*.idb *.iobj *.pch *.pdb From 04a4d50a7848dd1351eff9134a283fc6a3ef79a7 Mon Sep 17 00:00:00 2001 From: Andrii Chebukin Date: Wed, 30 Dec 2020 23:01:53 +0200 Subject: [PATCH 012/194] Fixed editor specific folder exclusion for subfolders --- VisualStudio.gitignore | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 1ee53850..b1651969 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -302,17 +302,17 @@ node_modules/ _Pvt_Extensions # Paket dependency manager -.paket/paket.exe +**/.paket/paket.exe paket-files/ # FAKE - F# Make -.fake/ +**/.fake/ # CodeRush personal settings -.cr/personal +**/.cr/personal # Python Tools for Visual Studio (PTVS) -__pycache__/ +**/__pycache__/ *.pyc # Cake - Uncomment if you are using it @@ -344,10 +344,10 @@ ASALocalRun/ *.nvuser # MFractors (Xamarin productivity tool) working folder -.mfractor/ +**/.mfractor/ # Local History for Visual Studio -.localhistory/ +**/.localhistory/ # BeatPulse healthcheck temp database healthchecksdb @@ -356,7 +356,7 @@ healthchecksdb MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder -.ionide/ +**/.ionide/ # Fody - auto-generated XML schema FodyWeavers.xsd From b7563346aaec5b6e02e898fb6e62aa65afff3e57 Mon Sep 17 00:00:00 2001 From: fslds Date: Thu, 7 Jan 2021 10:52:41 +0100 Subject: [PATCH 013/194] Add direnv .envrc to ignored files. The direnv project (https://direnv.net/ ) uses .envrc files for dynamically loading environment variables (or other settings) per directory using the user's shell.. As it can contain sensitive information, and is similar in goal as to .env etc, I think it is a good idea to exclude this by default as well. --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index a81c8ee1..212421b4 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -106,6 +106,7 @@ celerybeat.pid # Environments .env +.envrc .venv env/ venv/ From ac73d272dfc25c9b1fd6c70fb78359b5c6faa205 Mon Sep 17 00:00:00 2001 From: Alvaro Enrique Ruano Date: Fri, 14 May 2021 22:51:17 -0600 Subject: [PATCH 014/194] Handle .dll.refresh --- VisualStudio.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 34c8dee4..5c8aece5 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -27,7 +27,8 @@ x86/ [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ bld/ -[Bb]in/ +**/[Bb]in/* +!**/[Bb]in/*.refresh [Oo]bj/ [Ll]og/ [Ll]ogs/ From d5962b38af8e8fefd40efb2d2e5d61112d1fedf9 Mon Sep 17 00:00:00 2001 From: Alvaro Enrique Ruano Date: Sun, 30 May 2021 11:17:00 -0600 Subject: [PATCH 015/194] Making .refresh exclusion optional --- VisualStudio.gitignore | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 5c8aece5..d8d40796 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -27,12 +27,16 @@ x86/ [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ bld/ -**/[Bb]in/* -!**/[Bb]in/*.refresh [Oo]bj/ [Ll]og/ [Ll]ogs/ +# Build results on 'Bin' directories +**/[Bb]in/* +# Uncomment if you have tasks that rely on *.refresh files to move binaries +# (https://github.com/github/gitignore/pull/3736) +#!**/[Bb]in/*.refresh + # Visual Studio 2015/2017 cache/options directory .vs/ # Uncomment if you have tasks that create the project's static files in wwwroot From 10fc0397160817dce0e35ced634e977fd1492aee Mon Sep 17 00:00:00 2001 From: Miguel Medina Ballesteros Date: Sat, 16 Oct 2021 20:26:00 +0100 Subject: [PATCH 016/194] Fix Unreal Engine plugin binaries on subfolders --- UnrealEngine.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 6582eaf9..6e0d95fb 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -47,7 +47,7 @@ SourceArt/**/*.tga # Binary Files Binaries/* -Plugins/*/Binaries/* +Plugins/**/Binaries/* # Builds Build/* @@ -68,7 +68,7 @@ Saved/* # Compiled source files for the engine to use Intermediate/* -Plugins/*/Intermediate/* +Plugins/**/Intermediate/* # Cache files for the editor to use DerivedDataCache/* From 03103c9a7b3a857b88e606f352b3e4877106487a Mon Sep 17 00:00:00 2001 From: oxygen-dioxide <54425948+oxygen-dioxide@users.noreply.github.com> Date: Wed, 15 Dec 2021 14:03:59 +0800 Subject: [PATCH 017/194] Create UTAU.gitignore --- UTAU.gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 UTAU.gitignore diff --git a/UTAU.gitignore b/UTAU.gitignore new file mode 100644 index 00000000..fae63fec --- /dev/null +++ b/UTAU.gitignore @@ -0,0 +1,29 @@ +#This gitignore file is created for UTAU (and other singing voice synthesizers) voicebank development +#example repo: https://github.com/oxygen-dioxide/hitsuboku-kumi-chn/ + +#Adobe Audition +*.pkf + +#UTAU +*.frq +*.mrq +*.llsm +*.pmk +*.vs4ufrq +*.frc +*.dio + +#Deepvocal +*.DVModel +*-log.txt +SKC +SKI +SKC_1 +SKC_2 +SKC_3 +SKC_4 +*.sksd + +#VocalSharp +*.scep +*.vssf From f3df40641d80224ecde7dda74912354ca0acbf1d Mon Sep 17 00:00:00 2001 From: oxygen-dioxide <1463567152@qq.com> Date: Wed, 15 Dec 2021 06:26:36 +0000 Subject: [PATCH 018/194] 1 --- UTAU.gitignore => community/UTAU.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename UTAU.gitignore => community/UTAU.gitignore (100%) diff --git a/UTAU.gitignore b/community/UTAU.gitignore similarity index 100% rename from UTAU.gitignore rename to community/UTAU.gitignore From 951e077a3b7c9a72d86ff4032113f98497d30f2f Mon Sep 17 00:00:00 2001 From: Thomas Turrell-Croft Date: Tue, 11 Jan 2022 10:22:00 +0000 Subject: [PATCH 019/194] Fixed APT generated tests location By default the APT generated tests location is .apt_generated_tests --- Global/Eclipse.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/Eclipse.gitignore b/Global/Eclipse.gitignore index acec74ac..85723da8 100644 --- a/Global/Eclipse.gitignore +++ b/Global/Eclipse.gitignore @@ -48,7 +48,7 @@ local.properties # Annotation Processing .apt_generated/ -.apt_generated_test/ +.apt_generated_tests/ # Scala IDE specific (Scala & Java development for Eclipse) .cache-main From d419f5440181b95411d967ff9e4bff3f134ab917 Mon Sep 17 00:00:00 2001 From: Al Zee Date: Fri, 14 Jan 2022 23:07:23 +0800 Subject: [PATCH 020/194] /web/{modules,profiles,themes}/contrib are extends added via composer, should be ignored --- Drupal.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Drupal.gitignore b/Drupal.gitignore index faae8083..3856fe46 100644 --- a/Drupal.gitignore +++ b/Drupal.gitignore @@ -25,12 +25,15 @@ /web/vendor /web/core /web/modules/README.txt +/web/modules/contrib /web/profiles/README.txt +/web/profiles/contrib /web/sites/development.services.yml /web/sites/example.settings.local.php /web/sites/example.sites.php /web/sites/README.txt /web/themes/README.txt +/web/themes/contrib /web/.csslintrc /web/.editorconfig /web/.eslintignore From 904b46de137100a2ded17b2a5f58db1c1148c960 Mon Sep 17 00:00:00 2001 From: NoPunIn10Did Date: Thu, 27 Jan 2022 13:10:55 -0500 Subject: [PATCH 021/194] Update KiCad.gitignore --- KiCad.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/KiCad.gitignore b/KiCad.gitignore index a63bc0e7..8dcb269b 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -27,3 +27,6 @@ fp-info-cache # Exported BOM files *.xml *.csv + +# Archived Backups (KiCad 6.0) +**/*-backups/*.zip \ No newline at end of file From 6a72e43229796cb8c92278a16117604fd4b5422b Mon Sep 17 00:00:00 2001 From: pvaleror Date: Wed, 16 Feb 2022 17:49:43 -0500 Subject: [PATCH 022/194] Create Katalon.gitignore Compiled config for Katalon Studio --- Katalon.gitignore | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Katalon.gitignore diff --git a/Katalon.gitignore b/Katalon.gitignore new file mode 100644 index 00000000..73a4938f --- /dev/null +++ b/Katalon.gitignore @@ -0,0 +1,40 @@ +# Katalon Test Suite +# Compiled class file +*.class +*.swp +output +!output/.gitkeep +build + +Libs/TempTestCase* +Libs/TempTestSuite* +bin/lib/TempTestCase* +Reports/ +\.classpath +\.project +\.settings/ +bin/lib/ +Libs/ +.svn/ +.gradle + + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* From 57c1500630894c955b9afd4b76e97c51acd3dcbd Mon Sep 17 00:00:00 2001 From: Ojaswa Sharma Date: Thu, 24 Feb 2022 15:03:55 +0530 Subject: [PATCH 023/194] fix: typo in Python.gitignore --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index de2d5e08..2ad0e95f 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -46,7 +46,7 @@ htmlcov/ nosetests.xml coverage.xml *.cover -*.py,cover +*.py.cover .hypothesis/ .pytest_cache/ cover/ From c86c275f029add2e4035cc2759e57b2e8cbb3420 Mon Sep 17 00:00:00 2001 From: Jonathan Duke Date: Fri, 25 Mar 2022 11:50:40 -0500 Subject: [PATCH 024/194] ignore temporary Microsoft Word template files (.dot/.dotx) --- Global/MicrosoftOffice.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/MicrosoftOffice.gitignore b/Global/MicrosoftOffice.gitignore index ddcc9cf6..6501a7d3 100644 --- a/Global/MicrosoftOffice.gitignore +++ b/Global/MicrosoftOffice.gitignore @@ -2,6 +2,7 @@ # Word temporary ~$*.doc* +~$*.dot* # Word Auto Backup File Backup of *.doc* From 2fa9e45ac4d6a6f9b690c4a11c415d5f0d2d8ae6 Mon Sep 17 00:00:00 2001 From: Idir Lankri Date: Thu, 7 Apr 2022 15:59:59 +0200 Subject: [PATCH 025/194] OCaml.gitignore: Make a comment a bit more precise Resources: - https://github.com/ocaml/ocamlbuild/blob/master/manual/manual.adoc#110-source-and-build-directories-module-paths-include-paths - https://dune.readthedocs.io/en/stable/usage.html#custom-build-directory --- OCaml.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OCaml.gitignore b/OCaml.gitignore index a18e0840..d134abd5 100644 --- a/OCaml.gitignore +++ b/OCaml.gitignore @@ -8,7 +8,7 @@ *.cmxs *.cmxa -# ocamlbuild working directory +# ocamlbuild and Dune default working directory _build/ # ocamlbuild targets From 7b2ef3fdff128ba65c4746de3c0b0f04657ebd5b Mon Sep 17 00:00:00 2001 From: Idir Lankri Date: Thu, 7 Apr 2022 16:15:24 +0200 Subject: [PATCH 026/194] OCaml.gitignore: Ignore binary files containing info about compilation See https://ocaml.org/manual/comp.html#s:comp-overview. --- OCaml.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/OCaml.gitignore b/OCaml.gitignore index d134abd5..250caf74 100644 --- a/OCaml.gitignore +++ b/OCaml.gitignore @@ -8,6 +8,13 @@ *.cmxs *.cmxa +# Files containing detailed information about the compilation (generated +# by `ocamlc`/`ocamlopt` when invoked using the option `-bin-annot`). +# These files are typically useful for code inspection tools +# (e.g. Merlin). +*.cmt +*.cmti + # ocamlbuild and Dune default working directory _build/ From 8d481622d56618f42253af2f4b20b84f051909c9 Mon Sep 17 00:00:00 2001 From: Kevin Kostrzewa <93138155+kkostrzewa-coupa@users.noreply.github.com> Date: Fri, 15 Apr 2022 08:53:44 -0400 Subject: [PATCH 027/194] Ignore *.trx files --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..bd56094e 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -396,3 +396,6 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml + +# Microsoft Test Results file +*.trx From 64eaff41907d3377c04a7986d2dc09a1e4a7535e Mon Sep 17 00:00:00 2001 From: Kevin Kostrzewa <93138155+kkostrzewa-coupa@users.noreply.github.com> Date: Fri, 15 Apr 2022 08:54:49 -0400 Subject: [PATCH 028/194] Update comment for ignoring *.trx files --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index bd56094e..9ae74cfb 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -397,5 +397,5 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml -# Microsoft Test Results file +# Microsoft Test Results XML file *.trx From 9fffcae51aec0e781e94890158f9b7e47dbc5534 Mon Sep 17 00:00:00 2001 From: Bryn Deering <55864293+Bdeering1@users.noreply.github.com> Date: Wed, 20 Apr 2022 23:22:50 -0400 Subject: [PATCH 029/194] Update VS Code ignores to match file in global Updated the VS Code section of VisualStudio.gitignore to match the Global/VisualStudioCode.gitignore file. --- VisualStudio.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..2bfe0e03 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -382,11 +382,14 @@ FodyWeavers.xsd !.vscode/tasks.json !.vscode/launch.json !.vscode/extensions.json -*.code-workspace +!.vscode/*.code-snippets # Local History for Visual Studio Code .history/ +# Built Visual Studio Code Extensions +*.vsix + # Windows Installer files from build outputs *.cab *.msi From f845b5491abb4ab361abe1c1494a45aed91b3d10 Mon Sep 17 00:00:00 2001 From: kpowake <104589398+kpowake@users.noreply.github.com> Date: Wed, 4 May 2022 01:39:34 +0900 Subject: [PATCH 030/194] Change output.json to output-metadata.json ...for newer version of Android Studio --- Android.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Android.gitignore b/Android.gitignore index 347e252e..0e5e20c1 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -13,7 +13,7 @@ captures/ .externalNativeBuild/ .cxx/ *.apk -output.json +output-metadata.json # IntelliJ *.iml From f4d16fdeb19e81cb994e287fcbce1440d19e95bc Mon Sep 17 00:00:00 2001 From: Daniel Lathrop Date: Mon, 9 May 2022 10:28:06 -0500 Subject: [PATCH 031/194] Update Perl .gitignore to include Carton --- Perl.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Perl.gitignore b/Perl.gitignore index fb8b1931..2bc7f649 100644 --- a/Perl.gitignore +++ b/Perl.gitignore @@ -33,3 +33,9 @@ inc/ /MANIFEST.bak /pm_to_blib /*.zip + +# Carton/Carmel +/local/ +/.carmel/ +# cpanfile.snapshot should generally be ignored for library code, otherwise included +# cpanfile.snapshot From f25639455e868cd49999f2774aadad4d4b1cea29 Mon Sep 17 00:00:00 2001 From: Anton Gilgur Date: Sat, 4 Jun 2022 18:35:27 -0400 Subject: [PATCH 032/194] clean: remove outdated microbundle cache directories - microbundle hasn't used these directories in 3+ years - https://github.com/developit/microbundle/commit/d0e66da9578ee36b8e629039372e9f253ed053fa - and rollup-plugin-typescript2, which microbundle depends on and which actually created the dirs, hasn't used them in ~3 years either - https://github.com/ezolenko/rollup-plugin-typescript2/commit/ffda2e539bf076da00d5093829a5a20a50a0f58d - I help maintain rpt2 and formerly solo-maintained TSDX for ~1.5 years, which, as a fork of microbundle, has similarly used those directories in the past until I changed them - https://github.com/jaredpalmer/tsdx/commit/55c0d47c0bbee16bb780e8aa9441ca426ba127c7 --- Node.gitignore | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index c6bba591..7844e76e 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -57,12 +57,6 @@ web_modules/ # Optional stylelint cache .stylelintcache -# Microbundle cache -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - # Optional REPL history .node_repl_history From d3303732694b3b0b10aa52680344663a13f7e6df Mon Sep 17 00:00:00 2001 From: Rob Purser Date: Thu, 30 Jun 2022 09:26:31 -0400 Subject: [PATCH 033/194] Create MATLAB.gitignore --- MATLAB.gitignore | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 MATLAB.gitignore diff --git a/MATLAB.gitignore b/MATLAB.gitignore new file mode 100644 index 00000000..8d994012 --- /dev/null +++ b/MATLAB.gitignore @@ -0,0 +1,31 @@ +# Windows default autosave extension +*.asv + +# OSX / *nix default autosave extension +*.m~ + +# Derived Content-Obscured files +*.p + +# Compiled MEX binaries (all platforms) +*.mex* + +# Packaged app and toolbox files +*.mlappinstall +*.mltbx + +# Generated helpsearch folders +helpsearch*/ + +# Simulink code generation folders +slprj/ +sccprj/ + +# Matlab code generation folders +codegen/ + +# Simulink autosave extension +*.autosave + +# Simulink cache files +*.slxc From 6dd64367a5f1c13600421a459bf555fa3b31d9fa Mon Sep 17 00:00:00 2001 From: Rob Purser Date: Thu, 30 Jun 2022 09:29:23 -0400 Subject: [PATCH 034/194] Add .p files Add Derived Content-Obscured files (*.p) --- Global/MATLAB.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/MATLAB.gitignore b/Global/MATLAB.gitignore index 01d02dd2..3e11d420 100644 --- a/Global/MATLAB.gitignore +++ b/Global/MATLAB.gitignore @@ -4,6 +4,9 @@ # OSX / *nix default autosave extension *.m~ +# Derived Content-Obscured files +*.p + # Compiled MEX binaries (all platforms) *.mex* From ae510dd9f4b2c408e093bf38a3e5b69a01e97327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Kurzyniec?= Date: Sat, 2 Jul 2022 16:54:39 +0200 Subject: [PATCH 035/194] added Approval Tests result files --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..486580f5 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -49,6 +49,9 @@ Generated\ Files/ TestResult.xml nunit-*.xml +# Approval Tests result files +*.received.* + # Build Results of an ATL Project [Dd]ebugPS/ [Rr]eleasePS/ From 4c08c07f0bfc77c5b22f13c7f2ecde85e9d512b5 Mon Sep 17 00:00:00 2001 From: Rob Purser Date: Wed, 6 Jul 2022 09:30:04 -0400 Subject: [PATCH 036/194] Initial version from technical folks Reviewed by @gulley @lrm29 @gwalker-dev @seangcote-home --- MATLAB.gitignore | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/MATLAB.gitignore b/MATLAB.gitignore index 8d994012..12679118 100644 --- a/MATLAB.gitignore +++ b/MATLAB.gitignore @@ -1,13 +1,14 @@ -# Windows default autosave extension +# Autosave files *.asv - -# OSX / *nix default autosave extension *.m~ +*.autosave +*.slx.r* +*.mdl.r* -# Derived Content-Obscured files +# Derived content-obscured files *.p -# Compiled MEX binaries (all platforms) +# Compiled MEX files *.mex* # Packaged app and toolbox files @@ -17,15 +18,10 @@ # Generated helpsearch folders helpsearch*/ -# Simulink code generation folders +# Code generation folders slprj/ sccprj/ - -# Matlab code generation folders codegen/ -# Simulink autosave extension -*.autosave - -# Simulink cache files +# Cache files *.slxc From e3ff3d884b5a68945ed6ec66ab7a4ce0f64a04d6 Mon Sep 17 00:00:00 2001 From: Rob Purser Date: Thu, 7 Jul 2022 09:27:20 -0400 Subject: [PATCH 037/194] Review Feedback Revised with internal review feedback --- Global/MATLAB.gitignore | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/Global/MATLAB.gitignore b/Global/MATLAB.gitignore index 3e11d420..3f1b1708 100644 --- a/Global/MATLAB.gitignore +++ b/Global/MATLAB.gitignore @@ -1,13 +1,14 @@ -# Windows default autosave extension +# Autosave files *.asv - -# OSX / *nix default autosave extension *.m~ +*.autosave +*.slx.r* +*.mdl.r* -# Derived Content-Obscured files +# Derived content-obscured files *.p -# Compiled MEX binaries (all platforms) +# Compiled MEX files *.mex* # Packaged app and toolbox files @@ -17,18 +18,13 @@ # Generated helpsearch folders helpsearch*/ -# Simulink code generation folders +# Code generation folders slprj/ sccprj/ - -# Matlab code generation folders codegen/ -# Simulink autosave extension -*.autosave - -# Simulink cache files +# Cache files *.slxc -# Octave session info -octave-workspace +# Dotfile from cloud based storage +.MATLABDriveTag From ebf0dffb3a7cb1fe7cb77922709458afcb2d8a95 Mon Sep 17 00:00:00 2001 From: Rob Purser Date: Thu, 7 Jul 2022 09:28:47 -0400 Subject: [PATCH 038/194] Update the Global/MATLAB.gitignore instead Elected to follow a PR strategy to update Global/MATLAB.gitignore first, then work to get it promoted. --- MATLAB.gitignore | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 MATLAB.gitignore diff --git a/MATLAB.gitignore b/MATLAB.gitignore deleted file mode 100644 index 12679118..00000000 --- a/MATLAB.gitignore +++ /dev/null @@ -1,27 +0,0 @@ -# Autosave files -*.asv -*.m~ -*.autosave -*.slx.r* -*.mdl.r* - -# Derived content-obscured files -*.p - -# Compiled MEX files -*.mex* - -# Packaged app and toolbox files -*.mlappinstall -*.mltbx - -# Generated helpsearch folders -helpsearch*/ - -# Code generation folders -slprj/ -sccprj/ -codegen/ - -# Cache files -*.slxc From 348be0078fb847b9de1b727fce32695a83606789 Mon Sep 17 00:00:00 2001 From: Rob Purser Date: Thu, 7 Jul 2022 09:33:21 -0400 Subject: [PATCH 039/194] Change MATLAB Drive comment --- Global/MATLAB.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/MATLAB.gitignore b/Global/MATLAB.gitignore index 3f1b1708..2854d215 100644 --- a/Global/MATLAB.gitignore +++ b/Global/MATLAB.gitignore @@ -26,5 +26,5 @@ codegen/ # Cache files *.slxc -# Dotfile from cloud based storage +# Cloud based storage dotfile .MATLABDriveTag From 1fb302559613f0eca278e583c2d9f104f4fe5c93 Mon Sep 17 00:00:00 2001 From: todd-flanagan <33087988+todd-flanagan@users.noreply.github.com> Date: Fri, 8 Jul 2022 11:12:03 -0400 Subject: [PATCH 040/194] Update MATLAB.gitignore added entry for ctf artifacts --- Global/MATLAB.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/MATLAB.gitignore b/Global/MATLAB.gitignore index 2854d215..be8ddb36 100644 --- a/Global/MATLAB.gitignore +++ b/Global/MATLAB.gitignore @@ -15,6 +15,9 @@ *.mlappinstall *.mltbx +# Compiled deployable archives +*.ctf + # Generated helpsearch folders helpsearch*/ From 9644568fcd454795e7fa929dd3571fec67a72f2a Mon Sep 17 00:00:00 2001 From: todd-flanagan <33087988+todd-flanagan@users.noreply.github.com> Date: Fri, 8 Jul 2022 13:05:31 -0400 Subject: [PATCH 041/194] per review comments --- Global/MATLAB.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/MATLAB.gitignore b/Global/MATLAB.gitignore index be8ddb36..92061b1d 100644 --- a/Global/MATLAB.gitignore +++ b/Global/MATLAB.gitignore @@ -15,7 +15,7 @@ *.mlappinstall *.mltbx -# Compiled deployable archives +# Deployable archives *.ctf # Generated helpsearch folders From 6623018b65a54e551d03b5cdfab864116bd8ad2b Mon Sep 17 00:00:00 2001 From: Khazbs Date: Tue, 2 Aug 2022 16:45:34 +0300 Subject: [PATCH 042/194] Ignore *.aab Generated Android App Bundles (*.aab), like Android Packages (*.apk), should not be checked into VCS. --- Android.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.gitignore b/Android.gitignore index 347e252e..71d40314 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -12,6 +12,7 @@ local.properties captures/ .externalNativeBuild/ .cxx/ +*.aab *.apk output.json From c338343e3952b56b82d926625fdb4d92878d9359 Mon Sep 17 00:00:00 2001 From: Chaoses-Ib Date: Sun, 11 Sep 2022 00:52:46 +0800 Subject: [PATCH 043/194] Highlight the gitignore block in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7014eed7..86792046 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ header of the template. For example, this template might live at `community/DotNet/InforCRM.gitignore`: -``` +```gitignore # gitignore template for InforCRM (formerly SalesLogix) # website: https://www.infor.com/product-summary/cx/infor-crm/ # From 9c1792744c2213db6b95c05118b0ec094efa5374 Mon Sep 17 00:00:00 2001 From: Jaxel Rojas Date: Sat, 17 Sep 2022 09:20:22 -0400 Subject: [PATCH 044/194] Add MSBuild_Logs/ to VisualStudio.gitignore The MsBuild team added a switch to the Visual Studio engine that generates a debugging information under the directory MsBuild_Logs/ that shouldn't be in source control systems. Here's the [original PR](https://github.com/dotnet/msbuild/commit/cdb5077c451180ab38161e0b5e70f5448e70355b) from the msbuild team. Here is the documentation from the msbuild team explaining the feature that [generates the path](https://github.com/dotnet/msbuild/blob/main/documentation/wiki/Building-Testing-and-Debugging-on-Full-Framework-MSBuild.md#logs) Heres' a similar PR for the dotnet [runtime](https://github.com/dotnet/runtime/pull/59323) --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..104a3602 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -351,6 +351,7 @@ ASALocalRun/ # MSBuild Binary and Structured Log *.binlog +MSBuild_Logs/ # NVidia Nsight GPU debugger configuration file *.nvuser From 3b37c6d06cc8c7cf7e8411a0eb170a6c2785242d Mon Sep 17 00:00:00 2001 From: Noah Gilson Date: Tue, 13 Dec 2022 15:57:24 -0800 Subject: [PATCH 045/194] Remove JetBrains IDE Files from VS Ignore List https://github.com/dotnet/sdk/issues/29224 --- VisualStudio.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..1a48e921 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -393,6 +393,3 @@ FodyWeavers.xsd *.msix *.msm *.msp - -# JetBrains Rider -*.sln.iml From 738b4f1362f6c18fd0db19b5824161fde63f0a94 Mon Sep 17 00:00:00 2001 From: Stefano Cordio Date: Mon, 26 Dec 2022 17:06:02 +0100 Subject: [PATCH 046/194] Update `maven-wrapper` URL --- Maven.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Maven.gitignore b/Maven.gitignore index 2f435308..6d706b8d 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -7,7 +7,7 @@ release.properties dependency-reduced-pom.xml buildNumber.properties .mvn/timing.properties -# https://github.com/takari/maven-wrapper#usage-without-binary-jar +# https://maven.apache.org/wrapper/#usage-without-binary-jar .mvn/wrapper/maven-wrapper.jar # Eclipse m2e generated files From 66cbc9acca6721809de548e69f67ef4adb150814 Mon Sep 17 00:00:00 2001 From: Harsh Dadhich Date: Thu, 29 Dec 2022 13:32:00 -0800 Subject: [PATCH 047/194] Add latexindent --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index e9642441..7442f837 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -147,6 +147,9 @@ acs-*.bib # *.tikz *-tikzDictionary +# latexindent will create succesive backup files by default +#*.bak* + # listings *.lol From 899669977bc46513c1cee856e1ca6fe276fc78ba Mon Sep 17 00:00:00 2001 From: Taqveem Khalid Date: Wed, 4 Jan 2023 11:20:35 +0100 Subject: [PATCH 048/194] Add SSDT sqlproj specific gitignore file for database development using t-sql. --- SSDT-sqlproj.gitignore | 361 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 361 insertions(+) create mode 100644 SSDT-sqlproj.gitignore diff --git a/SSDT-sqlproj.gitignore b/SSDT-sqlproj.gitignore new file mode 100644 index 00000000..786f63c6 --- /dev/null +++ b/SSDT-sqlproj.gitignore @@ -0,0 +1,361 @@ +## Ignore Visual Studio SSDT sqlproj specific temporary files, build results, etc +## +## +## Get latest from https://github.com/github/gitignore/blob/master/SSDT-sqlproj.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# 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 +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd From 97a5a643ec6083442919ef3b964526f694055533 Mon Sep 17 00:00:00 2001 From: Spirit Date: Wed, 25 Jan 2023 13:50:41 +0300 Subject: [PATCH 049/194] Remove Ruby `dotenv` conventions These are considered in the Ruby `dotenv` package not in the node's one --- Node.gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index c6bba591..4956d962 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -74,10 +74,6 @@ web_modules/ # dotenv environment variable files .env -.env.development.local -.env.test.local -.env.production.local -.env.local # parcel-bundler cache (https://parceljs.org/) .cache From 31fc17b810901fbe11d6aebc236123fb7b0f68b8 Mon Sep 17 00:00:00 2001 From: Spirit Date: Wed, 25 Jan 2023 14:12:30 +0300 Subject: [PATCH 050/194] Re-add `.env.*` It's not recommended to have multiple `.env` files in the same environment. But it's safer to ignore it just in case. --- Node.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Node.gitignore b/Node.gitignore index 4956d962..ea9653f1 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -74,6 +74,7 @@ web_modules/ # dotenv environment variable files .env +.env.* # parcel-bundler cache (https://parceljs.org/) .cache From a749c0ebf71cec92c43663be31a8e98f5842cd5f Mon Sep 17 00:00:00 2001 From: Spirit Date: Wed, 25 Jan 2023 14:36:04 +0300 Subject: [PATCH 051/194] Unignore `.env.example` https://github.com/github/gitignore/commit/b236e1717b90f1755af76900f5387bfa20636de3 --- Node.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Node.gitignore b/Node.gitignore index ea9653f1..e8b54b7f 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -75,6 +75,7 @@ web_modules/ # dotenv environment variable files .env .env.* +!.env.example # parcel-bundler cache (https://parceljs.org/) .cache From cf93b5277e1ff4049c7f6eccc1b656533038d666 Mon Sep 17 00:00:00 2001 From: Tyler Pruitt Date: Tue, 31 Jan 2023 20:07:18 -0600 Subject: [PATCH 052/194] Fix Metals gitignore * Removed leading space so comments are treated as comments * Updated Reference comment * Updated ignored files to latest recommendation --- Global/Metals.gitignore | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Global/Metals.gitignore b/Global/Metals.gitignore index 516e7e33..779e796b 100644 --- a/Global/Metals.gitignore +++ b/Global/Metals.gitignore @@ -1,5 +1,6 @@ - # Generated Metals (Scala Language Server) files - # Reference: https://scalameta.org/metals/ +# Metals (Scala Language Server) +# Reference: https://scalameta.org/metals/docs/editors/vscode#files-and-directories-to-include-in-your-gitignore .metals/ .bloop/ -project/metals.sbt +.ammonite/ +metals.sbt From 4eb82ffd9b4116d257c92b8f893d7975b18a7789 Mon Sep 17 00:00:00 2001 From: Koji Hasegawa Date: Sun, 5 Feb 2023 23:17:08 +0900 Subject: [PATCH 053/194] Add auto-generated scenes by Unity play mode tests --- Unity.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 58cbc825..a11ddf93 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -70,3 +70,6 @@ crashlytics-build.properties # Temporary auto-generated Android Assets /[Aa]ssets/[Ss]treamingAssets/aa.meta /[Aa]ssets/[Ss]treamingAssets/aa/* + +# Auto-generated scenes by play mode tests +/[Aa]ssets/[Ii]nit[Tt]est[Ss]cene*.unity* From 6743515cd30c516a4e859ac842df1d3fcc783a45 Mon Sep 17 00:00:00 2001 From: Kevin Kostrzewa <93138155+kkostrzewa-coupa@users.noreply.github.com> Date: Wed, 1 Mar 2023 19:35:33 -0500 Subject: [PATCH 054/194] Moved *.trx to MSTest section --- VisualStudio.gitignore | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 9ae74cfb..e2d5e0ed 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -43,6 +43,7 @@ Generated\ Files/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* +*.trx # NUnit *.VisualState.xml @@ -396,6 +397,3 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml - -# Microsoft Test Results XML file -*.trx From 13048c46528e4e660597629cba2f81bb75577f16 Mon Sep 17 00:00:00 2001 From: Karl Horky Date: Thu, 9 Mar 2023 11:56:06 +0100 Subject: [PATCH 055/194] Remove pnpm debug log - it is contained within `node_modules/`, which is already ignored - the previous versions, which were not in `node_modules/`, did not have a period at the beginning of the filename Changelog with proof here: https://github.com/pnpm/pnpm/blob/ba4b2db1f201640dad5d7ee9fe68a2d0defd6047/pnpm/CHANGELOG.md?plain=1#L3330 --- Node.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index c6bba591..0c08c517 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -5,7 +5,6 @@ npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* -.pnpm-debug.log* # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json From 64340cce99274a1b0a1c1a1aecc1d3bc583a802e Mon Sep 17 00:00:00 2001 From: Jen-Chieh Shen Date: Sat, 18 Mar 2023 20:29:22 -0700 Subject: [PATCH 056/194] elisp: Ignore more build tools .eask, .eldev, .keg are other build tools like .cask. dist is the default folder to build package distribution files. --- Elisp.gitignore | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Elisp.gitignore b/Elisp.gitignore index 206569dc..adef969d 100644 --- a/Elisp.gitignore +++ b/Elisp.gitignore @@ -2,7 +2,13 @@ *.elc # Packaging -.cask +.cask/ +.eask/ +.eldev/ +.keg/ + +# Built distribution +dist/ # Backup files *~ From d34fe3a059d872746f38614a5efcc82fafacfd6e Mon Sep 17 00:00:00 2001 From: Anoduck Date: Mon, 20 Mar 2023 05:50:59 +0000 Subject: [PATCH 057/194] Added undo-tree Added undo-tree, which is a popular package for undoing changes made to a file. It leaves hidden files everywhere, and can litter up a repository if not ignored. I have to add `*.~undo-tree~` to every `.gitignore` file in every repository I am working in. As you can guess, this gets very tedious. --- Global/Emacs.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/Emacs.gitignore b/Global/Emacs.gitignore index d40e8659..489b8928 100644 --- a/Global/Emacs.gitignore +++ b/Global/Emacs.gitignore @@ -47,3 +47,5 @@ flycheck_*.el # network security /network-security.data +# undo-tree +*.~undo-tree~ From 4eb280e7d55ebc9f79352b8683de03d867fcf04a Mon Sep 17 00:00:00 2001 From: agiuliano Date: Thu, 13 Apr 2023 09:49:20 +0200 Subject: [PATCH 058/194] Add Flutter.gitignore file --- Flutter.gitignore | 70 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 Flutter.gitignore diff --git a/Flutter.gitignore b/Flutter.gitignore new file mode 100644 index 00000000..65aa46da --- /dev/null +++ b/Flutter.gitignore @@ -0,0 +1,70 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# Visual Studio Code related +.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +.dart_tool/ +.flutter-plugins +.packages +.pub-cache/ +.pub/ +/build/ + +# Android related +**/android/**/gradle-wrapper.jar +**/android/.gradle +**/android/captures/ +**/android/gradlew +**/android/gradlew.bat +**/android/local.properties +**/android/**/GeneratedPluginRegistrant.java + +# iOS/XCode related +**/ios/**/*.mode1v3 +**/ios/**/*.mode2v3 +**/ios/**/*.moved-aside +**/ios/**/*.pbxuser +**/ios/**/*.perspectivev3 +**/ios/**/*sync/ +**/ios/**/.sconsign.dblite +**/ios/**/.tags* +**/ios/**/.vagrant/ +**/ios/**/DerivedData/ +**/ios/**/Icon? +**/ios/**/Pods/ +**/ios/**/.symlinks/ +**/ios/**/profile +**/ios/**/xcuserdata +**/ios/.generated/ +**/ios/Flutter/App.framework +**/ios/Flutter/Flutter.framework +**/ios/Flutter/Generated.xcconfig +**/ios/Flutter/app.flx +**/ios/Flutter/app.zip +**/ios/Flutter/flutter_assets/ +**/ios/ServiceDefinitions.json +**/ios/Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!**/ios/**/default.mode1v3 +!**/ios/**/default.mode2v3 +!**/ios/**/default.pbxuser +!**/ios/**/default.perspectivev3 +!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages \ No newline at end of file From 58488ef086b6dbeb75a8fa8a2854b3cbb57f0b51 Mon Sep 17 00:00:00 2001 From: agiuliano Date: Thu, 13 Apr 2023 09:54:42 +0200 Subject: [PATCH 059/194] Fix .gitignore file --- Flutter.gitignore | 73 +++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 68 insertions(+), 5 deletions(-) diff --git a/Flutter.gitignore b/Flutter.gitignore index 65aa46da..6b7cc2b9 100644 --- a/Flutter.gitignore +++ b/Flutter.gitignore @@ -1,5 +1,6 @@ # Miscellaneous *.class +*.lock *.log *.pyc *.swp @@ -16,25 +17,58 @@ .idea/ # Visual Studio Code related -.vscode/ +.classpath +.project +.settings/ +.vscode/* + +# Flutter repo-specific +/bin/cache/ +/bin/internal/bootstrap.bat +/bin/internal/bootstrap.sh +/bin/mingit/ +/dev/benchmarks/mega_gallery/ +/dev/bots/.recipe_deps +/dev/bots/android_tools/ +/dev/devicelab/ABresults*.json +/dev/docs/doc/ +/dev/docs/flutter.docs.zip +/dev/docs/lib/ +/dev/docs/pubspec.yaml +/dev/integration_tests/**/xcuserdata +/dev/integration_tests/**/Pods +/packages/flutter/coverage/ +version +analysis_benchmark.json + +# packages file containing multi-root paths +.packages.generated # Flutter/Dart/Pub related **/doc/api/ .dart_tool/ .flutter-plugins +.flutter-plugins-dependencies +**/generated_plugin_registrant.dart .packages -.pub-cache/ +.pub-preload-cache/ .pub/ -/build/ +build/ +flutter_*.png +linked_*.ds +unlinked.ds +unlinked_spec.ds # Android related **/android/**/gradle-wrapper.jar -**/android/.gradle +.gradle/ **/android/captures/ **/android/gradlew **/android/gradlew.bat **/android/local.properties **/android/**/GeneratedPluginRegistrant.java +**/android/key.properties +*.jks # iOS/XCode related **/ios/**/*.mode1v3 @@ -53,18 +87,47 @@ **/ios/**/profile **/ios/**/xcuserdata **/ios/.generated/ +**/ios/Flutter/.last_build_id **/ios/Flutter/App.framework **/ios/Flutter/Flutter.framework +**/ios/Flutter/Flutter.podspec **/ios/Flutter/Generated.xcconfig +**/ios/Flutter/ephemeral **/ios/Flutter/app.flx **/ios/Flutter/app.zip **/ios/Flutter/flutter_assets/ +**/ios/Flutter/flutter_export_environment.sh **/ios/ServiceDefinitions.json **/ios/Runner/GeneratedPluginRegistrant.* +# macOS +**/Flutter/ephemeral/ +**/Pods/ +**/macos/Flutter/GeneratedPluginRegistrant.swift +**/macos/Flutter/ephemeral +**/xcuserdata/ + +# Windows +**/windows/flutter/generated_plugin_registrant.cc +**/windows/flutter/generated_plugin_registrant.h +**/windows/flutter/generated_plugins.cmake + +# Linux +**/linux/flutter/generated_plugin_registrant.cc +**/linux/flutter/generated_plugin_registrant.h +**/linux/flutter/generated_plugins.cmake + +# Coverage +coverage/ + +# Symbols +app.*.symbols + # Exceptions to above rules. !**/ios/**/default.mode1v3 !**/ios/**/default.mode2v3 !**/ios/**/default.pbxuser !**/ios/**/default.perspectivev3 -!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages \ No newline at end of file +!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages +!/dev/ci/**/Gemfile.lock +!.vscode/settings.json \ No newline at end of file From 4f0b7a06941233e607d3cc9f769036141c1d7a34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christophe=20Saug=C3=A9?= Date: Mon, 1 May 2023 20:49:13 +0200 Subject: [PATCH 060/194] Update Python.gitignore Add ruff cache. ruff tool: https://github.com/charliermarsh/ruff ruff is becoming a very popular tool often run in pre-commit and aim to replace Flake8 (plus dozens of plugins), isort, pydocstyle, yesqa, eradicate, pyupgrade, and autoflake, all while executing tens or hundreds of times faster than any individual tool. --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 68bc17f9..4c852386 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -158,3 +158,6 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + +# Ruff stuff: +.ruff_cache/ From 436c98e920d2bd62f237bb3b694fb22055034fd7 Mon Sep 17 00:00:00 2001 From: AsukaMinato Date: Wed, 24 May 2023 14:29:42 +0900 Subject: [PATCH 061/194] add deb --- ArchLinuxPackages.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/ArchLinuxPackages.gitignore b/ArchLinuxPackages.gitignore index b7390552..289fa5c6 100644 --- a/ArchLinuxPackages.gitignore +++ b/ArchLinuxPackages.gitignore @@ -3,6 +3,7 @@ *.jar *.exe *.msi +*.deb *.zip *.tgz *.log From 6a8bcbde4c8256f0c174e69a57904f24b8f5d300 Mon Sep 17 00:00:00 2001 From: Greg Chabala Date: Fri, 9 Jun 2023 17:44:40 -0500 Subject: [PATCH 062/194] Update reference to Maven Wrapper exclusion --- Maven.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Maven.gitignore b/Maven.gitignore index 2f435308..6d706b8d 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -7,7 +7,7 @@ release.properties dependency-reduced-pom.xml buildNumber.properties .mvn/timing.properties -# https://github.com/takari/maven-wrapper#usage-without-binary-jar +# https://maven.apache.org/wrapper/#usage-without-binary-jar .mvn/wrapper/maven-wrapper.jar # Eclipse m2e generated files From 3c50c9f0afa4ca4ad28b565b952583718af18218 Mon Sep 17 00:00:00 2001 From: Michael Stepner Date: Wed, 14 Jun 2023 23:47:24 -0500 Subject: [PATCH 063/194] Update Stata.gitignore to ignore new auto backup files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stata 18 introduced an auto-backup feature which creates a temporary file while a code file is open it its IDE. These auto-backup files are analogous to the [Microsoft Office backup files that are gitignored](https://github.com/github/gitignore/blob/main/Global/MicrosoftOffice.gitignore). [Ref](https://www.stata.com/manuals/gsm13.pdf): > The Do-file Editor now creates a backup file whenever it opens a document or creates a new one. > When an existing document is opened, Stata creates a backup file of a document that is saved to disk > in the same directory using the existing document’s filename prefixed with ~ and with the extension > .stswp. When you edit a new and unsaved document, it saves the backup file to the temp directory. > When a document is closed, the backup file is deleted. However, if Stata does not exit cleanly because > of a power outage or a computer crash, the backup file is left behind. --- Global/Stata.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/Stata.gitignore b/Global/Stata.gitignore index 07997bb1..288abf8a 100644 --- a/Global/Stata.gitignore +++ b/Global/Stata.gitignore @@ -8,6 +8,7 @@ *.smcl *.stpr *.stsem +~*.stswp # Graphic export files from Stata # Stata command graph export: http://www.stata.com/manuals14/g-2graphexport.pdf From 3555ed25b41fa46b7c7a82c2ba5a77ff386e2564 Mon Sep 17 00:00:00 2001 From: christophnz Date: Sat, 17 Jun 2023 22:05:30 +1200 Subject: [PATCH 064/194] Updated ignore rule for "umbraco" folder with trailing * to ensure include folders below are actually included --- community/DotNet/Umbraco.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/DotNet/Umbraco.gitignore b/community/DotNet/Umbraco.gitignore index 1dc3da52..f71b5709 100644 --- a/community/DotNet/Umbraco.gitignore +++ b/community/DotNet/Umbraco.gitignore @@ -43,7 +43,7 @@ *.sqlite.db* #ignore umbraco data/views/settings -**/umbraco/ +**/umbraco/* #include default location for modelsbuilder output !**/umbraco/models From c0e6cffccfa445e86944e144b82f2726002e2916 Mon Sep 17 00:00:00 2001 From: Marko Kaznovac Date: Wed, 21 Jun 2023 14:54:45 +0200 Subject: [PATCH 065/194] JetBrains.gitignore: add ignore for the HTTP Client's private environment - documentation regarding env config files: https://www.jetbrains.com/help/idea/exploring-http-syntax.html#example-working-with-environment-files - rename Rest Client to HTTP Client --- Global/JetBrains.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 3649d6dc..d77ab051 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -70,8 +70,9 @@ crashlytics.properties crashlytics-build.properties fabric.properties -# Editor-based Rest Client +# Editor-based HTTP Client .idea/httpRequests +http-client.private.env.json # Android studio 3.1+ serialized cache file .idea/caches/build_file_checksums.ser From d4a7a9a2fb3b10a2495389dd5f24f544e2d6bd20 Mon Sep 17 00:00:00 2001 From: Qi Zhang <25192197+singularitti@users.noreply.github.com> Date: Thu, 22 Jun 2023 00:29:35 -0400 Subject: [PATCH 066/194] Update Julia.gitignore --- Julia.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Julia.gitignore b/Julia.gitignore index 29126e47..06e4d2b8 100644 --- a/Julia.gitignore +++ b/Julia.gitignore @@ -22,3 +22,6 @@ docs/site/ # committed for packages, but should be committed for applications that require a static # environment. Manifest.toml + +# File generated by the Preferences package to store local preferences +LocalPreferences.toml From 724b724ea3eb83833d41b44f15b603dfd2955853 Mon Sep 17 00:00:00 2001 From: Qi Zhang <25192197+singularitti@users.noreply.github.com> Date: Thu, 22 Jun 2023 00:33:37 -0400 Subject: [PATCH 067/194] Update Julia.gitignore --- Julia.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Julia.gitignore b/Julia.gitignore index 06e4d2b8..6debdf1d 100644 --- a/Julia.gitignore +++ b/Julia.gitignore @@ -25,3 +25,4 @@ Manifest.toml # File generated by the Preferences package to store local preferences LocalPreferences.toml +JuliaLocalPreferences.toml From aa0342778aa97b6daf971739ee5f8420f4d0fd88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20Sch=C3=BCtz?= Date: Thu, 29 Jun 2023 15:01:19 +0200 Subject: [PATCH 068/194] Support option abbreviations of glossaries-extra --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index e9642441..b8b9d50d 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -106,8 +106,11 @@ acs-*.bib *.acn *.acr *.glg +*.glg-abr *.glo +*.glo-abr *.gls +*.glo-abr *.glsdefs *.lzo *.lzs From 7fe0f4db6da3a9ae72f87ed1096bae90c31cf009 Mon Sep 17 00:00:00 2001 From: QLabs <55121845+Quantalabs@users.noreply.github.com> Date: Thu, 27 Jul 2023 21:00:23 -0700 Subject: [PATCH 069/194] Use yarn v3 instead of v2 Updates the gitignore for Node to use yarn v3 instead of yarn v2. gitignores the files recommended by yarn --- Node.gitignore | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index c6bba591..f50f03dd 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -122,9 +122,11 @@ dist # Stores VSCode versions used for testing VSCode extensions .vscode-test -# yarn v2 -.yarn/cache -.yarn/unplugged -.yarn/build-state.yml -.yarn/install-state.gz +# yarn v3 .pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions From 09b5744d1202ff16dc57a9d679a02a36956cf044 Mon Sep 17 00:00:00 2001 From: Krishnakumar Gopalakrishnan Date: Wed, 30 Aug 2023 17:09:46 +0100 Subject: [PATCH 070/194] ignore split-dwarf debugging-related auxilary .dwo files for C and C++ projects --- C++.gitignore | 3 +++ C.gitignore | 3 +++ 2 files changed, 6 insertions(+) diff --git a/C++.gitignore b/C++.gitignore index 259148fa..90fe0ecb 100644 --- a/C++.gitignore +++ b/C++.gitignore @@ -30,3 +30,6 @@ *.exe *.out *.app + +# debug information files +*.dwo diff --git a/C.gitignore b/C.gitignore index c6127b38..845cda6a 100644 --- a/C.gitignore +++ b/C.gitignore @@ -50,3 +50,6 @@ modules.order Module.symvers Mkfile.old dkms.conf + +# debug information files +*.dwo From 43dd159e4cbcba940b1d71975b0b909c5a97e9f9 Mon Sep 17 00:00:00 2001 From: laschuet Date: Wed, 27 Sep 2023 22:53:11 +0200 Subject: [PATCH 071/194] Fix duplicate --- TeX.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TeX.gitignore b/TeX.gitignore index b8b9d50d..606f0f0e 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -110,7 +110,7 @@ acs-*.bib *.glo *.glo-abr *.gls -*.glo-abr +*.gls-abr *.glsdefs *.lzo *.lzs From f18cd633a966ff667becaf71c5fe6243e1417502 Mon Sep 17 00:00:00 2001 From: Rhys van der Waerden Date: Wed, 25 Oct 2023 10:59:17 +1100 Subject: [PATCH 072/194] Ignore mono_crash files These can be generated by Unity on crash --- Unity.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 58cbc825..ead62afd 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -55,6 +55,9 @@ ExportedObj/ # Unity3D generated file on crash reports sysinfo.txt +# Mono auto generated files +mono_crash.* + # Builds *.apk *.aab From d7459a4850f81cbd854267651b6df38409ba01ee Mon Sep 17 00:00:00 2001 From: Hans Spaans Date: Sat, 4 Nov 2023 12:04:43 +0100 Subject: [PATCH 073/194] Update Python.gitignore for PEP 441 PEP 441 introduces Python ZIP Applications to bundle a Python Application into a ZIP file with file extension `pyz`. --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 68bc17f9..e19b0fdb 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -1,6 +1,6 @@ # Byte-compiled / optimized / DLL files __pycache__/ -*.py[cod] +*.py[codz] *$py.class # C extensions From 930fa355b6ee1cea18c7cc5c5e052c3866e4ee39 Mon Sep 17 00:00:00 2001 From: Christopher Patton Date: Sun, 5 Nov 2023 12:22:09 -0800 Subject: [PATCH 074/194] Add Obsidian community gitignore files --- .../NotesAndCoreConfiguration.gitignore | 16 ++++++++ .../NotesAndExtendedConfiguration.gitignore | 38 +++++++++++++++++++ community/Obsidian/NotesOnly.gitignore | 4 ++ 3 files changed, 58 insertions(+) create mode 100644 community/Obsidian/NotesAndCoreConfiguration.gitignore create mode 100644 community/Obsidian/NotesAndExtendedConfiguration.gitignore create mode 100644 community/Obsidian/NotesOnly.gitignore diff --git a/community/Obsidian/NotesAndCoreConfiguration.gitignore b/community/Obsidian/NotesAndCoreConfiguration.gitignore new file mode 100644 index 00000000..4eff01da --- /dev/null +++ b/community/Obsidian/NotesAndCoreConfiguration.gitignore @@ -0,0 +1,16 @@ +# Excludes Obsidian workspace cache and plugins. All notes and core obsidian +# configuration files are tracked by Git. + +# The current application UI state (DOM layout, recently-opened files, etc.) is +# stored in these files (separate for desktop and mobile) so you can resume +# your session seamlessly after a restart. If you want to track UI state, use +# the Workspaces core plugin instead of relying on these files. +.obsidian/workspace.json +.obsidian/workspace-mobile.json + +# Obsidian plugins are stored under .obsidian/plugins/$plugin_name. They +# contain metadata (manifest.json), application code (main.js), stylesheets +# (styles.css), and user-configuration data (data.json). +# We want to exclude all plugin-related files, so we can exclude everything +# under this directory. +.obsidian/plugins/**/* diff --git a/community/Obsidian/NotesAndExtendedConfiguration.gitignore b/community/Obsidian/NotesAndExtendedConfiguration.gitignore new file mode 100644 index 00000000..3e0804f2 --- /dev/null +++ b/community/Obsidian/NotesAndExtendedConfiguration.gitignore @@ -0,0 +1,38 @@ +# Excludes Obsidian workspace cache and plugin code, but retains plugin +# configuration. All notes and user-controlled configuration files are tracked +# by Git. +# +# !!! WARNING !!! +# +# Community plugins may store sensitive secrets in their data.json files. By +# including these files, those secrets may be tracked in your Git repository. +# +# To ignore configurations for specific plugins, add a line like this after the +# contents of this file (order is important): +# .obsidian/plugins/{{plugin_name}}/data.json +# +# Alternatively, ensure that you are treating your entire Git repository as +# sensitive data, since it may contain secrets, or may have contained them in +# past commits. Understand your threat profile, and make the decision +# appropriate for yourself. If in doubt, err on the side of not including +# plugin configuration. Use one of the alternative gitignore files instead: +# * NotesOnly.gitignore +# * NotesAndCoreConfiguration.gitignore + +# The current application UI state (DOM layout, recently-opened files, etc.) is +# stored in these files (separate for desktop and mobile) so you can resume +# your session seamlessly after a restart. If you want to track UI state, use +# the Workspaces core plugin instead of relying on these files. +.obsidian/workspace.json +.obsidian/workspace-mobile.json + +# Obsidian plugins are stored under .obsidian/plugins/$plugin_name. They +# contain metadata (manifest.json), application code (main.js), stylesheets +# (styles.css), and user-configuration data (data.json). +# We only want to track data.json, so we: +# 1. exclude everything under the plugins directory recursively, +# 2. unignore the plugin directories themselves, which then allows us to +# 3. unignore the data.json files +.obsidian/plugins/**/* +!.obsidian/plugins/*/ +!.obsidian/plugins/*/data.json diff --git a/community/Obsidian/NotesOnly.gitignore b/community/Obsidian/NotesOnly.gitignore new file mode 100644 index 00000000..2b3b76ee --- /dev/null +++ b/community/Obsidian/NotesOnly.gitignore @@ -0,0 +1,4 @@ +# Excludes all Obsidian-related configuration. All notes are tracked by Git. + +# All Obsidian configuration and runtime state is stored here +.obsidian/**/* From 94cb1ce3b8b08683136168d2e5ff25511ea99c06 Mon Sep 17 00:00:00 2001 From: Henrique Gottardi Werlang Date: Thu, 30 Nov 2023 16:40:07 -0300 Subject: [PATCH 075/194] New extension to ignore in Delphi IDE. --- Delphi.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Delphi.gitignore b/Delphi.gitignore index 9532800b..aada67f1 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -56,6 +56,7 @@ *.projdata *.tvsconfig *.dsk +*.dsv # Delphi history and backups __history/ From 27fe2b766efdedb873be8fe54b8cba39a559a7f9 Mon Sep 17 00:00:00 2001 From: Niels Basjes Date: Thu, 11 Jan 2024 18:12:35 +0100 Subject: [PATCH 076/194] Fix invalid comments Signed-off-by: Niels Basjes --- Dart.gitignore | 8 +++++--- Global/Metals.gitignore | 4 ++-- Global/Vim.gitignore | 3 ++- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index 3a83c2f0..3150b406 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -16,9 +16,11 @@ doc/api/ # Avoid committing generated Javascript files: *.dart.js -*.info.json # Produced by the --dump-info flag. -*.js # When generated by dart2js. Don't specify *.js if your - # project includes source files written in JavaScript. +# Produced by the --dump-info flag. +*.info.json +# When generated by dart2js. Don't specify *.js if your +# project includes source files written in JavaScript. +*.js *.js_ *.js.deps *.js.map diff --git a/Global/Metals.gitignore b/Global/Metals.gitignore index 516e7e33..fb3e0977 100644 --- a/Global/Metals.gitignore +++ b/Global/Metals.gitignore @@ -1,5 +1,5 @@ - # Generated Metals (Scala Language Server) files - # Reference: https://scalameta.org/metals/ +# Generated Metals (Scala Language Server) files +# Reference: https://scalameta.org/metals/ .metals/ .bloop/ project/metals.sbt diff --git a/Global/Vim.gitignore b/Global/Vim.gitignore index 19fa6326..cb8a0499 100644 --- a/Global/Vim.gitignore +++ b/Global/Vim.gitignore @@ -1,6 +1,7 @@ # Swap [._]*.s[a-v][a-z] -!*.svg # comment out if you don't need vector files +# comment out the next line if you don't need vector files +!*.svg [._]*.sw[a-p] [._]s[a-rt-v][a-z] [._]ss[a-gi-z] From 8dbb58e730313c8fee22705e423b7bd079c7aea0 Mon Sep 17 00:00:00 2001 From: TobiasKnauss Date: Fri, 2 Feb 2024 12:52:10 +0100 Subject: [PATCH 077/194] Update TwinCAT3.gitignore Backup files of TwinCAT3 PLC projects. --- TwinCAT3.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TwinCAT3.gitignore b/TwinCAT3.gitignore index 7bd6f875..5e8958bc 100644 --- a/TwinCAT3.gitignore +++ b/TwinCAT3.gitignore @@ -16,10 +16,11 @@ *.library *.project.~u *.tsproj.bak +*.tspproj.bak *.xti.bak LineIDs.dbg LineIDs.dbg.bak _Boot/ _CompileInfo/ _Libraries/ -_ModuleInstall/ \ No newline at end of file +_ModuleInstall/ From 772a211c7c14e553c367eaa58420143e185a9ddb Mon Sep 17 00:00:00 2001 From: kashi-x Date: Thu, 20 Jun 2024 23:47:58 +0900 Subject: [PATCH 078/194] add pixi configure in python gitignore --- Python.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 82f92755..3ad8c8ea 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -111,6 +111,12 @@ ipython_config.py .pdm-python .pdm-build/ +# pixi +# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. +#pixi.lock +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one in the .venv directory. It is recommended not to include this directory in version control. +.pixi + # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm __pypackages__/ From 9db05cc944fa45915f38e61d3145f65fc1bd8dae Mon Sep 17 00:00:00 2001 From: kashi-x Date: Fri, 21 Jun 2024 00:44:19 +0900 Subject: [PATCH 079/194] fix line length --- Python.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 3ad8c8ea..40c9b2e0 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -114,7 +114,8 @@ ipython_config.py # pixi # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. #pixi.lock -# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one in the .venv directory. It is recommended not to include this directory in version control. +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one +# in the .venv directory. It is recommended not to include this directory in version control. .pixi # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm From bc8923ba8c54d0c24fb5ae4e5b98eae86b70eefa Mon Sep 17 00:00:00 2001 From: Martin Leduc <31558169+DecimalTurn@users.noreply.github.com> Date: Sat, 29 Jun 2024 22:24:40 -0400 Subject: [PATCH 080/194] Create VBA.gitignore --- VBA.gitignore | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 VBA.gitignore diff --git a/VBA.gitignore b/VBA.gitignore new file mode 100644 index 00000000..b111b119 --- /dev/null +++ b/VBA.gitignore @@ -0,0 +1,34 @@ +# Office temporary files +~$* + +# The following sections constitute a list of Office file extensions that support VBA. +# If you want to exclude Office files from your repo, uncomment the corresponding file extensions. + +# Excel (xls, xlsb, xlsm, xlt, xltm, xla, xlam) +#*.[xX][lL][sS] +#*.[xX][lL][sS][bB] +#*.[xX][lL][sS][mM] +#*.[xX][lL][tT] +#*.[xX][lL][tT][mM] +#*.[xX][lL][aA] +#*.[xX][lL][aA][mM] + +# Word (doc, docm, dot, dotm) +#*.[dD][oO][cC] +#*.[dD][oO][cC][mM] +#*.[dD][oO][tT] +#*.[dD][oO][tT][mM] + +# Access (accdb, accde, mdb, mde) +#*.[aA][cC][cC][dD][bB] +#*.[aA][cC][cC][dD][eE] +#*.[mM][dD][bB] +#*.[mM][dD][eE] + +# PowerPoint (ppt, pptm, pot, potm, pps, ppsm) +#*.[pP][pP][tT] +#*.[pP][pP][tT][mM] +#*.[pP][oO][tT] +#*.[pP][oO][tT][mM] +#*.[pP][pP][sS] +#*.[pP][pP][sS][mM] From 45236d16ef6758f52e137229fd503eae26ec4133 Mon Sep 17 00:00:00 2001 From: Martin Leduc <31558169+DecimalTurn@users.noreply.github.com> Date: Thu, 4 Jul 2024 19:11:00 -0400 Subject: [PATCH 081/194] Add files for Access Suggestions taken from: https://github.com/joyfullservice/msaccess-vcs-addin/blob/main/.gitignore.default --- VBA.gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/VBA.gitignore b/VBA.gitignore index b111b119..db97b537 100644 --- a/VBA.gitignore +++ b/VBA.gitignore @@ -1,6 +1,10 @@ # Office temporary files ~$* +# Access database lock files +*.laccdb +*.ldb + # The following sections constitute a list of Office file extensions that support VBA. # If you want to exclude Office files from your repo, uncomment the corresponding file extensions. @@ -19,7 +23,8 @@ #*.[dD][oO][tT] #*.[dD][oO][tT][mM] -# Access (accdb, accde, mdb, mde) +# Access (accda, accdb, accde, mdb, mde) +#*.[aA][cC][cC][dD][aA] #*.[aA][cC][cC][dD][bB] #*.[aA][cC][cC][dD][eE] #*.[mM][dD][bB] From 6c54172ecccf3acc74ad81fe0864a0f87b18329a Mon Sep 17 00:00:00 2001 From: Matt Alexander Date: Wed, 31 Jul 2024 07:47:55 -0500 Subject: [PATCH 082/194] Update Linux.gitignore --- Global/Linux.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index b56bf65d..2ea12bbf 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -11,3 +11,9 @@ # .nfs files are created when an open file is removed but is still being accessed .nfs* + +# Log files created by default by the nohup command +nohup.out + +# Metadata left by Dolphin file manager, which comes with KDE Plasma +.directory From 63e339f19f3cb2c8b9b4ced656c92484d58ec793 Mon Sep 17 00:00:00 2001 From: Kent Bair Date: Fri, 2 Aug 2024 15:53:33 -0600 Subject: [PATCH 083/194] Updated NCrunch cache path for v4.16+ --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..a256f0f4 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -153,6 +153,7 @@ coverage*.info # NCrunch _NCrunch_* +.NCrunch_* .*crunch*.local.xml nCrunchTemp_* From 256d85d2c7ba39f04e31631ac0af225f291663fa Mon Sep 17 00:00:00 2001 From: Martin Leduc <31558169+DecimalTurn@users.noreply.github.com> Date: Mon, 5 Aug 2024 21:09:46 -0400 Subject: [PATCH 084/194] Make case-insensitive --- VBA.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VBA.gitignore b/VBA.gitignore index db97b537..ebb292a4 100644 --- a/VBA.gitignore +++ b/VBA.gitignore @@ -1,9 +1,9 @@ # Office temporary files ~$* -# Access database lock files -*.laccdb -*.ldb +# Access database lock files (laccdb, ldb) +*.[lL][aA][cC][cC][dD][bB] +*.[lL][dD][bB] # The following sections constitute a list of Office file extensions that support VBA. # If you want to exclude Office files from your repo, uncomment the corresponding file extensions. From 05e03d2b84925d58b6adcf7903ebc7f880c0bc3c Mon Sep 17 00:00:00 2001 From: Kate Nyzhnyk Date: Sun, 1 Sep 2024 18:58:49 +0200 Subject: [PATCH 085/194] Ignore cargo mutants output --- Rust.gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Rust.gitignore b/Rust.gitignore index d01bd1a9..27717526 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -13,9 +13,13 @@ Cargo.lock # MSVC Windows builds of rustc generate these, which store debugging information *.pdb +# Generated by cargo mutants +# Contains mutation testing data +**/mutants.out*/ + # RustRover # JetBrains specific template is maintained in a separate JetBrains.gitignore that can # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ \ No newline at end of file +#.idea/ From f55dbb03f39de026a6fd643d53898c86ca1b3157 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Thu, 5 Sep 2024 20:32:33 +0200 Subject: [PATCH 086/194] Handle source folders inside subprojects in Gradle.gitignore --- Gradle.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gradle.gitignore b/Gradle.gitignore index a5b11137..296d3f00 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -1,6 +1,6 @@ .gradle **/build/ -!src/**/build/ +!**/src/**/build/ # Ignore Gradle GUI config gradle-app.setting From 9f181e93ce98cda0e200a02a13f7b017ad10f15f Mon Sep 17 00:00:00 2001 From: Lamparter Date: Thu, 12 Sep 2024 17:55:04 +0100 Subject: [PATCH 087/194] =?UTF-8?q?=F0=9F=99=88=20Update=20Cake=20comment?= =?UTF-8?q?=20line=20to=20match=20other=20comment=20lines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VisualStudio.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..a42d49b6 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -328,8 +328,8 @@ __pycache__/ *.pyc # Cake - Uncomment if you are using it -# tools/** -# !tools/packages.config +#tools/** +#!tools/packages.config # Tabs Studio *.tss From a8d08b1682cf72e8449e7f74566d8f7b93ac35da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Rodr=C3=ADguez?= Date: Wed, 25 Sep 2024 10:32:07 +0200 Subject: [PATCH 088/194] Add generated libtool file and .libs/ directories --- Autotools.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Autotools.gitignore b/Autotools.gitignore index 617156f8..9a478264 100644 --- a/Autotools.gitignore +++ b/Autotools.gitignore @@ -31,7 +31,9 @@ autom4te.cache # https://www.gnu.org/software/libtool/ +/libtool /ltmain.sh +.libs/ # http://www.gnu.org/software/texinfo From 5357b0df581a0c41d4004a46e370b81eca165105 Mon Sep 17 00:00:00 2001 From: sctech <100468871+sctech-tr@users.noreply.github.com> Date: Fri, 11 Oct 2024 22:54:52 +0300 Subject: [PATCH 089/194] add libogc.gitignore (wii homebrew development) --- community/libogc.gitignore | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 community/libogc.gitignore diff --git a/community/libogc.gitignore b/community/libogc.gitignore new file mode 100644 index 00000000..d844ec60 --- /dev/null +++ b/community/libogc.gitignore @@ -0,0 +1,40 @@ +# Ignore build directories and files +build/ +*.dol +*.elf + +# Ignore Wii-specific metadata files +meta.xml +icon.png + +# Ignore temporary files created by compilers +*.o +*.bin +*.map + +# Ignore editor or IDE-specific files +.vscode/ +.idea/ +*.sublime-project +*.sublime-workspace + +# Ignore backup or temporary files +*~ +*.bak +*.swp +*.tmp + +# Ignore log files +*.log + +# Ignore libraries and dependencies +lib/ +deps/ +obj/ + +# Ignore operating system-specific files +$RECYCLE.BIN/ +.Trash-1000/ +.Spotlight-V100/ +.fseventsd/ +.DS_Store From 136e88cf4a96cc4f37828c77180ea123dd9f84c7 Mon Sep 17 00:00:00 2001 From: sctech <100468871+sctech-tr@users.noreply.github.com> Date: Fri, 11 Oct 2024 23:13:01 +0300 Subject: [PATCH 090/194] combine community/libogc.gitignore with C.gitignore --- community/libogc.gitignore | 65 ++++++++++++++++++++++++++++++++++---- 1 file changed, 58 insertions(+), 7 deletions(-) diff --git a/community/libogc.gitignore b/community/libogc.gitignore index d844ec60..76e27406 100644 --- a/community/libogc.gitignore +++ b/community/libogc.gitignore @@ -1,16 +1,10 @@ -# Ignore build directories and files +# Ignore build directories build/ -*.dol -*.elf # Ignore Wii-specific metadata files meta.xml icon.png -# Ignore temporary files created by compilers -*.o -*.bin -*.map # Ignore editor or IDE-specific files .vscode/ @@ -38,3 +32,60 @@ $RECYCLE.BIN/ .Spotlight-V100/ .fseventsd/ .DS_Store + +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf +*.o +*.bin + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex +*.dol +*.elf + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf From c1469106b9552d07a4e8f07a27987cd05ecae336 Mon Sep 17 00:00:00 2001 From: Atul Kumar <5877089+atulkumar2@users.noreply.github.com> Date: Sat, 12 Oct 2024 18:25:00 +0530 Subject: [PATCH 091/194] Jupyterlabs LSP virtual documents directory --- community/Python/JupyterNotebooks.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/community/Python/JupyterNotebooks.gitignore b/community/Python/JupyterNotebooks.gitignore index f27f90d6..f45b39de 100644 --- a/community/Python/JupyterNotebooks.gitignore +++ b/community/Python/JupyterNotebooks.gitignore @@ -8,5 +8,9 @@ profile_default/ ipython_config.py +# Jupyter lab virtual documents +# https://jupyterlab-lsp.readthedocs.io/en/2.x/Configuring.html#virtual_documents_dir +.virtual_documents/ + # Remove previous ipynb_checkpoints # git rm -r .ipynb_checkpoints/ From a3855f82b916b30d3e57805f4970ff6ef6a6fcb9 Mon Sep 17 00:00:00 2001 From: David Asabina Date: Thu, 17 Oct 2024 21:37:53 +0200 Subject: [PATCH 092/194] feat: Add Gleam 1.5.x gitignore this is useful for developers that init a gleam project into an existing git repo where the `gleam new` tool will refrain from populating the .gitignore file. This situation may occur for users of devenv.nix or flake.nix. --- Gleam.gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Gleam.gitignore diff --git a/Gleam.gitignore b/Gleam.gitignore new file mode 100644 index 00000000..599be4eb --- /dev/null +++ b/Gleam.gitignore @@ -0,0 +1,4 @@ +*.beam +*.ez +/build +erl_crash.dump From 311418f087860f0a16e7f06a9245ef8f0d40eeef Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Sat, 19 Oct 2024 12:08:00 -0400 Subject: [PATCH 093/194] Update Unity.gitignore --- Unity.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Unity.gitignore b/Unity.gitignore index 58cbc825..4fefdd2a 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -2,6 +2,7 @@ # # Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore # +.utmp/ /[Ll]ibrary/ /[Tt]emp/ /[Oo]bj/ From 51ae1adf9fb646b56f0b8f9a40f1dc685fb9d420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Nowak?= Date: Wed, 30 Oct 2024 22:24:40 +0100 Subject: [PATCH 094/194] Add ignore for .vsconfig The engine generates the file during the build. --- UnrealEngine.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 6e0d95fb..b70ad5aa 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -40,6 +40,7 @@ *.sdf *.VC.db *.VC.opendb +.vsconfig # Precompiled Assets SourceArt/**/*.png From 76bb00f3aaf817ba257ef68c3780770799911804 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 3 Nov 2024 13:36:14 -0600 Subject: [PATCH 095/194] ignore `cmake-build-debug` generated by CMake in CLion IDE --- CMake.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMake.gitignore b/CMake.gitignore index 11c76431..4a9d4283 100644 --- a/CMake.gitignore +++ b/CMake.gitignore @@ -10,3 +10,6 @@ compile_commands.json CTestTestfile.cmake _deps CMakeUserPresets.json + +# CLion +cmake-build-* From adf27650972ea7b4f798f815cfac70d0d2f8a909 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 3 Nov 2024 21:46:37 -0600 Subject: [PATCH 096/194] Updated to match Python.gitignore --- CMake.gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMake.gitignore b/CMake.gitignore index 4a9d4283..1f99f9d2 100644 --- a/CMake.gitignore +++ b/CMake.gitignore @@ -12,4 +12,8 @@ _deps CMakeUserPresets.json # CLion -cmake-build-* +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#cmake-build-* From 0c39deafa6f3488ff66e83a49e636b5302c37028 Mon Sep 17 00:00:00 2001 From: Niklas Wimmer Date: Sat, 9 Nov 2024 22:36:51 +0100 Subject: [PATCH 097/194] Fix "build" source folder being ignored (Gradle) --- Gradle.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gradle.gitignore b/Gradle.gitignore index a5b11137..296d3f00 100644 --- a/Gradle.gitignore +++ b/Gradle.gitignore @@ -1,6 +1,6 @@ .gradle **/build/ -!src/**/build/ +!**/src/**/build/ # Ignore Gradle GUI config gradle-app.setting From 5bb8f06fe633e88710d808fbe334bec384978e62 Mon Sep 17 00:00:00 2001 From: Bruno Vieira Costa Date: Mon, 11 Nov 2024 13:37:11 -0300 Subject: [PATCH 098/194] Adding .abstra/ --- Python.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 82f92755..013310b2 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -160,3 +160,7 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + +# Abstra +# Ignore directory with user credentials, local state and settings +.abstra/ From 6436b09caf3ea0f63674bf357e4846077addc6ad Mon Sep 17 00:00:00 2001 From: Jawher Kl Date: Tue, 12 Nov 2024 17:13:55 +0100 Subject: [PATCH 099/194] Create Angular.gitignore --- Angular.gitignore | 94 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 Angular.gitignore diff --git a/Angular.gitignore b/Angular.gitignore new file mode 100644 index 00000000..6dfab584 --- /dev/null +++ b/Angular.gitignore @@ -0,0 +1,94 @@ +# Angular +# Build output +/dist/ +/out-tsc/ +/tmp/ +/coverage/ +/e2e/test-output/ +/.angular/ + +# Node modules +/node_modules/ + +# Dependency directories +/.npm/ +/.yarn/ + +# Package lock and yarn lock files +/package-lock.json +/yarn.lock + +# Environment files +/.env + +# TypeScript cache files +*.tsbuildinfo + +# Debug log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# IDE directories and files +/.idea/ +/.vscode/ +/project-folder/.idea/ +/project-folder/.vscode/ + +# OS-specific files +.DS_Store +Thumbs.db + +# Temporary files +*.bak +*.swp +*~ + +# Build artifacts from Angular CLI +/.angular-cli.json +.angular/ + +# Angular CLI cache +/.ng/ + +# VS Code settings +.vscode/settings.json + +# System files +*.sublime-workspace +*.sublime-project + +# Logs +/logs +/debug.log +*.log + +# Temporary files from editor or operating system +*~.nfs* + +# JetBrains IDE (e.g., WebStorm) files +/.idea/ + +# End-to-end testing +/cypress/ + +# Firebase hosting files +firebase.json + +# Jest snapshot files +*.snap + +# Webpack config +webpack.config.js +webpack.prod.js +webpack.dev.js + +# Coverage output directory +/coverage/ + +# Test files +*.spec.ts +*.test.ts + +# Miscellaneous +/.angular/ From 0ce2e0628c82046e4fbc2918fb7dc28d6757b0db Mon Sep 17 00:00:00 2001 From: Brad Ellert <108299247+brad-ellert@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:34:02 -0700 Subject: [PATCH 100/194] Add latexindent.pl backups to TeX.gitignore --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 45e1706c..00db6487 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -267,6 +267,9 @@ TSWLatexianTemp* *.bak *.sav +# latexindent.pl +*.bak[0-9]* + # Texpad .texpadtmp From 25c63fff04713b555799241a931758eb4e09cb07 Mon Sep 17 00:00:00 2001 From: Ashwin Gopalsamy <47941624+ashwingopalsamy@users.noreply.github.com> Date: Sun, 12 Jan 2025 08:34:53 +0530 Subject: [PATCH 101/194] feat(go.gitignore): ignore code coverage and IDE --- Go.gitignore | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Go.gitignore b/Go.gitignore index 6f72f892..ed202726 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -11,8 +11,11 @@ # Test binary, built with `go test -c` *.test -# Output of the go coverage tool, specifically when used with LiteIDE +# Code coverage profiles and other test artifacts *.out +coverage.* +*.coverprofile +profile.cov # Dependency directories (remove the comment below to include it) # vendor/ @@ -23,3 +26,7 @@ go.work.sum # env file .env + +# Editor/IDE +.idea/ +.vscode/ From b35b4c52e0c75db0b1f7ef521b00f9886cf0f8c8 Mon Sep 17 00:00:00 2001 From: Ashwin Gopalsamy <47941624+ashwingopalsamy@users.noreply.github.com> Date: Sun, 12 Jan 2025 08:47:34 +0530 Subject: [PATCH 102/194] feat(Jetbrains.gitignore): Add GoLand thats missing in Jetbrains IDE list --- Global/JetBrains.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 3649d6dc..e7c0c507 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -1,4 +1,4 @@ -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Covers JetBrains IDEs: IntelliJ, GoLand, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # User-specific stuff From 1d7e3275a461a673b531d14a390c5238f04503a7 Mon Sep 17 00:00:00 2001 From: Ashwin Gopalsamy <47941624+ashwingopalsamy@users.noreply.github.com> Date: Sun, 12 Jan 2025 09:00:21 +0530 Subject: [PATCH 103/194] fix(go.gitignore): mark IDE-related ignore files as optional --- Go.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Go.gitignore b/Go.gitignore index ed202726..aaadf736 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -28,5 +28,5 @@ go.work.sum .env # Editor/IDE -.idea/ -.vscode/ +# .idea/ +# .vscode/ From f52d43edda64576954e5f60f28f17142f17636d5 Mon Sep 17 00:00:00 2001 From: krewast Date: Wed, 15 Jan 2025 16:44:57 +0100 Subject: [PATCH 104/194] Added "*.bcf-SAVE-ERROR" to TeX.gitignore --- TeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/TeX.gitignore b/TeX.gitignore index 45e1706c..5a5b1c62 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -28,6 +28,7 @@ *.bbl *.bbl-SAVE-ERROR *.bcf +*.bcf-SAVE-ERROR *.blg *-blx.aux *-blx.bib From 8108d06ddd7624d740a15a38c1aec77e64762a4e Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Mon, 20 Jan 2025 11:03:34 +0100 Subject: [PATCH 105/194] Add support for spelling package --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 45e1706c..8eee9fd6 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -202,6 +202,9 @@ _minted* # scrwfile *.wrt +# spelling +*.bad + # svg svg-inkscape/ From ab5cbc8521d2b3ad3ea59d40cfc40a278c0252cb Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Mon, 20 Jan 2025 11:06:25 +0100 Subject: [PATCH 106/194] Refine pattern --- TeX.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TeX.gitignore b/TeX.gitignore index 8eee9fd6..ffbc69cc 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -203,7 +203,7 @@ _minted* *.wrt # spelling -*.bad +*.spell.bad # svg svg-inkscape/ From 7a6c799a933e1430dee26b1741129a71fe376a80 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Mon, 20 Jan 2025 11:18:40 +0100 Subject: [PATCH 107/194] Update TeX.gitignore --- TeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/TeX.gitignore b/TeX.gitignore index ffbc69cc..5ba4795c 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -204,6 +204,7 @@ _minted* # spelling *.spell.bad +*.spell.txt # svg svg-inkscape/ From 42995a40226e204452f6ff44e8dca5235e5e84c4 Mon Sep 17 00:00:00 2001 From: draco892 Date: Thu, 23 Jan 2025 17:50:38 +0100 Subject: [PATCH 108/194] Update Flutter.gitignore remove IntelliJ related lines Co-authored-by: Tim Hunter --- Flutter.gitignore | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Flutter.gitignore b/Flutter.gitignore index 6b7cc2b9..6972700d 100644 --- a/Flutter.gitignore +++ b/Flutter.gitignore @@ -10,11 +10,6 @@ .history .svn/ -# IntelliJ related -*.iml -*.ipr -*.iws -.idea/ # Visual Studio Code related .classpath From 558146d0f57f3e808a6e4273983f788226227e95 Mon Sep 17 00:00:00 2001 From: draco892 Date: Thu, 23 Jan 2025 17:51:02 +0100 Subject: [PATCH 109/194] Update Flutter.gitignore Removed Visual Studio Code related lines Co-authored-by: Tim Hunter --- Flutter.gitignore | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Flutter.gitignore b/Flutter.gitignore index 6972700d..93c8c479 100644 --- a/Flutter.gitignore +++ b/Flutter.gitignore @@ -11,11 +11,6 @@ .svn/ -# Visual Studio Code related -.classpath -.project -.settings/ -.vscode/* # Flutter repo-specific /bin/cache/ From b607bcf970119625ef72032007ab2720e9f98f8c Mon Sep 17 00:00:00 2001 From: draco892 Date: Thu, 23 Jan 2025 17:51:37 +0100 Subject: [PATCH 110/194] Update Flutter.gitignore Remove Visual Studio Code Setting related line Co-authored-by: Tim Hunter --- Flutter.gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Flutter.gitignore b/Flutter.gitignore index 93c8c479..4a9d23c2 100644 --- a/Flutter.gitignore +++ b/Flutter.gitignore @@ -119,5 +119,4 @@ app.*.symbols !**/ios/**/default.pbxuser !**/ios/**/default.perspectivev3 !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages -!/dev/ci/**/Gemfile.lock -!.vscode/settings.json \ No newline at end of file +!/dev/ci/**/Gemfile.lock \ No newline at end of file From 4ba6b9dd42c97ed87ea7259536a61a62cdc41895 Mon Sep 17 00:00:00 2001 From: draco892 Date: Thu, 23 Jan 2025 17:52:11 +0100 Subject: [PATCH 111/194] Update Flutter.gitignore Remove Atom related line Co-authored-by: Tim Hunter --- Flutter.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Flutter.gitignore b/Flutter.gitignore index 4a9d23c2..23f20292 100644 --- a/Flutter.gitignore +++ b/Flutter.gitignore @@ -5,7 +5,6 @@ *.pyc *.swp .DS_Store -.atom/ .buildlog/ .history .svn/ From 40d480a1e91c51fa3717a67f3b49aa555343d6ec Mon Sep 17 00:00:00 2001 From: draco892 Date: Thu, 23 Jan 2025 17:52:30 +0100 Subject: [PATCH 112/194] Update Flutter.gitignore Remove SVN related line Co-authored-by: Tim Hunter --- Flutter.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Flutter.gitignore b/Flutter.gitignore index 23f20292..26238e53 100644 --- a/Flutter.gitignore +++ b/Flutter.gitignore @@ -7,7 +7,6 @@ .DS_Store .buildlog/ .history -.svn/ From 05113e5183f7544b61d2acd1c137b67482ce7007 Mon Sep 17 00:00:00 2001 From: draco892 Date: Thu, 23 Jan 2025 17:53:16 +0100 Subject: [PATCH 113/194] Update Flutter.gitignore Remove ds_Store mac os related file Co-authored-by: Tim Hunter --- Flutter.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Flutter.gitignore b/Flutter.gitignore index 26238e53..39b8814a 100644 --- a/Flutter.gitignore +++ b/Flutter.gitignore @@ -4,7 +4,6 @@ *.log *.pyc *.swp -.DS_Store .buildlog/ .history From 3aa0c1a73b3d51b4230b19f5b8e1d7233468ee9a Mon Sep 17 00:00:00 2001 From: Ananth Venkatesh Date: Fri, 24 Jan 2025 21:07:42 -0500 Subject: [PATCH 114/194] feat(nix): add .direnv very commonly used to enter Nix devshells (see https://github.com/nix-community/nix-direnv for more info) --- community/Nix.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/community/Nix.gitignore b/community/Nix.gitignore index 1fd04ef1..912e6700 100644 --- a/community/Nix.gitignore +++ b/community/Nix.gitignore @@ -1,3 +1,6 @@ # Ignore build outputs from performing a nix-build or `nix build` command result result-* + +# Ignore automatically generated direnv output +.direnv From 882b8cc98ef76d803d57a79b7cb16e20d213ef88 Mon Sep 17 00:00:00 2001 From: Wybren Koelmans Date: Sat, 1 Feb 2025 14:59:00 +0100 Subject: [PATCH 115/194] Unity Visual Scripting auto generated files https://docs.unity3d.com/Packages/com.unity.visualscripting@1.9/manual/vs-version-control.html --- Unity.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 3496b7cd..7330981c 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -71,3 +71,9 @@ crashlytics-build.properties # Temporary auto-generated Android Assets /[Aa]ssets/[Ss]treamingAssets/aa.meta /[Aa]ssets/[Ss]treamingAssets/aa/* + +# Visual Scripting auto-generated files +/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db +/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db.meta +/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Core/Property Providers +/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Core/Property Providers.meta From aa8449f5bfd9da42a447a1598e6d56339a57ea46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Tue, 4 Feb 2025 12:48:36 +0100 Subject: [PATCH 116/194] Add ARM64EC support to VisualStudio.gitignore --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index a4fe18bd..5c621aed 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -26,6 +26,7 @@ x86/ [Ww][Ii][Nn]32/ [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ +[Aa][Rr][Mm]64[Ee][Cc]/ bld/ [Bb]in/ [Oo]bj/ From a69e6a8a147497d3a2911dd31485cce6ccb6d059 Mon Sep 17 00:00:00 2001 From: Scott DePouw Date: Thu, 20 Feb 2025 20:08:23 -0500 Subject: [PATCH 117/194] Update Godot.gitignore to ignore export_credentials.cfg As of https://github.com/godotengine/godot/pull/76165, export_presets.cfg no longer contains sensitive information. Sensitive information now resides in export_credentials.cfg --- Godot.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Godot.gitignore b/Godot.gitignore index d9aac213..bb711806 100644 --- a/Godot.gitignore +++ b/Godot.gitignore @@ -4,7 +4,7 @@ # Godot-specific ignores .import/ export.cfg -export_presets.cfg +export_credentials.cfg # Imported translations (automatically generated from CSV files) *.translation From a3b250b638ccdae2b8b5eb19c543f961e10adcce Mon Sep 17 00:00:00 2001 From: Nathan Schmitt <47279783+IBXCODECAT@users.noreply.github.com> Date: Thu, 20 Feb 2025 21:57:42 -0600 Subject: [PATCH 118/194] Ignore unneeded *.blend1 blender files **Reasons for making this change:** By default, the Unity game engine supports the importing of Blender *.blend files and converts them to FBX internally (see documentation link below). Sometimes, blender stores *.blend1 files as a backup copy of your current blender file *.blend. Due to the nature of version control, redundant *.blend1 files do not need to be committed. **Links to documentation supporting these rule changes:** [Unity supported file formats](https://docs.unity3d.com/Manual/3D-formats.html) --- Unity.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index efec83d8..1ad1d115 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -11,6 +11,10 @@ /[Ll]ogs/ /[Uu]ser[Ss]ettings/ +# By default unity supports Blender asset imports, *.blend1 blender files do not need to be commited to version control. +*.blend1 +*.blend1.meta + # MemoryCaptures can get excessive in size. # They also could contain extremely sensitive data /[Mm]emoryCaptures/ From 8ff5b39b394b5fde3649d471e5c65abbcae6faa1 Mon Sep 17 00:00:00 2001 From: Dogxi Date: Mon, 24 Feb 2025 19:22:59 +0800 Subject: [PATCH 119/194] Create Nextjs.gitignore Create Nextjs.gitignore --- Nextjs.gitignore | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Nextjs.gitignore diff --git a/Nextjs.gitignore b/Nextjs.gitignore new file mode 100644 index 00000000..45c1abce --- /dev/null +++ b/Nextjs.gitignore @@ -0,0 +1,36 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local +.env + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts From d7348802cb6748ca528f1260a738862b57024213 Mon Sep 17 00:00:00 2001 From: Tim Hunter Date: Tue, 25 Feb 2025 11:36:50 -1000 Subject: [PATCH 120/194] Update PULL_REQUEST_TEMPLATE.md Updating the PR template to include a link to the contribution guidelines and a task list --- .github/PULL_REQUEST_TEMPLATE.md | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index b87add4e..2f96ca25 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,12 +1,23 @@ -**Reasons for making this change:** - +### Reasons for making this change + +_TODO_ + + +### Links to documentation supporting these rule changes _TODO_ -**Links to documentation supporting these rule changes:** + -_TODO_ +### If this is a new template -If this is a new template: +Link to application or project’s homepage: TODO - - **Link to application or project’s homepage**: _TODO_ +### Merge and Approval Steps +- [ ] Confirm that you've read the [contribution guidelines](https://github.com/github/gitignore/tree/main?tab=readme-ov-file#contributing-guidelines) and ensured your PR aligns +- [ ] Esnure CI is passing +- [ ] Get a review and Approval from one of the maintainers From 7b35656e7517d529f183f78c5ec33e3e741bd049 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Fri, 28 Feb 2025 19:56:44 -0500 Subject: [PATCH 121/194] Use a character class to ignore Icon\r directories This prevents the rule from ending in whitespace, which will get stripped by tools like Ripgrep, causing any directory named "Icon" to be invisible. --- Global/macOS.gitignore | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Global/macOS.gitignore b/Global/macOS.gitignore index 135767fc..56bb5284 100644 --- a/Global/macOS.gitignore +++ b/Global/macOS.gitignore @@ -2,9 +2,7 @@ .DS_Store .AppleDouble .LSOverride - -# Icon must end with two \r -Icon +Icon[ ] # Thumbnails ._* From 54548843e3f5831a86721a403de1da59ed053cb7 Mon Sep 17 00:00:00 2001 From: Tim Hunter Date: Mon, 3 Mar 2025 08:16:46 -1000 Subject: [PATCH 122/194] Update .github/PULL_REQUEST_TEMPLATE.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 2f96ca25..15afee7f 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -19,5 +19,5 @@ Link to application or project’s homepage: TODO ### Merge and Approval Steps - [ ] Confirm that you've read the [contribution guidelines](https://github.com/github/gitignore/tree/main?tab=readme-ov-file#contributing-guidelines) and ensured your PR aligns -- [ ] Esnure CI is passing +- [ ] Ensure CI is passing - [ ] Get a review and Approval from one of the maintainers From 1824e57c1d353ba610a3a2d9943d989582c12494 Mon Sep 17 00:00:00 2001 From: Math <175355178+maffeus@users.noreply.github.com> Date: Mon, 3 Mar 2025 23:06:57 -0300 Subject: [PATCH 123/194] Create Luau.gitignore --- Luau.gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Luau.gitignore diff --git a/Luau.gitignore b/Luau.gitignore new file mode 100644 index 00000000..91cfa313 --- /dev/null +++ b/Luau.gitignore @@ -0,0 +1,9 @@ +# Code coverage +coverage.out + +# Profiling +profile.out +profile.svg + +# Time trace +trace.json From aa95d6b79a275f8db58bb4433a862bdfe02d8bb9 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 5 Mar 2025 13:00:09 +0100 Subject: [PATCH 124/194] optimize and more readable obsidian extended gitignore --- .../Obsidian/NotesAndExtendedConfiguration.gitignore | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/community/Obsidian/NotesAndExtendedConfiguration.gitignore b/community/Obsidian/NotesAndExtendedConfiguration.gitignore index 3e0804f2..58c3f71e 100644 --- a/community/Obsidian/NotesAndExtendedConfiguration.gitignore +++ b/community/Obsidian/NotesAndExtendedConfiguration.gitignore @@ -30,9 +30,7 @@ # contain metadata (manifest.json), application code (main.js), stylesheets # (styles.css), and user-configuration data (data.json). # We only want to track data.json, so we: -# 1. exclude everything under the plugins directory recursively, -# 2. unignore the plugin directories themselves, which then allows us to -# 3. unignore the data.json files -.obsidian/plugins/**/* -!.obsidian/plugins/*/ +# 1. exclude everything that the plugin folders contain, +# 2. unignore data.json in the plugin folders +.obsidian/plugins/*/** !.obsidian/plugins/*/data.json From e82b7c85f37d66af2ec7166b93d4ebdd478a482e Mon Sep 17 00:00:00 2001 From: "Maddy Montaquila (Leger)" Date: Wed, 5 Mar 2025 17:51:17 +0000 Subject: [PATCH 125/194] First pass at dotnet gitignore --- Dotnet.gitignore | 161 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 161 insertions(+) create mode 100644 Dotnet.gitignore diff --git a/Dotnet.gitignore b/Dotnet.gitignore new file mode 100644 index 00000000..f50eed6b --- /dev/null +++ b/Dotnet.gitignore @@ -0,0 +1,161 @@ +## A streamlined .gitignore for modern .NET projects +## including temporary files, build results, and +## files generated by popular .NET tools. If you are +## developing with Visual Studio, the VS .gitignore +## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore +## has more thorough IDE-specific entries. +## +## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Web workbench (sass) +.sass-cache/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Microsoft Fakes +FakesAssemblies/ + +# MSBuild Binary and Structured Log +*.binlog + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS and VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +.vs/* +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +# but not Directory.Build.rsp, as it configures directory-level build defaults +!Directory.Build.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc \ No newline at end of file From 9dec0796bfa298be973448191ee2d40c72c1c874 Mon Sep 17 00:00:00 2001 From: "Maddy Montaquila (Leger)" Date: Wed, 5 Mar 2025 20:09:09 +0000 Subject: [PATCH 126/194] MOAR --- Dotnet.gitignore | 125 +++++++++-------------------------------------- 1 file changed, 23 insertions(+), 102 deletions(-) diff --git a/Dotnet.gitignore b/Dotnet.gitignore index f50eed6b..8cf73ec4 100644 --- a/Dotnet.gitignore +++ b/Dotnet.gitignore @@ -7,13 +7,6 @@ ## ## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore -# User-specific files -*.rsuser -*.suo -*.user -*.userosscache -*.sln.docstates - # Build results [Dd]ebug/ [Dd]ebugPublic/ @@ -30,17 +23,18 @@ bld/ [Ll]og/ [Ll]ogs/ -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* +# VS and VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace -# NUnit -*.VisualState.xml -TestResult.xml -nunit-*.xml +.vs/* -# Benchmark Results -BenchmarkDotNet.Artifacts/ +# OS Specifc +.DS_Store/* # .NET Core project.lock.json @@ -64,98 +58,25 @@ ScaffoldingReadMe.txt *.nuget.props *.nuget.targets -# Web workbench (sass) -.sass-cache/ - -# Publish Web Output -*.[Pp]ublish.xml -*.azurePubxml -# Note: Comment the next line if you want to checkin your web deploy settings, -# but database connection strings (with potential passwords) will be unencrypted -*.pubxml -*.publishproj - -# Microsoft Azure Web App publish settings. Comment the next line if you want to -# checkin your Azure Web App publish settings, but sensitive information contained -# in these scripts will be unencrypted -PublishScripts/ - -# Microsoft Azure Build Output -csx/ -*.build.csdef - -# Microsoft Azure Emulator -ecf/ -rcf/ +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates # Others -ClientBin/ ~$* *~ -*.dbmdl -*.dbproj.schemaview -*.jfm -*.pfx -*.publishsettings -orleans.codegen.cs - -# Including strong name files can present a security risk -# (https://github.com/github/gitignore/pull/2483#issue-259490424) -#*.snk - -# Since there are multiple workflows, uncomment next line to ignore bower_components -# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) -#bower_components/ - -# SQL Server files -*.mdf -*.ldf -*.ndf - -# Microsoft Fakes -FakesAssemblies/ # MSBuild Binary and Structured Log *.binlog -# Fody - auto-generated XML schema -FodyWeavers.xsd +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* -# VS and VS Code files for those working on multiple tools -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json -*.code-workspace - -.vs/* -*_i.c -*_p.c -*_h.h -*.ilk -*.meta -*.obj -*.iobj -*.pch -*.pdb -*.ipdb -*.pgc -*.pgd -*.rsp -# but not Directory.Build.rsp, as it configures directory-level build defaults -!Directory.Build.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.tmp_proj -*.log -*.tlog -*.vspscc -*.vssscc -.builds -*.pidb -*.svclog -*.scc \ No newline at end of file +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml \ No newline at end of file From 534b175305c50808e4ff7642c853bb7eff2e6364 Mon Sep 17 00:00:00 2001 From: "Maddy Montaquila (Leger)" Date: Wed, 5 Mar 2025 21:51:22 +0000 Subject: [PATCH 127/194] added rider .idea/ and removed obsolete vs files --- Dotnet.gitignore | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Dotnet.gitignore b/Dotnet.gitignore index 8cf73ec4..995a80ea 100644 --- a/Dotnet.gitignore +++ b/Dotnet.gitignore @@ -25,6 +25,7 @@ bld/ # VS and VS Code files for those working on multiple tools .vscode/* + !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json @@ -33,6 +34,9 @@ bld/ .vs/* +# Still usesd in VS for HTTP files and publish profiles +.user + # OS Specifc .DS_Store/* @@ -58,16 +62,10 @@ ScaffoldingReadMe.txt *.nuget.props *.nuget.targets -# User-specific files -*.rsuser -*.suo -*.user -*.userosscache -*.sln.docstates - # Others ~$* *~ +CodeCoverage/ # MSBuild Binary and Structured Log *.binlog @@ -79,4 +77,7 @@ ScaffoldingReadMe.txt # NUnit *.VisualState.xml TestResult.xml -nunit-*.xml \ No newline at end of file +nunit-*.xml + +# JetBrains Rider +.idea/* \ No newline at end of file From dae35c0933f938c48b5fa96ebc8641c08974c0a2 Mon Sep 17 00:00:00 2001 From: "Maddy Montaquila (Leger)" Date: Wed, 5 Mar 2025 23:14:06 +0000 Subject: [PATCH 128/194] more tweaks --- Dotnet.gitignore | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Dotnet.gitignore b/Dotnet.gitignore index 995a80ea..27e5ac32 100644 --- a/Dotnet.gitignore +++ b/Dotnet.gitignore @@ -52,15 +52,6 @@ ScaffoldingReadMe.txt *.nupkg # NuGet Symbol Packages *.snupkg -# The packages folder can be ignored because of Package Restore -**/[Pp]ackages/* -# except build/, which is used as an MSBuild target. -!**/[Pp]ackages/build/ -# Uncomment if necessary however generally it will be regenerated when needed -#!**/[Pp]ackages/repositories.config -# NuGet v3's project.json files produces more ignorable files -*.nuget.props -*.nuget.targets # Others ~$* From 8aa61b8d34fc231bc59c5af09f99f1767c7c9125 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 9 Jun 2024 01:29:50 +0300 Subject: [PATCH 129/194] Add mise.gitignore https://mise.jdx.dev/ --- Global/mise.gitignore | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Global/mise.gitignore diff --git a/Global/mise.gitignore b/Global/mise.gitignore new file mode 100644 index 00000000..987d1816 --- /dev/null +++ b/Global/mise.gitignore @@ -0,0 +1,17 @@ +# https://mise.jdx.dev/configuration.html +# https://mise.jdx.dev/configuration/environments.html +/.mise.*.local.toml +/.mise.local.toml +/mise.*.local.toml +/mise.local.toml +/.mise/config.local.toml +/.mise/config.*.local.toml +/mise/config.local.toml +/mise/config.*.local.toml +/.config/mise.local.toml +/.config/mise.*.local.toml +/.config/mise/config.local.toml +/.config/mise/config.*.local.toml + +# https://mise.jdx.dev/configuration.html#tool-versions +#/.tool-versions From d4fe781ae8e0a4f93eff58a6f1e629200e7494fc Mon Sep 17 00:00:00 2001 From: Math <175355178+maffeus@users.noreply.github.com> Date: Fri, 7 Mar 2025 17:30:22 -0300 Subject: [PATCH 130/194] Add short description and link to Luau repo --- Luau.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Luau.gitignore b/Luau.gitignore index 91cfa313..f7ecbc96 100644 --- a/Luau.gitignore +++ b/Luau.gitignore @@ -1,3 +1,8 @@ +# A fast, small, safe, gradually typed embeddable scripting language derived from Lua +# +# https://github.com/luau-lang/luau +# https://luau.org/ + # Code coverage coverage.out From 1235fcdff576dde1c0b92c5bb69979a53ac46660 Mon Sep 17 00:00:00 2001 From: "Maddy Montaquila (Leger)" Date: Mon, 10 Mar 2025 17:48:37 +0000 Subject: [PATCH 131/194] removing OS and IDE specific content --- Dotnet.gitignore | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/Dotnet.gitignore b/Dotnet.gitignore index 27e5ac32..35063fc7 100644 --- a/Dotnet.gitignore +++ b/Dotnet.gitignore @@ -23,23 +23,6 @@ bld/ [Ll]og/ [Ll]ogs/ -# VS and VS Code files for those working on multiple tools -.vscode/* - -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json -*.code-workspace - -.vs/* - -# Still usesd in VS for HTTP files and publish profiles -.user - -# OS Specifc -.DS_Store/* - # .NET Core project.lock.json project.fragment.lock.json @@ -68,7 +51,4 @@ CodeCoverage/ # NUnit *.VisualState.xml TestResult.xml -nunit-*.xml - -# JetBrains Rider -.idea/* \ No newline at end of file +nunit-*.xml \ No newline at end of file From 016cd48bd44dea66914a64f03571c07bd17ff300 Mon Sep 17 00:00:00 2001 From: Aakash Jog Date: Mon, 10 Mar 2025 21:52:37 +0200 Subject: [PATCH 132/194] Add .loc to TeX.gitignore Add *.loc (auxiliary files generated by the `changes` package) to TeX.gitignore --- TeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/TeX.gitignore b/TeX.gitignore index 5a5b1c62..297d6552 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -67,6 +67,7 @@ acs-*.bib # changes *.soc +*.loc # comment *.cut From fdc1acb1bc77a8ba34b456a69dda84574f4c7c69 Mon Sep 17 00:00:00 2001 From: Matt Walsh <51417385+netbymatt@users.noreply.github.com> Date: Thu, 13 Mar 2025 13:07:41 -0500 Subject: [PATCH 133/194] Update TwinCAT3.gitignore A recent major revision from Beckhoff added several new suggested lines to gitignore. All existing items are still present, however the new file has been copied verbatim from TwinCAT documentation. https://infosys.beckhoff.com/english.php?content=../content/1033/tc3_sourcecontrol/14604066827.html&id= --- TwinCAT3.gitignore | 58 ++++++++++++++++++++++++++++++++-------------- 1 file changed, 41 insertions(+), 17 deletions(-) diff --git a/TwinCAT3.gitignore b/TwinCAT3.gitignore index 7bd6f875..4037daf1 100644 --- a/TwinCAT3.gitignore +++ b/TwinCAT3.gitignore @@ -1,25 +1,49 @@ -# gitignore template for TwinCAT3 +### TwinCAT3 ### # website: https://www.beckhoff.com/twincat3/ -# -# Recommended: VisualStudio.gitignore -# TwinCAT files +# TwinCAT PLC +*.plcproj.bak +*.plcproj.orig *.tpy *.tclrs +*.library *.compiled-library *.compileinfo -# Don't include the tmc-file rule if either of the following is true: -# 1. You've got TwinCAT C++ projects, as the information in the TMC-file is created manually for the C++ projects (in that case, only (manually) ignore the tmc-files for the PLC projects) -# 2. You've created a standalone PLC-project and added events to it, as these are stored in the TMC-file. -*.tmc -*.tmcRefac -*.library -*.project.~u -*.tsproj.bak -*.xti.bak +*.asm +*.core LineIDs.dbg LineIDs.dbg.bak -_Boot/ -_CompileInfo/ -_Libraries/ -_ModuleInstall/ \ No newline at end of file + +# TwinCAT C++ and shared types +# ignoring the TMC file is only useful for plain PLC programming +# as soon as shared data types (via tmc), C++ or in general TcCom-Module are used, the TMC file has to be part of the repository +*.tmc +*.tmcRefac + +# TwinCAT project files +*.tsproj.bak +*.tsproj.b?k +*.tsproj.orig +*.xti.bak +*.xti.bk? +*.xti.orig +*.xtv +*.xtv.bak +*.xtv.bk? + +# Multiuser specific +**/.TcGit/ + +# exclude not required folders +**/_Boot/ +**/_CompileInfo/ +**/_Libraries/ +**/_ModuleInstall/ +**/_Deployment/ +**/_Repository/ + +# VS Shell project specific files and folders +**/.vs/ +*.~u +*.project.~u +*.suo From 3400c8a214111a6b09826f693ef0215b4976c5a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 17 Mar 2025 09:48:33 +0200 Subject: [PATCH 134/194] Simplify mise ignores, make better applicable to monorepos --- Global/mise.gitignore | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/Global/mise.gitignore b/Global/mise.gitignore index 987d1816..2f44750e 100644 --- a/Global/mise.gitignore +++ b/Global/mise.gitignore @@ -1,17 +1,11 @@ # https://mise.jdx.dev/configuration.html # https://mise.jdx.dev/configuration/environments.html -/.mise.*.local.toml -/.mise.local.toml -/mise.*.local.toml -/mise.local.toml -/.mise/config.local.toml -/.mise/config.*.local.toml -/mise/config.local.toml -/mise/config.*.local.toml -/.config/mise.local.toml -/.config/mise.*.local.toml -/.config/mise/config.local.toml -/.config/mise/config.*.local.toml +.mise.*.local.toml +.mise.local.toml +mise.*.local.toml +mise.local.toml +.mise/*.local.toml +mise/*.local.toml # https://mise.jdx.dev/configuration.html#tool-versions -#/.tool-versions +#.tool-versions From dcb59cbf161e310ff99fd8035f6e98fb0f4005ae Mon Sep 17 00:00:00 2001 From: Martin Grosche Date: Wed, 19 Mar 2025 15:33:24 +0100 Subject: [PATCH 135/194] Update tool naming --- ECU-TEST.gitignore => ecu.test.gitignore | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) rename ECU-TEST.gitignore => ecu.test.gitignore (75%) diff --git a/ECU-TEST.gitignore b/ecu.test.gitignore similarity index 75% rename from ECU-TEST.gitignore rename to ecu.test.gitignore index d25ba945..1c4c0240 100644 --- a/ECU-TEST.gitignore +++ b/ecu.test.gitignore @@ -1,11 +1,11 @@ -# gitignore template for ECU-TEST workspaces - by TraceTronic https://tracetronic.com +# gitignore template for ecu.test workspaces - by TraceTronic https://tracetronic.com # website: https://www.ecu-test.com -# * all directories are related to the default directories, please adapt the .gitignore if you use customized -# directories +# * all directories are related to the default directories, please adapt the .gitignore if you use customized directories # Dynamic workspace settings -# * We don't recommend to ignore the .workspace directory, because of important project specific settings -# local user settings +# * We don't recommend to ignore the .workspace directory, because of important +# * project specific settings +# * local user settings .workspace/ETdrive.xml .workspace/favorites.xml .workspace/filters.xml @@ -25,7 +25,7 @@ .workspace/traceexplorer.xml # Custom file formats and test dependencies -# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks +# * you can manage your artifacts also with test.guide (https://www.test-guide.info) and reference them via Playbooks *.arxml *.a2l *.dbc @@ -36,16 +36,15 @@ # Test results and test execution related content # * Git is not intended to store and provide test results for all iterations -# * We recommend to use TEST-GUIDE (https://www.test-guide.info) for the test report management +# * We recommend to use test.guide (https://www.test-guide.info) for the test report management TestReports # Report generators and templates -# * if you want to provide (f.e.) your own report generators exclude the directory here and ignore only the -# unnecessary subdirectories +# * if you want to provide (f.e.) your own report generators exclude the directory here and ignore only the unnecessary subdirectories Templates # Exclude large binary artifacts -# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks +# * you can manage your artifacts also with test.guide (https://www.test-guide.info) and reference them via Playbooks Offline-FIUs Offline-Models Offline-SGBDs From 7a4a857dac945d78ab9d406b5158d9e8a7749125 Mon Sep 17 00:00:00 2001 From: Martin Grosche Date: Fri, 21 Mar 2025 08:07:55 +0100 Subject: [PATCH 136/194] Update .gitignore to include additional workspace and Python library files up to ecu.test 2025.1 --- ecu.test.gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ecu.test.gitignore b/ecu.test.gitignore index 1c4c0240..a8d07920 100644 --- a/ecu.test.gitignore +++ b/ecu.test.gitignore @@ -19,7 +19,9 @@ .workspace/tooladapter.xml .workspace/view.xml # optional, if your process depends on this file remove exclusion +.workspace/attributeLists.xml .workspace/interactiveexecution.xml +.workspace/protocol.xml .workspace/pythonlibrary.xml # deprecated, support for older versions .workspace/traceexplorer.xml @@ -40,9 +42,12 @@ TestReports # Report generators and templates -# * if you want to provide (f.e.) your own report generators exclude the directory here and ignore only the unnecessary subdirectories +# * if you want to provide (f.e.) your own report generators exclude the directory here and ignore only the unnecessary subdirectories Templates +# optional, default for external Python libraries +PyLibs + # Exclude large binary artifacts # * you can manage your artifacts also with test.guide (https://www.test-guide.info) and reference them via Playbooks Offline-FIUs From 3dc0b4878cd8a8e061221c16b5a5a9293653ed84 Mon Sep 17 00:00:00 2001 From: Martin Grosche Date: Fri, 21 Mar 2025 09:01:14 +0100 Subject: [PATCH 137/194] Update company naming --- ecu.test.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecu.test.gitignore b/ecu.test.gitignore index a8d07920..4514f440 100644 --- a/ecu.test.gitignore +++ b/ecu.test.gitignore @@ -1,4 +1,4 @@ -# gitignore template for ecu.test workspaces - by TraceTronic https://tracetronic.com +# gitignore template for ecu.test workspaces - by tracetronic https://tracetronic.com # website: https://www.ecu-test.com # * all directories are related to the default directories, please adapt the .gitignore if you use customized directories From 87d93eeb2e7d11e16f8e88d8b8150323e1e641b0 Mon Sep 17 00:00:00 2001 From: Bart Laarhoven Date: Mon, 24 Mar 2025 10:06:41 +0100 Subject: [PATCH 138/194] Ignore .idea/sonarlint.xml As mentioned in https://community.sonarsource.com/t/is-the-file-idea-idea-idea-sonarlint-xml-intended-to-be-under-source-control/121119, the `sonarlint.xml` file should be in the `.gitignore`. --- Global/JetBrains.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 3649d6dc..640821ac 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -63,6 +63,7 @@ atlassian-ide-plugin.xml # SonarLint plugin .idea/sonarlint/ +.idea/sonarlint.xml # see https://community.sonarsource.com/t/is-the-file-idea-idea-idea-sonarlint-xml-intended-to-be-under-source-control/121119 # Crashlytics plugin (for Android Studio and IntelliJ) com_crashlytics_export_strings.xml From ab7e5f6994ef70b790f4800eb0ea82a9e11b665e Mon Sep 17 00:00:00 2001 From: Alessandro Cuttin Date: Wed, 26 Mar 2025 16:32:19 +0100 Subject: [PATCH 139/194] Added .atfi extension for package attachfile2 --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index 5a5b1c62..b3d3d7f6 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -59,6 +59,9 @@ acs-*.bib # amsthm *.thm +# attachfile2 +*.atfi + # beamer *.nav *.pre From 5d9130efadbeb69bd91aed873ef50b579c14d635 Mon Sep 17 00:00:00 2001 From: Shannja <103908889+Shannja@users.noreply.github.com> Date: Sun, 30 Mar 2025 20:08:36 -0500 Subject: [PATCH 140/194] Update Unity.gitignore --- Unity.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Unity.gitignore b/Unity.gitignore index efec83d8..96ae0de9 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -10,6 +10,7 @@ /[Bb]uilds/ /[Ll]ogs/ /[Uu]ser[Ss]ettings/ +*.log # MemoryCaptures can get excessive in size. # They also could contain extremely sensitive data From c843504839b6b219fe1174afc7a25bf53483123a Mon Sep 17 00:00:00 2001 From: Capi Etheriel Date: Mon, 31 Mar 2025 15:39:25 -0300 Subject: [PATCH 141/194] Add Dotter.gitnore --- community/Dotter.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 community/Dotter.gitignore diff --git a/community/Dotter.gitignore b/community/Dotter.gitignore new file mode 100644 index 00000000..86e82e8c --- /dev/null +++ b/community/Dotter.gitignore @@ -0,0 +1,6 @@ +# local files are for host-specific overrides +.dotter/local.toml + +# ignore caches +.dotter/cache.toml +.dotter/cache From 71558441e9df93c271ff3b07ea98ec064b775a06 Mon Sep 17 00:00:00 2001 From: Matt Alexander Date: Mon, 31 Mar 2025 22:52:38 -0500 Subject: [PATCH 142/194] Update Linux.gitignore --- Global/Linux.gitignore | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index 2ea12bbf..35ea8c67 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -3,7 +3,7 @@ # temporary files which can be created if a process still has a handle open of a deleted file .fuse_hidden* -# KDE directory preferences +# Metadata left by Dolphin file manager, which comes with KDE Plasma .directory # Linux trash folder which might appear on any partition or disk @@ -14,6 +14,3 @@ # Log files created by default by the nohup command nohup.out - -# Metadata left by Dolphin file manager, which comes with KDE Plasma -.directory From 63d066391fe93f98871b9a43df0f10f8366b8c03 Mon Sep 17 00:00:00 2001 From: Anish Mishra Date: Mon, 7 Apr 2025 23:12:04 +0530 Subject: [PATCH 143/194] Add nomedia file to Godot.gitignore This file is only needed for Android Editor and automatically generated if missing. No need to track it. --- Godot.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Godot.gitignore b/Godot.gitignore index bb711806..50335d9d 100644 --- a/Godot.gitignore +++ b/Godot.gitignore @@ -1,5 +1,6 @@ # Godot 4+ specific ignores .godot/ +.nomedia # Godot-specific ignores .import/ From 5c4badd74090fcdb9cc942ba0959718c84b3e1e1 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Sat, 12 Apr 2025 11:29:59 +0200 Subject: [PATCH 144/194] Refine minted rules --- TeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/TeX.gitignore b/TeX.gitignore index 5a5b1c62..dcb1021b 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -175,6 +175,7 @@ acs-*.bib *.stc[0-9]* # minted +*.data.minted _minted* *.pyg From a0e5b9d545cdd063130cda2ffb22304eaa6d5f9a Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Sat, 12 Apr 2025 11:32:16 +0200 Subject: [PATCH 145/194] Fix ordering --- TeX.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TeX.gitignore b/TeX.gitignore index dcb1021b..e9c5a72e 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -175,8 +175,8 @@ acs-*.bib *.stc[0-9]* # minted -*.data.minted _minted* +*.data.minted *.pyg # morewrites From c831d190f681b00080d12bfe4982a3bceac5ddf7 Mon Sep 17 00:00:00 2001 From: Nicholas Wilson Date: Mon, 21 Apr 2025 11:55:31 -0500 Subject: [PATCH 146/194] chore(links): replace URLs with HTTPS for better security --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c43b1d0e..1635822e 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ the following resources are a great place to start: - The [Ignoring Files article][help] on the GitHub Help site. - The [gitignore(5)][man] manual page. -[man]: http://git-scm.com/docs/gitignore +[man]: https://git-scm.com/docs/gitignore [help]: https://help.github.com/articles/ignoring-files [chapter]: https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring -[progit]: http://git-scm.com/book +[progit]: https://git-scm.com/book ## Folder structure From 4ed7892d1ad3dc647fee77004dc5a51a8d8184ea Mon Sep 17 00:00:00 2001 From: Dan Cassidy <5643061+rux616@users.noreply.github.com> Date: Thu, 24 Apr 2025 11:35:50 +1200 Subject: [PATCH 147/194] Ignore all .terraform directories Changes to using the `foo/` naming pattern to ensure that these directories will be ignored at all depths. --- Terraform.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terraform.gitignore b/Terraform.gitignore index 2faf43d0..6349e361 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -1,5 +1,5 @@ # Local .terraform directories -**/.terraform/* +.terraform/ # .tfstate files *.tfstate From 86a7d7dbadb8f8aa25943dfb9dd8911d154f4278 Mon Sep 17 00:00:00 2001 From: ralphmcralph Date: Fri, 25 Apr 2025 10:23:37 +0200 Subject: [PATCH 148/194] Add .gitignore template for Solidity + Remix --- Solidity-Remix.gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Solidity-Remix.gitignore diff --git a/Solidity-Remix.gitignore b/Solidity-Remix.gitignore new file mode 100644 index 00000000..a49555a4 --- /dev/null +++ b/Solidity-Remix.gitignore @@ -0,0 +1,15 @@ +# Remix compiler artifacts +**/artifacts/ +**/artifacts/** + +# Remix plugin state folders +deps/ +states/ + +# Debug info +*.dbg.json +*.tsbuildinfo + +# Optional +.env +.env.local \ No newline at end of file From b71782331f15039c1ff14e6fa8594b24ad8f6bcd Mon Sep 17 00:00:00 2001 From: grafst Date: Mon, 28 Apr 2025 16:38:03 +0200 Subject: [PATCH 149/194] add .ansible/ folder to ansible.gitignore it is used for local caches, pws and tempfiles --- Global/Ansible.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Global/Ansible.gitignore b/Global/Ansible.gitignore index a8b42eb6..7eaa6e28 100644 --- a/Global/Ansible.gitignore +++ b/Global/Ansible.gitignore @@ -1 +1,2 @@ *.retry +.ansible/ From 7e9487fe98e57a7e0807d2487b0dddaff57467f6 Mon Sep 17 00:00:00 2001 From: matnorri Date: Wed, 30 Apr 2025 09:32:09 -0400 Subject: [PATCH 150/194] feat(LangChain.gitignore): ignore LangGraph Ignore LangGraph artifacts, e.g., pickle files. --- LangChain.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 LangChain.gitignore diff --git a/LangChain.gitignore b/LangChain.gitignore new file mode 100644 index 00000000..c76ebfd9 --- /dev/null +++ b/LangChain.gitignore @@ -0,0 +1,6 @@ +# gitignore template for LangChain products, e.g., LangGraph, LangSmith +# website: https://www.langchain.com/ +# website: https://www.langchain.com/langgraph + +# LangGraph +.langgraph_api/ From 10164d7048233e6e482e31bb3587784cfa4e2a5e Mon Sep 17 00:00:00 2001 From: Guilherme Arcoverde Date: Fri, 2 May 2025 12:51:41 -0300 Subject: [PATCH 151/194] Add .aws-sam/ to ignore AWS SAM build artifacts --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 93df31bc..a306c963 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -355,6 +355,9 @@ ASALocalRun/ # MSBuild Binary and Structured Log *.binlog +# AWS SAM Build and Temporary Artifacts folder +.aws-sam + # NVidia Nsight GPU debugger configuration file *.nvuser From 982fb519b37362d02028ab8588953a9a597d4c61 Mon Sep 17 00:00:00 2001 From: Daniel Johnson Date: Fri, 2 May 2025 15:04:54 -0700 Subject: [PATCH 152/194] Create CODEOWNERS --- .github/CODEOWNERS | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..31234448 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,7 @@ +# Order is important. The LAST matching pattern has the MOST precedence. +# gitignore style patterns are used, not globs. +# https://docs.github.com/articles/about-codeowners +# https://git-scm.com/docs/gitignore + +# Catch All - Defer to the gitignore maintainers +* @github/gitignore-maintainers From 5577a312321be1fd88161207cee0a5a7dad6f376 Mon Sep 17 00:00:00 2001 From: Lucas Liu Date: Wed, 14 May 2025 11:35:31 +0800 Subject: [PATCH 153/194] add .cursorrules --- Python.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 0a197900..f5fd27f8 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -172,3 +172,9 @@ cython_debug/ # PyPI configuration file .pypirc + +# Cursor +# Cursor is a code editor integrated with LLM. `.cursorrules` is its project-level configuration file, +# refer to https://docs.cursor.com/context/rules, which is used to customize the code generation rules of AI +.cursorrules +.cursor/rules \ No newline at end of file From a642376bb2baca1742c7061e47d9386dd18ade0c Mon Sep 17 00:00:00 2001 From: Lucas Liu Date: Thu, 15 May 2025 09:10:29 +0800 Subject: [PATCH 154/194] add .cursorignore --- Python.gitignore | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Python.gitignore b/Python.gitignore index f5fd27f8..dd15ec48 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -173,8 +173,9 @@ cython_debug/ # PyPI configuration file .pypirc -# Cursor -# Cursor is a code editor integrated with LLM. `.cursorrules` is its project-level configuration file, -# refer to https://docs.cursor.com/context/rules, which is used to customize the code generation rules of AI -.cursorrules -.cursor/rules \ No newline at end of file +# Cursor +# Cursor is an AI-powered code editor.`.cursorignore` specifies files/directories to +# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data +# refer to https://docs.cursor.com/context/ignore-files +.cursorignore +.cursorindexingignore \ No newline at end of file From 426abd86128e3631c60918649b4aa91d360673d2 Mon Sep 17 00:00:00 2001 From: Devin Dooley Date: Fri, 16 May 2025 20:22:27 +0000 Subject: [PATCH 155/194] Configure stalebot in dry-run mode --- .github/workflow/stale.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflow/stale.yml diff --git a/.github/workflow/stale.yml b/.github/workflow/stale.yml new file mode 100644 index 00000000..5f51ae20 --- /dev/null +++ b/.github/workflow/stale.yml @@ -0,0 +1,32 @@ +name: Stale + +# **What it does**: Close pull requests after no updates for 180 days. +# **Why we have it**: This repository gets a lot of PRs, and the maintainers team is small. +# This helps reduce the open PRs to ones that are most desired by the community. +# **Who does it impact**: Contributors and maintainers of github/gitignore. + +on: + schedule: + - cron: '20 16 * * *' # Run every day at 16:20 UTC / 8:20 PST + +permissions: + actions: write + contents: write # only for delete-branch option + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 + with: + stale-pr-message: 'This PR is stale because there have been no updates in 90 days. It will close after 180 days of inactivity. Leave a comment if you want to keep it open :smile:' + close-pr-message: 'This PR has been closed because it was inactive for 180 days. If you want to continue working on it, please open a new PR.' + days-before-stale: 90 + days-before-close: 180 + stale-pr-label: 'stale' + exempt-pr-labels: 'keep' + close-issue-reason: not_planned + ascending: true # Sort PRs by last updated date in ascending order + debug-only: true # Set to true to test the action without actually closing any PRs From c682e17a2bdbaaef76289afd437b889b08bef078 Mon Sep 17 00:00:00 2001 From: Devin Dooley Date: Sat, 17 May 2025 19:34:04 +0000 Subject: [PATCH 156/194] Move .github/workflow to .github/workflows --- .github/{workflow => workflows}/stale.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{workflow => workflows}/stale.yml (100%) diff --git a/.github/workflow/stale.yml b/.github/workflows/stale.yml similarity index 100% rename from .github/workflow/stale.yml rename to .github/workflows/stale.yml From 012a024a8d2a015c368ef2db54236818cc916fe8 Mon Sep 17 00:00:00 2001 From: Devin Dooley Date: Mon, 19 May 2025 18:20:26 +0000 Subject: [PATCH 157/194] Restore trailing newline in Python.gitignore --- Python.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Python.gitignore b/Python.gitignore index dd15ec48..651a6d10 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -173,9 +173,9 @@ cython_debug/ # PyPI configuration file .pypirc -# Cursor -# Cursor is an AI-powered code editor.`.cursorignore` specifies files/directories to +# Cursor +# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data # refer to https://docs.cursor.com/context/ignore-files .cursorignore -.cursorindexingignore \ No newline at end of file +.cursorindexingignore From bf0e0fdbfbf48930a02b631447a3919672631e66 Mon Sep 17 00:00:00 2001 From: Devin Dooley Date: Tue, 20 May 2025 22:42:24 +0000 Subject: [PATCH 158/194] Run stale workflow without debug-only mode --- .github/workflows/stale.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 5f51ae20..8c8b0ddf 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -29,4 +29,3 @@ jobs: exempt-pr-labels: 'keep' close-issue-reason: not_planned ascending: true # Sort PRs by last updated date in ascending order - debug-only: true # Set to true to test the action without actually closing any PRs From 17441027c3376ecef5c8d8241c4ff424c6ef9122 Mon Sep 17 00:00:00 2001 From: Wuhall Date: Wed, 21 May 2025 17:12:50 +0800 Subject: [PATCH 159/194] add Cursor.gitignore --- Global/Cursor.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Global/Cursor.gitignore diff --git a/Global/Cursor.gitignore b/Global/Cursor.gitignore new file mode 100644 index 00000000..0166b012 --- /dev/null +++ b/Global/Cursor.gitignore @@ -0,0 +1,3 @@ +.vscode/* +.cursorignore +.cursorindexingignore From 48b1054d9d2af3b3fc1a7161fe96e970a37b81a9 Mon Sep 17 00:00:00 2001 From: Wuhall Date: Thu, 22 May 2025 08:41:23 +0800 Subject: [PATCH 160/194] Remove .vscode/* --- Global/Cursor.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Global/Cursor.gitignore b/Global/Cursor.gitignore index 0166b012..234f905b 100644 --- a/Global/Cursor.gitignore +++ b/Global/Cursor.gitignore @@ -1,3 +1,2 @@ -.vscode/* .cursorignore .cursorindexingignore From 3cb11f3091334d08d8770ff2797a1e84211c8a7a Mon Sep 17 00:00:00 2001 From: Frank Ebel Date: Thu, 22 May 2025 14:56:38 +0200 Subject: [PATCH 161/194] feat(Julia): ignore all Manifest files --- Julia.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Julia.gitignore b/Julia.gitignore index 29126e47..9a2ea08d 100644 --- a/Julia.gitignore +++ b/Julia.gitignore @@ -21,4 +21,4 @@ docs/site/ # It records a fixed state of all packages used by the project. As such, it should not be # committed for packages, but should be committed for applications that require a static # environment. -Manifest.toml +Manifest*.toml From 9672d15dabdd5861793691f183ec9f05c2a2c953 Mon Sep 17 00:00:00 2001 From: Daniel Johnson Date: Fri, 23 May 2025 14:11:31 -0700 Subject: [PATCH 162/194] Moves Nix.gitignore to root because popular The Nix repo(https://github.com/NixOS/nix) has over 14k stars and over 1k clones. I believe this project is widely used and popular enough to move to the root now. --- community/Nix.gitignore => Nix.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename community/Nix.gitignore => Nix.gitignore (100%) diff --git a/community/Nix.gitignore b/Nix.gitignore similarity index 100% rename from community/Nix.gitignore rename to Nix.gitignore From 55bb9508aec142dd6d6e85e6bd01a80fe50186a8 Mon Sep 17 00:00:00 2001 From: Max <43377490+max-hill-4@users.noreply.github.com> Date: Fri, 23 May 2025 21:39:08 +0000 Subject: [PATCH 163/194] Update Python.gitignore --- Python.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 651a6d10..6f694c32 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -167,6 +167,13 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +# Visual Studio Code +# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore +# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore +# and can be added to the global gitignore or merged into this file. However, if you prefer, +# you could uncomment the following to ignore the enitre vscode folder +# .vscode/ + # Ruff stuff: .ruff_cache/ From 107b0b483821a46f217a90321adf0f5307e09c50 Mon Sep 17 00:00:00 2001 From: Dmitry Maganov Date: Sun, 25 May 2025 06:13:54 +0300 Subject: [PATCH 164/194] Add `.haxelsp/recording/` --- Haxe.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Haxe.gitignore b/Haxe.gitignore index 4891a0ff..efafc9e9 100644 --- a/Haxe.gitignore +++ b/Haxe.gitignore @@ -1,2 +1,3 @@ .haxelib/ +.haxelsp/recording/ dump/ From 6578d74599385ec36ef4a6d8ff98e8c19b4149b8 Mon Sep 17 00:00:00 2001 From: Jawher Kl Date: Sun, 25 May 2025 16:45:43 +0100 Subject: [PATCH 165/194] Update Angular.gitignore --- Angular.gitignore | 84 +++++------------------------------------------ 1 file changed, 9 insertions(+), 75 deletions(-) diff --git a/Angular.gitignore b/Angular.gitignore index 6dfab584..0383c3a5 100644 --- a/Angular.gitignore +++ b/Angular.gitignore @@ -1,94 +1,28 @@ -# Angular -# Build output +# Angular specific /dist/ /out-tsc/ /tmp/ /coverage/ /e2e/test-output/ /.angular/ +.angular/ -# Node modules +# Node modules and dependency files /node_modules/ - -# Dependency directories -/.npm/ -/.yarn/ - -# Package lock and yarn lock files /package-lock.json /yarn.lock # Environment files /.env -# TypeScript cache files +# Angular CLI and build artefacts +/.angular-cli.json +/.ng/ + +# TypeScript cache *.tsbuildinfo -# Debug log files +# Logs npm-debug.log* yarn-debug.log* yarn-error.log* - -# IDE directories and files -/.idea/ -/.vscode/ -/project-folder/.idea/ -/project-folder/.vscode/ - -# OS-specific files -.DS_Store -Thumbs.db - -# Temporary files -*.bak -*.swp -*~ - -# Build artifacts from Angular CLI -/.angular-cli.json -.angular/ - -# Angular CLI cache -/.ng/ - -# VS Code settings -.vscode/settings.json - -# System files -*.sublime-workspace -*.sublime-project - -# Logs -/logs -/debug.log -*.log - -# Temporary files from editor or operating system -*~.nfs* - -# JetBrains IDE (e.g., WebStorm) files -/.idea/ - -# End-to-end testing -/cypress/ - -# Firebase hosting files -firebase.json - -# Jest snapshot files -*.snap - -# Webpack config -webpack.config.js -webpack.prod.js -webpack.dev.js - -# Coverage output directory -/coverage/ - -# Test files -*.spec.ts -*.test.ts - -# Miscellaneous -/.angular/ From 6bc658a1c703c9a296cec51bdce92c009867601a Mon Sep 17 00:00:00 2001 From: oittaa <8972248+oittaa@users.noreply.github.com> Date: Sun, 25 May 2025 21:22:56 +0200 Subject: [PATCH 166/194] Zig.gitignore add *.o $ zig version 0.14.1 If you run `zig build-exe myfile.zig` it will generate myfile.o in addition to the executable in the current directory. I think those should be ignored even though they are usually in the zig-out directory if you use the proper build system. --- Zig.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Zig.gitignore b/Zig.gitignore index 3389c86c..0180838a 100644 --- a/Zig.gitignore +++ b/Zig.gitignore @@ -1,2 +1,3 @@ .zig-cache/ zig-out/ +*.o From 90c3bc712bc11378dd425d3d478df5032066696c Mon Sep 17 00:00:00 2001 From: Nathaniel Young Date: Fri, 30 May 2025 22:47:20 +0000 Subject: [PATCH 167/194] fixes spelling in in Python.gitignore in VS Code section --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 7b004e51..bda86c7c 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -177,7 +177,7 @@ cython_debug/ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore # and can be added to the global gitignore or merged into this file. However, if you prefer, -# you could uncomment the following to ignore the enitre vscode folder +# you could uncomment the following to ignore the entire vscode folder # .vscode/ # Ruff stuff: From daf38183c7dd59e77a7de21e0cef55749ddfc4a4 Mon Sep 17 00:00:00 2001 From: vicman7 Date: Sat, 31 May 2025 16:00:30 -0500 Subject: [PATCH 168/194] Add poetry.toml to Python.gitignore --- Python.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index bda86c7c..2cd3f639 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -106,6 +106,7 @@ ipython_config.py # commonly ignored for libraries. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control #poetry.lock +#poetry.toml # pdm # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. @@ -191,4 +192,4 @@ cython_debug/ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data # refer to https://docs.cursor.com/context/ignore-files .cursorignore -.cursorindexingignore \ No newline at end of file +.cursorindexingignore From 3741d6f73fbd3b5987c510a406a2ec37fe43abf0 Mon Sep 17 00:00:00 2001 From: oxygen-dioxide <54425948+oxygen-dioxide@users.noreply.github.com> Date: Tue, 3 Jun 2025 21:22:33 +0800 Subject: [PATCH 169/194] Update UTAU.gitignore --- community/UTAU.gitignore | 50 ++++++++++++++++++++++++++++++---------- 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/community/UTAU.gitignore b/community/UTAU.gitignore index fae63fec..32991582 100644 --- a/community/UTAU.gitignore +++ b/community/UTAU.gitignore @@ -1,17 +1,34 @@ -#This gitignore file is created for UTAU (and other singing voice synthesizers) voicebank development -#example repo: https://github.com/oxygen-dioxide/hitsuboku-kumi-chn/ - #Adobe Audition *.pkf -#UTAU -*.frq -*.mrq -*.llsm -*.pmk -*.vs4ufrq -*.frc +#UTAU Engines +*.ctspec +*.d4c *.dio +*.frc +*.frt +*.frq +*.harvest +*.lessaudio +*.llsm +*.mrq +*.pitchtier +*.pkf +*.platinum +*.pmk +*.sc.npz +*.star +*.uspec +*.vs4ufrq + +#UTAU related tools +$read +*.setParam-Scache +*.lbp +*.lbp.caches/* + +#OpenUtau +errors.txt #Deepvocal *.DVModel @@ -20,10 +37,19 @@ SKC SKI SKC_1 SKC_2 -SKC_3 -SKC_4 *.sksd #VocalSharp *.scep *.vssf +*.vsdx +*.vsdxindex + +#Binary Archive +*.7z +*.zip +*.rar +*.exe + +*.bat +*.ps1 From f23d10eddf8699ad5c7f8cf54ec6a769b03438f5 Mon Sep 17 00:00:00 2001 From: arnav-42 Date: Tue, 3 Jun 2025 15:40:50 -0400 Subject: [PATCH 170/194] Create Expo.gitignore --- community/JavaScript/Expo.gitignore | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 community/JavaScript/Expo.gitignore diff --git a/community/JavaScript/Expo.gitignore b/community/JavaScript/Expo.gitignore new file mode 100644 index 00000000..7dfb87b2 --- /dev/null +++ b/community/JavaScript/Expo.gitignore @@ -0,0 +1,35 @@ +# .gitignore template for Expo +# website: https://expo.dev/ +# docs: https://docs.expo.dev/workflow/expo-cli/ +# +# Rationale: +# node_modules/ is always ignored +# .expo/, .expo-shared/ are Expo’s local state and project-settings cache (see docs) +#  Metro caches/logs are *.expo, *.tunnel, *.cache, *.tmp, *.log + +# Node modules +node_modules/ + +# Expo local state and caches +.expo/ # runtime state (Metro bundler, dev-client data, tunnels) +.expo-shared/ # shared project settings (app.json edits, etc.) + +# Metro bundler caches/logs +*.expo # generic Expo temp files +*.tunnel # Expo DevTools tunnels +*.cache # Metro cache folder +*.tmp # temp files created during bundling +*.log # build or Metro logs + +# macOS system files +.DS_Store + +# Environment variables +.env +.env.local +.env.*.local + +# Package manager logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* From a6cba8d437f67313b07b8f39695dcef41fc0bffe Mon Sep 17 00:00:00 2001 From: oxygen-dioxide <54425948+oxygen-dioxide@users.noreply.github.com> Date: Wed, 4 Jun 2025 06:29:52 +0800 Subject: [PATCH 171/194] Update community/UTAU.gitignore Co-authored-by: Devin Dooley --- community/UTAU.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/community/UTAU.gitignore b/community/UTAU.gitignore index 32991582..bb2b0846 100644 --- a/community/UTAU.gitignore +++ b/community/UTAU.gitignore @@ -51,5 +51,3 @@ SKC_2 *.rar *.exe -*.bat -*.ps1 From 153d94f1553a8a67860cd579324fce5c13941036 Mon Sep 17 00:00:00 2001 From: oxygen-dioxide <54425948+oxygen-dioxide@users.noreply.github.com> Date: Wed, 4 Jun 2025 06:30:18 +0800 Subject: [PATCH 172/194] Update community/UTAU.gitignore Co-authored-by: Devin Dooley --- community/UTAU.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/UTAU.gitignore b/community/UTAU.gitignore index bb2b0846..81104c40 100644 --- a/community/UTAU.gitignore +++ b/community/UTAU.gitignore @@ -1,4 +1,4 @@ -#Adobe Audition +# Adobe Audition *.pkf #UTAU Engines From 8de5ff743c25312a627ef2fff5a253e2068deb0d Mon Sep 17 00:00:00 2001 From: oxygen-dioxide <54425948+oxygen-dioxide@users.noreply.github.com> Date: Wed, 4 Jun 2025 06:30:32 +0800 Subject: [PATCH 173/194] Update community/UTAU.gitignore Co-authored-by: Devin Dooley --- community/UTAU.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/community/UTAU.gitignore b/community/UTAU.gitignore index 81104c40..28c10a29 100644 --- a/community/UTAU.gitignore +++ b/community/UTAU.gitignore @@ -13,7 +13,6 @@ *.llsm *.mrq *.pitchtier -*.pkf *.platinum *.pmk *.sc.npz From 33555307a083c61b0a5bc4358f0e985f83f5a154 Mon Sep 17 00:00:00 2001 From: oxygen-dioxide <54425948+oxygen-dioxide@users.noreply.github.com> Date: Wed, 4 Jun 2025 06:36:29 +0800 Subject: [PATCH 174/194] Update UTAU.gitignore --- community/UTAU.gitignore | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/community/UTAU.gitignore b/community/UTAU.gitignore index 28c10a29..173bc781 100644 --- a/community/UTAU.gitignore +++ b/community/UTAU.gitignore @@ -1,7 +1,7 @@ # Adobe Audition *.pkf -#UTAU Engines +# UTAU Engines *.ctspec *.d4c *.dio @@ -20,16 +20,16 @@ *.uspec *.vs4ufrq -#UTAU related tools +# UTAU related tools $read *.setParam-Scache *.lbp *.lbp.caches/* -#OpenUtau +# OpenUtau errors.txt -#Deepvocal +# Deepvocal *.DVModel *-log.txt SKC @@ -38,13 +38,13 @@ SKC_1 SKC_2 *.sksd -#VocalSharp +# VocalSharp *.scep *.vssf *.vsdx *.vsdxindex -#Binary Archive +# Binary Archive *.7z *.zip *.rar From abfc5f1eb4b30a5d92360ab5e3a945670c29c018 Mon Sep 17 00:00:00 2001 From: Devin Dooley Date: Fri, 6 Jun 2025 20:34:35 +0000 Subject: [PATCH 175/194] Increase stale operations per run to 300 --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 8c8b0ddf..c7dcb74f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -29,3 +29,4 @@ jobs: exempt-pr-labels: 'keep' close-issue-reason: not_planned ascending: true # Sort PRs by last updated date in ascending order + operations-per-run: 300 From 7a0861672ac271544ef5406600a612c1d1e2b383 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikl=C3=B3s=20M=C3=A1rton?= Date: Fri, 17 Mar 2023 10:02:38 +0100 Subject: [PATCH 176/194] Add #auto_saved_files# to the Kicad.gitignore --- KiCad.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/KiCad.gitignore b/KiCad.gitignore index e4c4c043..b890b7a5 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -31,4 +31,6 @@ fp-info-cache *.csv # Archived Backups (KiCad 6.0) -**/*-backups/*.zip \ No newline at end of file +**/*-backups/*.zip + +\#auto_saved_files\# From 9cc0b706bfe10f6759a6325c20213b9eacdb2e43 Mon Sep 17 00:00:00 2001 From: arnav-42 Date: Mon, 9 Jun 2025 17:32:55 -0400 Subject: [PATCH 177/194] Update Expo.gitignore removed MacOS specific line --- community/JavaScript/Expo.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/community/JavaScript/Expo.gitignore b/community/JavaScript/Expo.gitignore index 7dfb87b2..164986e1 100644 --- a/community/JavaScript/Expo.gitignore +++ b/community/JavaScript/Expo.gitignore @@ -21,9 +21,6 @@ node_modules/ *.tmp # temp files created during bundling *.log # build or Metro logs -# macOS system files -.DS_Store - # Environment variables .env .env.local From 6c855b59ddca40b97adbe673111457bad8a7a34a Mon Sep 17 00:00:00 2001 From: Martin Leduc <31558169+DecimalTurn@users.noreply.github.com> Date: Tue, 10 Jun 2025 12:36:24 -0400 Subject: [PATCH 178/194] Update VBA.gitignore Add DS_Store for mac users --- VBA.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VBA.gitignore b/VBA.gitignore index ebb292a4..99417825 100644 --- a/VBA.gitignore +++ b/VBA.gitignore @@ -1,3 +1,6 @@ +# Hidden metadata files created by macOS (Desktop Services Store) +.DS_Store + # Office temporary files ~$* From ac81151c3312856c7723c8171a9c8b5360693335 Mon Sep 17 00:00:00 2001 From: Noah Gilson Date: Tue, 10 Jun 2025 13:09:13 -0700 Subject: [PATCH 179/194] Update PR so it doesnt get deleted --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 1a48e921..605ab47e 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -392,4 +392,4 @@ FodyWeavers.xsd *.msi *.msix *.msm -*.msp +*.msp From 1d84c6b57c364adc20f344d2c18c8a000627db30 Mon Sep 17 00:00:00 2001 From: Noah Gilson Date: Tue, 10 Jun 2025 13:09:42 -0700 Subject: [PATCH 180/194] Update VisualStudio.gitignore --- VisualStudio.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 605ab47e..1a48e921 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -392,4 +392,4 @@ FodyWeavers.xsd *.msi *.msix *.msm -*.msp +*.msp From 47d83d00c36aad6b3048ae64c92bb7e99e4a99cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=E5=AE=87=E9=98=B3?= <148193681+aiyvyang@users.noreply.github.com> Date: Wed, 11 Jun 2025 20:09:29 +0800 Subject: [PATCH 181/194] Update JetBrains.gitignore to ignore Apifox Helper cache add Apifox Helper cache --- Global/JetBrains.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index cd15dba1..2944f07b 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -76,3 +76,7 @@ fabric.properties # Android studio 3.1+ serialized cache file .idea/caches/build_file_checksums.ser + +# Apifox Helper cache +.idea/.cache/.Apifox_Helper +.idea/ApifoxUploaderProjectSetting.xml From 8bda061a46828484be3cf9546fbcdbc54c7cc880 Mon Sep 17 00:00:00 2001 From: Martin Leduc <31558169+DecimalTurn@users.noreply.github.com> Date: Wed, 11 Jun 2025 13:09:47 -0400 Subject: [PATCH 182/194] Update VBA.gitignore Co-authored-by: Tim Hunter --- VBA.gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/VBA.gitignore b/VBA.gitignore index 99417825..710dab19 100644 --- a/VBA.gitignore +++ b/VBA.gitignore @@ -1,5 +1,3 @@ -# Hidden metadata files created by macOS (Desktop Services Store) -.DS_Store # Office temporary files ~$* From 7b268f627c2fa4bf87e7f0741bc3c2d61b465656 Mon Sep 17 00:00:00 2001 From: Mikaeil Mayeli Date: Thu, 12 Jun 2025 14:13:20 -0400 Subject: [PATCH 183/194] Ignore marimo cache in Python.gitignore --- Python.gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 2cd3f639..6b64c71f 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -193,3 +193,8 @@ cython_debug/ # refer to https://docs.cursor.com/context/ignore-files .cursorignore .cursorindexingignore + +# Marimo +marimo/_static/ +marimo/_lsp/ +__marimo__/ From d52f8a215e35a1f51c701216aee48cedfd656d46 Mon Sep 17 00:00:00 2001 From: Jawher Kl Date: Fri, 13 Jun 2025 16:28:54 +0100 Subject: [PATCH 184/194] Create Nestjs.gitignore --- Nestjs.gitignore | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Nestjs.gitignore diff --git a/Nestjs.gitignore b/Nestjs.gitignore new file mode 100644 index 00000000..845341e4 --- /dev/null +++ b/Nestjs.gitignore @@ -0,0 +1,24 @@ +# Nestjs specific +/dist +/node_modules +/build +/tmp + +# Logs +logs +*.log +npm-debug.log* +pnpm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# dotenv environment variable files +.env +.env.development +.env.test +.env.production + +# temp directory +.temp +.tmp From 429b07b7d4d946e46678dece9e0740ec650a53eb Mon Sep 17 00:00:00 2001 From: Furkan Kambay Date: Fri, 13 Jun 2025 22:15:02 +0300 Subject: [PATCH 185/194] VSCode: Unignore `.code-workspace`, remove `.history/` (3rd party extension) --- Global/VisualStudioCode.gitignore | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Global/VisualStudioCode.gitignore b/Global/VisualStudioCode.gitignore index 45fce1d7..b72ba8b5 100644 --- a/Global/VisualStudioCode.gitignore +++ b/Global/VisualStudioCode.gitignore @@ -4,9 +4,7 @@ !.vscode/launch.json !.vscode/extensions.json !.vscode/*.code-snippets - -# Local History for Visual Studio Code -.history/ +!*.code-workspace # Built Visual Studio Code Extensions *.vsix From b93d2b024a21982b2e593735ceaf794b21334d04 Mon Sep 17 00:00:00 2001 From: Krishnan Shankar Date: Wed, 5 Jun 2024 18:39:38 -0400 Subject: [PATCH 186/194] Update KiCad.gitignore --- KiCad.gitignore | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/KiCad.gitignore b/KiCad.gitignore index b890b7a5..9d5df933 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -8,10 +8,13 @@ *.kicad_pcb-bak *.kicad_sch-bak *-backups -*.kicad_prl -*.sch-bak +*-cache* +*-bak +*-bak* *~ +~* _autosave-* +\#auto_saved_files\# *.tmp *-save.pro *-save.kicad_pcb @@ -33,4 +36,5 @@ fp-info-cache # Archived Backups (KiCad 6.0) **/*-backups/*.zip -\#auto_saved_files\# +# Local project settings +*.kicad_prl From b913fd9f3c1cb190e6a5aa33a0058e3380a134a0 Mon Sep 17 00:00:00 2001 From: Mike Schweitzer Date: Sun, 24 Jul 2022 19:28:33 -0700 Subject: [PATCH 187/194] Add TestFramework files and fix Addressables coverage * Fix incorrect comment - aa means Addressable Assets not Android Assets * Add more complete default Addressables coverage * Add TestRunner package generated files --- Unity.gitignore | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/Unity.gitignore b/Unity.gitignore index 66c38c50..a1b63a6b 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -74,12 +74,18 @@ mono_crash.* # Crashlytics generated file crashlytics-build.properties -# Packed Addressables -/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* +# TestRunner generated files +InitTestScene*.unity* -# Temporary auto-generated Android Assets -/[Aa]ssets/[Ss]treamingAssets/aa.meta -/[Aa]ssets/[Ss]treamingAssets/aa/* +# Addressables default ignores, before user customizations +/ServerData +/[Aa]ssets/StreamingAssets/aa* +/[Aa]ssets/AddressableAssetsData/link.xml* +/[Aa]ssets/Addressables_Temp* +# By default, Addressables content builds will generate addressables_content_state.bin +# files in platform-specific subfolders, for example: +# /Assets/AddressableAssetsData/OSX/addressables_content_state.bin +/[Aa]ssets/AddressableAssetsData/*/*.bin* # Visual Scripting auto-generated files /[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db From 5902dd9543b3773f4fcbb4459af9b82a5f68db1e Mon Sep 17 00:00:00 2001 From: Mike Schweitzer Date: Fri, 13 Jun 2025 16:52:14 -0700 Subject: [PATCH 188/194] Add *.DotSettings.user for Rider to Unity.gitignore --- Unity.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index 66c38c50..e64340a3 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -28,6 +28,8 @@ # Autogenerated Jetbrains Rider plugin /[Aa]ssets/Plugins/Editor/JetBrains* +# Jetbrains Rider personal-layer settings +*.DotSettings.user # Visual Studio cache directory .vs/ From 8789ddbda3ec1a52fa51a8a90de82d17365a544d Mon Sep 17 00:00:00 2001 From: Koji Hasegawa Date: Sun, 15 Jun 2025 22:37:42 +0900 Subject: [PATCH 189/194] Fix conflicts --- Unity.gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Unity.gitignore b/Unity.gitignore index a11ddf93..94903c67 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -2,6 +2,7 @@ # # Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore # +.utmp/ /[Ll]ibrary/ /[Tt]emp/ /[Oo]bj/ @@ -9,6 +10,11 @@ /[Bb]uilds/ /[Ll]ogs/ /[Uu]ser[Ss]ettings/ +*.log + +# By default unity supports Blender asset imports, *.blend1 blender files do not need to be commited to version control. +*.blend1 +*.blend1.meta # MemoryCaptures can get excessive in size. # They also could contain extremely sensitive data @@ -55,10 +61,14 @@ ExportedObj/ # Unity3D generated file on crash reports sysinfo.txt +# Mono auto generated files +mono_crash.* + # Builds *.apk *.aab *.unitypackage +*.unitypackage.meta *.app # Crashlytics generated file @@ -71,5 +81,11 @@ crashlytics-build.properties /[Aa]ssets/[Ss]treamingAssets/aa.meta /[Aa]ssets/[Ss]treamingAssets/aa/* +# Visual Scripting auto-generated files +/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db +/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db.meta +/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Core/Property Providers +/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Core/Property Providers.meta + # Auto-generated scenes by play mode tests /[Aa]ssets/[Ii]nit[Tt]est[Ss]cene*.unity* From 75ec41f83a8a56749516a8e433fd70a30218e276 Mon Sep 17 00:00:00 2001 From: Mattijs Ugen <144798+akaIDIOT@users.noreply.github.com> Date: Mon, 16 Jun 2025 16:40:50 +0200 Subject: [PATCH 190/194] Update documentation link for pdm, use recommended includes/excludes --- Python.gitignore | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Python.gitignore b/Python.gitignore index d9035b15..1f5ea1b4 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -110,11 +110,10 @@ ipython_config.py # pdm # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. +# https://pdm-project.org/en/latest/usage/project/#working-with-version-control #pdm.lock -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it -# in version control. -# https://pdm.fming.dev/latest/usage/project/#working-with-version-control -.pdm.toml +#pdm.toml .pdm-python .pdm-build/ From 47e5a2eae74d2761e77e1fc8ff95851375423695 Mon Sep 17 00:00:00 2001 From: sqltoolbox <71775861+sqltoolbox@users.noreply.github.com> Date: Tue, 17 Jun 2025 11:22:01 +0200 Subject: [PATCH 191/194] SSDT specific objects ignore A trimmed down version of the gitignore file tailored specifically towards SSDT projects in Visual Studio. --- SSDT-sqlproj.gitignore | 368 +++-------------------------------------- 1 file changed, 19 insertions(+), 349 deletions(-) diff --git a/SSDT-sqlproj.gitignore b/SSDT-sqlproj.gitignore index 786f63c6..558a1259 100644 --- a/SSDT-sqlproj.gitignore +++ b/SSDT-sqlproj.gitignore @@ -2,360 +2,30 @@ ## ## ## Get latest from https://github.com/github/gitignore/blob/master/SSDT-sqlproj.gitignore +# Build output +bin/ +obj/ + +# DACPAC files +*.dacpac + +# Publish profiles (optional, if environment-specific) +*.publish.xml + +# SQL Server debug files +*.dbmdl +*.sqlcmdvars + +# Visual Studio settings +.vs/ # User-specific files -*.rsuser -*.suo *.user +*.suo *.userosscache *.sln.docstates -# User-specific files (MonoDevelop/Xamarin Studio) -*.userprefs - -# Mono auto generated files -mono_crash.* - -# Build results -[Dd]ebug/ -[Dd]ebugPublic/ -[Rr]elease/ -[Rr]eleases/ -x64/ -x86/ -[Ww][Ii][Nn]32/ -[Aa][Rr][Mm]/ -[Aa][Rr][Mm]64/ -bld/ -[Bb]in/ -[Oo]bj/ -[Ll]og/ -[Ll]ogs/ - -# Visual Studio 2015/2017 cache/options directory -.vs/ -# Uncomment if you have tasks that create the project's static files in wwwroot -#wwwroot/ - -# Visual Studio 2017 auto generated files -Generated\ Files/ - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -# NUnit -*.VisualState.xml -TestResult.xml -nunit-*.xml - -# Build Results of an ATL Project -[Dd]ebugPS/ -[Rr]eleasePS/ -dlldata.c - -# Benchmark Results -BenchmarkDotNet.Artifacts/ - -# .NET Core -project.lock.json -project.fragment.lock.json -artifacts/ - -# ASP.NET Scaffolding -ScaffoldingReadMe.txt - -# StyleCop -StyleCopReport.xml - -# Files built by Visual Studio -*_i.c -*_p.c -*_h.h -*.ilk -*.meta -*.obj -*.iobj -*.pch -*.pdb -*.ipdb -*.pgc -*.pgd -*.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.tmp_proj -*_wpftmp.csproj +# Backup files +*.bak *.log -*.vspscc -*.vssscc -.builds -*.pidb -*.svclog -*.scc -# Chutzpah Test files -_Chutzpah* - -# Visual C++ cache files -ipch/ -*.aps -*.ncb -*.opendb -*.opensdf -*.sdf -*.cachefile -*.VC.db -*.VC.VC.opendb - -# Visual Studio profiler -*.psess -*.vsp -*.vspx -*.sap - -# Visual Studio Trace Files -*.e2e - -# TFS 2012 Local Workspace -$tf/ - -# Guidance Automation Toolkit -*.gpState - -# ReSharper is a .NET coding add-in -_ReSharper*/ -*.[Rr]e[Ss]harper -*.DotSettings.user - -# TeamCity is a build add-in -_TeamCity* - -# DotCover is a Code Coverage Tool -*.dotCover - -# AxoCover is a Code Coverage Tool -.axoCover/* -!.axoCover/settings.json - -# Coverlet is a free, cross platform Code Coverage Tool -coverage*.json -coverage*.xml -coverage*.info - -# Visual Studio code coverage results -*.coverage -*.coveragexml - -# NCrunch -_NCrunch_* -.*crunch*.local.xml -nCrunchTemp_* - -# MightyMoose -*.mm.* -AutoTest.Net/ - -# Web workbench (sass) -.sass-cache/ - -# Installshield output folder -[Ee]xpress/ - -# DocProject is a documentation generator add-in -DocProject/buildhelp/ -DocProject/Help/*.HxT -DocProject/Help/*.HxC -DocProject/Help/*.hhc -DocProject/Help/*.hhk -DocProject/Help/*.hhp -DocProject/Help/Html2 -DocProject/Help/html - -# Click-Once directory -publish/ - -# Publish Web Output -*.azurePubxml -# Note: Comment the next line if you want to checkin your web deploy settings, -# but database connection strings (with potential passwords) will be unencrypted -*.pubxml -*.publishproj - -# Microsoft Azure Web App publish settings. Comment the next line if you want to -# checkin your Azure Web App publish settings, but sensitive information contained -# in these scripts will be unencrypted -PublishScripts/ - -# NuGet Packages -*.nupkg -# NuGet Symbol Packages -*.snupkg -# The packages folder can be ignored because of Package Restore -**/[Pp]ackages/* -# except build/, which is used as an MSBuild target. -!**/[Pp]ackages/build/ -# Uncomment if necessary however generally it will be regenerated when needed -#!**/[Pp]ackages/repositories.config -# NuGet v3's project.json files produces more ignorable files -*.nuget.props -*.nuget.targets - -# Microsoft Azure Build Output -csx/ -*.build.csdef - -# Microsoft Azure Emulator -ecf/ -rcf/ - -# Windows Store app package directories and files -AppPackages/ -BundleArtifacts/ -Package.StoreAssociation.xml -_pkginfo.txt -*.appx -*.appxbundle -*.appxupload - -# Visual Studio cache files -# files ending in .cache can be ignored -*.[Cc]ache -# but keep track of directories ending in .cache -!?*.[Cc]ache/ - -# Others -ClientBin/ -~$* -*~ -*.dbmdl -*.dbproj.schemaview -*.jfm -*.pfx -*.publishsettings -orleans.codegen.cs - -# Including strong name files can present a security risk -# (https://github.com/github/gitignore/pull/2483#issue-259490424) -#*.snk - -# Since there are multiple workflows, uncomment next line to ignore bower_components -# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) -#bower_components/ - -# RIA/Silverlight projects -Generated_Code/ - -# Backup & report files from converting an old project file -# to a newer Visual Studio version. Backup files are not needed, -# because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML -UpgradeLog*.htm -ServiceFabricBackup/ -*.rptproj.bak - -# SQL Server files -*.mdf -*.ldf -*.ndf - -# Business Intelligence projects -*.rdl.data -*.bim.layout -*.bim_*.settings -*.rptproj.rsuser -*- [Bb]ackup.rdl -*- [Bb]ackup ([0-9]).rdl -*- [Bb]ackup ([0-9][0-9]).rdl - -# Microsoft Fakes -FakesAssemblies/ - -# GhostDoc plugin setting file -*.GhostDoc.xml - -# Node.js Tools for Visual Studio -.ntvs_analysis.dat -node_modules/ - -# Visual Studio 6 build log -*.plg - -# 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 -**/*.DesktopClient/ModelManifest.xml -**/*.Server/GeneratedArtifacts -**/*.Server/ModelManifest.xml -_Pvt_Extensions - -# Paket dependency manager -.paket/paket.exe -paket-files/ - -# FAKE - F# Make -.fake/ - -# CodeRush personal settings -.cr/personal - -# Python Tools for Visual Studio (PTVS) -__pycache__/ -*.pyc - -# Cake - Uncomment if you are using it -# tools/** -# !tools/packages.config - -# Tabs Studio -*.tss - -# Telerik's JustMock configuration file -*.jmconfig - -# BizTalk build output -*.btp.cs -*.btm.cs -*.odx.cs -*.xsd.cs - -# OpenCover UI analysis results -OpenCover/ - -# Azure Stream Analytics local run output -ASALocalRun/ - -# MSBuild Binary and Structured Log -*.binlog - -# NVidia Nsight GPU debugger configuration file -*.nvuser - -# MFractors (Xamarin productivity tool) working folder -.mfractor/ - -# Local History for Visual Studio -.localhistory/ - -# BeatPulse healthcheck temp database -healthchecksdb - -# Backup folder for Package Reference Convert tool in Visual Studio 2017 -MigrationBackup/ - -# Ionide (cross platform F# VS Code tools) working folder -.ionide/ - -# Fody - auto-generated XML schema -FodyWeavers.xsd From f2d8703154546d40d45f29ee9c66ae9a7fb0afc5 Mon Sep 17 00:00:00 2001 From: Young Date: Thu, 19 Jun 2025 15:29:09 +0800 Subject: [PATCH 192/194] Add HIP.gitignore --- HIP.gitignore | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 HIP.gitignore diff --git a/HIP.gitignore b/HIP.gitignore new file mode 100644 index 00000000..5f3324cf --- /dev/null +++ b/HIP.gitignore @@ -0,0 +1,50 @@ +# HIP.gitignore +# GitHub gitignore template for AMD HIP (ROCm) projects +# +# Reference: +# Official AMD ROCm HIP .gitignore: https://github.com/ROCm/hip/blob/amd-staging/.gitignore + +# 1. Build directories and files +/build/ # common build directory +/CMakeFiles/ # CMake internal files +/CMakeCache.txt # CMake cache file +/Makefile # autogenerated Makefile +/cmake_install.cmake # install script +/install_manifest.txt # install manifest list +*.ninja-dep # Ninja dependency files +*.ninja_log # Ninja log files +meson-logs/ # Meson log directory + +# 2. Compilation outputs and intermediates +*.o # object files +*.obj # Windows object files +*.so # shared libraries +*.a # static librarie +*.d # dependency files +*.gch # precompiled headers +*.ii # preprocessed output +*.ii.cpp # C++ preprocessed output +*.out # generic executable outputs +*.exe # Windows executables + +# 3. HIP/ROCm specific binaries and intermediates +*.hsaco # ROCm compiled binary +*.s # assembly output +*.kernels.cpp # autogenerated kernel sources +*.hip.cpp.* # hipcc intermediate outputs + +# 4. Official sample binaries and tutorial outputs +bin/hipInfo # sample binary +bin/hipBusBandwidth # sample binary +bin/hipDispatchLatency # sample binary +bin/hipify-clang # sample tool +samples/**/*.out # tutorial outputs +samples/**/*.code # ISA/code dumps +samples/**/*.hsaco # compiled binaries +samples/**/*.co # kernel code outputs + +# 5. Tags, logs and test outputs +tags # ctags index +*.log # log files +/tests_output/ # custom test output directory +/samples_output/ # custom sample output directory From 5f428c12269398f47cf57cb9e8012e44cf9cca4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 9 Jun 2024 01:34:49 +0300 Subject: [PATCH 193/194] Add Lefthook.gitignore https://lefthook.dev --- Global/Lefthook.gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Global/Lefthook.gitignore diff --git a/Global/Lefthook.gitignore b/Global/Lefthook.gitignore new file mode 100644 index 00000000..5f6d4ce0 --- /dev/null +++ b/Global/Lefthook.gitignore @@ -0,0 +1,12 @@ +# https://github.com/evilmartians/lefthook/blob/master/docs/configuration.md#config-file +/.lefthook-local.json +/.lefthook-local.toml +/.lefthook-local.yaml +/.lefthook-local.yml +/lefthook-local.json +/lefthook-local.toml +/lefthook-local.yaml +/lefthook-local.yml + +# https://github.com/evilmartians/lefthook/blob/master/docs/configuration.md#source_dir_local +/.lefthook-local/ From cccb1867b125f3e5f125d3bdf144cc01cc2a03af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sat, 21 Jun 2025 11:05:46 +0300 Subject: [PATCH 194/194] Update Lefthook doc links, add files in .config/ --- Global/Lefthook.gitignore | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Global/Lefthook.gitignore b/Global/Lefthook.gitignore index 5f6d4ce0..35409f0e 100644 --- a/Global/Lefthook.gitignore +++ b/Global/Lefthook.gitignore @@ -1,4 +1,4 @@ -# https://github.com/evilmartians/lefthook/blob/master/docs/configuration.md#config-file +# https://lefthook.dev/configuration/#config-file-name /.lefthook-local.json /.lefthook-local.toml /.lefthook-local.yaml @@ -7,6 +7,10 @@ /lefthook-local.toml /lefthook-local.yaml /lefthook-local.yml +/.config/lefthook-local.json +/.config/lefthook-local.toml +/.config/lefthook-local.yaml +/.config/lefthook-local.yml -# https://github.com/evilmartians/lefthook/blob/master/docs/configuration.md#source_dir_local +# https://lefthook.dev/configuration/source_dir_local.html /.lefthook-local/