From ad2622c2dd8f220bb6c0355f92a7e6986aa1e100 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 28 Sep 2020 13:22:59 -0400 Subject: [PATCH 01/76] 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 02/76] 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 04a4d50a7848dd1351eff9134a283fc6a3ef79a7 Mon Sep 17 00:00:00 2001 From: Andrii Chebukin Date: Wed, 30 Dec 2020 23:01:53 +0200 Subject: [PATCH 03/76] 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 04/76] 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 05/76] 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 06/76] 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 57c1500630894c955b9afd4b76e97c51acd3dcbd Mon Sep 17 00:00:00 2001 From: Ojaswa Sharma Date: Thu, 24 Feb 2022 15:03:55 +0530 Subject: [PATCH 07/76] 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 08/76] 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 09/76] 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 10/76] 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 11/76] 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 12/76] 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 13/76] 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 f4d16fdeb19e81cb994e287fcbce1440d19e95bc Mon Sep 17 00:00:00 2001 From: Daniel Lathrop Date: Mon, 9 May 2022 10:28:06 -0500 Subject: [PATCH 14/76] 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 15/76] 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 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 16/76] 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 6623018b65a54e551d03b5cdfab864116bd8ad2b Mon Sep 17 00:00:00 2001 From: Khazbs Date: Tue, 2 Aug 2022 16:45:34 +0300 Subject: [PATCH 17/76] 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 9c1792744c2213db6b95c05118b0ec094efa5374 Mon Sep 17 00:00:00 2001 From: Jaxel Rojas Date: Sat, 17 Sep 2022 09:20:22 -0400 Subject: [PATCH 18/76] 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 19/76] 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 20/76] 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 21/76] 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 22/76] 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 23/76] 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 24/76] 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 25/76] 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 4eb82ffd9b4116d257c92b8f893d7975b18a7789 Mon Sep 17 00:00:00 2001 From: Koji Hasegawa Date: Sun, 5 Feb 2023 23:17:08 +0900 Subject: [PATCH 26/76] 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 27/76] 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 28/76] 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 d34fe3a059d872746f38614a5efcc82fafacfd6e Mon Sep 17 00:00:00 2001 From: Anoduck Date: Mon, 20 Mar 2023 05:50:59 +0000 Subject: [PATCH 29/76] 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 436c98e920d2bd62f237bb3b694fb22055034fd7 Mon Sep 17 00:00:00 2001 From: AsukaMinato Date: Wed, 24 May 2023 14:29:42 +0900 Subject: [PATCH 30/76] 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 31/76] 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 32/76] 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 33/76] 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 34/76] 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 35/76] 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 36/76] 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 37/76] 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 38/76] 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 39/76] 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 40/76] 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 41/76] 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 42/76] 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 94cb1ce3b8b08683136168d2e5ff25511ea99c06 Mon Sep 17 00:00:00 2001 From: Henrique Gottardi Werlang Date: Thu, 30 Nov 2023 16:40:07 -0300 Subject: [PATCH 43/76] 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 44/76] 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 45/76] 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 46/76] 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 47/76] 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 48/76] 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 49/76] 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 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 50/76] 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 f55dbb03f39de026a6fd643d53898c86ca1b3157 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Thu, 5 Sep 2024 20:32:33 +0200 Subject: [PATCH 51/76] 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 52/76] =?UTF-8?q?=F0=9F=99=88=20Update=20Cake=20comment=20?= =?UTF-8?q?line=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 53/76] 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 a3259cbb0ad1a2c04123828f9433f361c5a30c2c Mon Sep 17 00:00:00 2001 From: Mark Lazarides Date: Fri, 10 Jan 2025 10:44:18 +0000 Subject: [PATCH 54/76] modifies lib exclude, adds example lib include explicitly excludes the `_Libraries` directory, and provides example of adding sub directories back in. Should be used for including custom and third party (non -Beckhoff shipped) libraries, improving maintainability --- TwinCAT3.gitignore | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/TwinCAT3.gitignore b/TwinCAT3.gitignore index 7bd6f875..1ee38188 100644 --- a/TwinCAT3.gitignore +++ b/TwinCAT3.gitignore @@ -21,5 +21,11 @@ LineIDs.dbg LineIDs.dbg.bak _Boot/ _CompileInfo/ -_Libraries/ -_ModuleInstall/ \ No newline at end of file +_ModuleInstall/ + +# Exclude all libraries +/**/_Libraries/*/ + +# To include a specific library directory (i.e. third party/custom libs), +# use pattern `!/**/_Libraries//` i.e. `!/**/_Libraries/www.tcunit.org/` +# \ No newline at end of file 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 55/76] 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 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 56/76] 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 f23d10eddf8699ad5c7f8cf54ec6a769b03438f5 Mon Sep 17 00:00:00 2001 From: arnav-42 Date: Tue, 3 Jun 2025 15:40:50 -0400 Subject: [PATCH 57/76] 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 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 58/76] 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 59/76] 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 60/76] 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 61/76] 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 62/76] 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 63/76] 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 64/76] 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 65/76] 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 66/76] 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 67/76] 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 68/76] 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 69/76] 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 70/76] 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 71/76] 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 72/76] 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 73/76] 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 74/76] 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 75/76] 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 76/76] 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/