From 4f7ad979b9c39e442b534656b330d07eaf0de978 Mon Sep 17 00:00:00 2001 From: Kacper Ksieski Date: Mon, 11 May 2020 20:44:59 -0400 Subject: [PATCH 01/70] add: create template for Alteryx Designer --- community/Alteryx.gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 community/Alteryx.gitignore diff --git a/community/Alteryx.gitignore b/community/Alteryx.gitignore new file mode 100644 index 00000000..a682e4b3 --- /dev/null +++ b/community/Alteryx.gitignore @@ -0,0 +1,29 @@ +# gitignore template for Alteryx Designer +# website: https://www.alteryx.com/ +# website: https://help.alteryx.com/current/designer/alteryx-file-types + +# Alteryx Data Files +.yxdb +.cydb +.cyidx +.rptx +.vvf +.aws + +# Alteryx Special Files +.yxwv +.yxft +.yxbe +.bak +.pcxml +.log +.bin +.yxlang +CASS.ini + +# Alteryx License Files +.yxlc +.slc +.cylc +.alc +.gzlc From f269918a08714f23ad546bcac68892f675b40375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihat=20G=C3=BCnd=C3=BCz?= Date: Thu, 22 Oct 2020 07:44:09 +0200 Subject: [PATCH 02/70] Remove Accio after official deprecation [Accio](https://github.com/JamitLabs/Accio) was oficially deprecated in favor of SwiftPM integration within Xcode. I don't think any new project will be opting for it, so it might also be a good idea to clean this up and remove the Accio related entries from the `.gitignore`. --- Swift.gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Swift.gitignore b/Swift.gitignore index 330d1674..bb83bcfc 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -66,10 +66,6 @@ playground.xcworkspace Carthage/Build/ -# Accio dependency management -Dependencies/ -.accio/ - # fastlane # # It is recommended to not store the screenshots in the git repo. From a0e05f9d08080a286311721593eb6a23266d9637 Mon Sep 17 00:00:00 2001 From: Kyle Edwards Date: Mon, 7 Dec 2020 15:29:35 -0500 Subject: [PATCH 03/70] CMake: Add CMakeUserPresets.json CMake 3.19 added CMakePresets.json, which is intended to be version-controlled, and CMakeUserPresets.json, which should NOT be version-controlled. Add CMakeUserPresets.json to the gitignore. https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html --- CMake.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/CMake.gitignore b/CMake.gitignore index 46f42f8f..11c76431 100644 --- a/CMake.gitignore +++ b/CMake.gitignore @@ -9,3 +9,4 @@ install_manifest.txt compile_commands.json CTestTestfile.cmake _deps +CMakeUserPresets.json From 8b42a0d1e3799b253af0a04c927aa9c64548ec62 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Tue, 30 Mar 2021 18:26:32 -0400 Subject: [PATCH 04/70] Create GitHubPages.gitignore --- GitHubPages.gitignore | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 GitHubPages.gitignore diff --git a/GitHubPages.gitignore b/GitHubPages.gitignore new file mode 100644 index 00000000..81626739 --- /dev/null +++ b/GitHubPages.gitignore @@ -0,0 +1,17 @@ +# This .gitignore is appropriate for repositories deployed to GitHub Pages and using +# a Gemfile as specified at https://github.com/github/pages-gem#conventional + +# Basic Jekyll gitignores (synchronize to Jekyll.gitignore) +_site/ +.sass-cache/ +.jekyll-cache/ +.jekyll-metadata + +# Additional Ruby/bundler ignore for when you run: bundle install +/vendor + +# Specific ignore for GitHub Pages +# GitHub Pages will always use its own deployed version of pages-gem +# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is not +# counterproductive to check this file into the repository. +Gemfile.lock From 978e3010329eff589d2b9b140cb8af30f4480065 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Wed, 31 Mar 2021 13:56:32 -0400 Subject: [PATCH 05/70] Update GitHubPages.gitignore --- GitHubPages.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitHubPages.gitignore b/GitHubPages.gitignore index 81626739..fddfb6b9 100644 --- a/GitHubPages.gitignore +++ b/GitHubPages.gitignore @@ -12,6 +12,6 @@ _site/ # Specific ignore for GitHub Pages # GitHub Pages will always use its own deployed version of pages-gem -# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is not +# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is # counterproductive to check this file into the repository. Gemfile.lock From 110e40ad2a1b64c46fd690fcce2b20b16fe53f7f Mon Sep 17 00:00:00 2001 From: kacper ksieski Date: Thu, 22 Apr 2021 10:00:03 -0400 Subject: [PATCH 06/70] fix: add stars --- community/Alteryx.gitignore | 53 ++++++++++++++++++++++++------------- 1 file changed, 34 insertions(+), 19 deletions(-) diff --git a/community/Alteryx.gitignore b/community/Alteryx.gitignore index a682e4b3..a8e1341f 100644 --- a/community/Alteryx.gitignore +++ b/community/Alteryx.gitignore @@ -3,27 +3,42 @@ # website: https://help.alteryx.com/current/designer/alteryx-file-types # Alteryx Data Files -.yxdb -.cydb -.cyidx -.rptx -.vvf -.aws +*.yxdb +*.cydb +*.cyidx +*.rptx +*.vvf +*.aws # Alteryx Special Files -.yxwv -.yxft -.yxbe -.bak -.pcxml -.log -.bin -.yxlang +*.yxwv +*.yxft +*.yxbe +*.bak +*.pcxml +*.log +*.bin +*.yxlang CASS.ini # Alteryx License Files -.yxlc -.slc -.cylc -.alc -.gzlc +*.yxlc +*.slc +*.cylc +*.alc +*.gzlc + +## gitignore reference sites +# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files +# https://git-scm.com/docs/gitignore +# https://help.github.com/articles/ignoring-files/ + +## Useful knowledge from stackoverflow +# Even if you haven't tracked the files so far, git seems to be able to "know" about them even after you add them to .gitignore. +# WARNING: First commit your current changes, or you will lose them. +# Then run the following commands from the top folder of your git repo: +# git rm -r --cached . +# git add . +# git commit -m "fixed untracked files" + +# author: Kacper Ksieski \ No newline at end of file From abbcca282f7317bde950e46a07872088e4f8b341 Mon Sep 17 00:00:00 2001 From: Bick Doner Date: Wed, 16 Feb 2022 13:36:16 +0100 Subject: [PATCH 07/70] Create Zig.gitignore --- Zig.gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Zig.gitignore diff --git a/Zig.gitignore b/Zig.gitignore new file mode 100644 index 00000000..1e33b5f3 --- /dev/null +++ b/Zig.gitignore @@ -0,0 +1,4 @@ +# This file is for zig-specific build artifacts. + +zig-cache/ +zig-out/ From 1e19baaccf0bf83f1b6df69837ab3c7974867021 Mon Sep 17 00:00:00 2001 From: 417-72KI <417.72ki@gmail.com> Date: Tue, 8 Mar 2022 11:17:45 +0900 Subject: [PATCH 08/70] Remove `CodeInjection` block from Swift.gitignore --- Swift.gitignore | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Swift.gitignore b/Swift.gitignore index 330d1674..00ee7841 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -81,10 +81,3 @@ fastlane/report.xml fastlane/Preview.html fastlane/screenshots/**/*.png fastlane/test_output - -# Code Injection -# -# After new code Injection tools there's a generated folder /iOSInjectionProject -# https://github.com/johnno1962/injectionforxcode - -iOSInjectionProject/ From 5521afc90ae5c012310c42c4953e62284ea42530 Mon Sep 17 00:00:00 2001 From: 417-72KI <417.72ki@gmail.com> Date: Tue, 8 Mar 2022 11:17:40 +0900 Subject: [PATCH 09/70] Remove `CodeInjection` block from Objective-C.gitignore --- Objective-C.gitignore | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 7801c930..250c0dc2 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -59,10 +59,3 @@ fastlane/report.xml fastlane/Preview.html fastlane/screenshots/**/*.png fastlane/test_output - -# Code Injection -# -# After new code Injection tools there's a generated folder /iOSInjectionProject -# https://github.com/johnno1962/injectionforxcode - -iOSInjectionProject/ From d63f4b14cad6a400719c123c994d407e65e230f3 Mon Sep 17 00:00:00 2001 From: katexochen <49727155+katexochen@users.noreply.github.com> Date: Tue, 31 May 2022 18:40:47 +0200 Subject: [PATCH 10/70] Ignore go.work.sum --- Go.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Go.gitignore b/Go.gitignore index 3b735ec4..6f6f5e6a 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -19,3 +19,4 @@ # Go workspace file go.work +go.work.sum From fee4d0f98e167e735499d158e4ab38cf2394b390 Mon Sep 17 00:00:00 2001 From: Josh Marshall <10360503+jmarsh411@users.noreply.github.com> Date: Mon, 17 Oct 2022 11:02:24 -0400 Subject: [PATCH 11/70] ignore meta files of unity packages Unity packages were already ignored, but it seems in recent versions of Unity these also generate meta files for these. If the meta file isn't also ignored, the person who imports an asset containing a .unitypackage file could accidentally commit the meta files. For another who downloads those meta files, Unity would automatically delete them since they don't have the .unitypackage. The the importer commits them again and the cycle goes on and on until someone like me gets fed up. This fixes that inconsistency by adding the *.unitypackage.meta to the ignore list. --- Unity.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Unity.gitignore b/Unity.gitignore index 58cbc825..3496b7cd 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -59,6 +59,7 @@ sysinfo.txt *.apk *.aab *.unitypackage +*.unitypackage.meta *.app # Crashlytics generated file From 6ec71bb93845f5ed80874960765fde7c4317f2c5 Mon Sep 17 00:00:00 2001 From: Sebastian Dietze Date: Wed, 9 Mar 2022 13:39:36 +0100 Subject: [PATCH 12/70] Create gitignore file for ECU-TEST workspaces --- ECU-TEST.gitignore | 62 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 ECU-TEST.gitignore diff --git a/ECU-TEST.gitignore b/ECU-TEST.gitignore new file mode 100644 index 00000000..eb6789e6 --- /dev/null +++ b/ECU-TEST.gitignore @@ -0,0 +1,62 @@ +# gitignore template for ECU-TEST workspaces +# website: https://www.ecu-test.com +# * 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 +.workspace/ETdrive.xml +.workspace/favorites.xml +.workspace/filters.xml +.workspace/generators.xml +.workspace/history.xml +.workspace/parallelExecution.xml +.workspace/signalviewer.xml +.workspace/signalViewerHistory.json +.workspace/signalviewer2layout.xml +.workspace/testeditor.xml +.workspace/tooladapter.xml +.workspace/view.xml +# optional, if your process depends on this file remove exclusion +.workspace/interactiveexecution.xml +.workspace/pythonlibrary.xml +# deprecated, support for older versions +.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 +*.arxml +*.a2l +*.dbc +*.hex +*.s19 +[tT]estdata +[tT]estdaten + +# 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 +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 +Templates + +# 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 +Offline-Models +Offline-SGBDs +*.exe +*.msi +*.zip +*.7z + +# Exclude default and custom temporary directories +Backup_* + +# Python bytecode and cache files +__pycache__/ +*.py[cod] From c70d6acf3e52cf9ed6eaddedb0e4e95a2935cb10 Mon Sep 17 00:00:00 2001 From: Sebastian Dietze Date: Mon, 17 Oct 2022 16:57:55 +0200 Subject: [PATCH 13/70] Highlight origin of .gitignore --- ECU-TEST.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ECU-TEST.gitignore b/ECU-TEST.gitignore index eb6789e6..d25ba945 100644 --- a/ECU-TEST.gitignore +++ b/ECU-TEST.gitignore @@ -1,4 +1,4 @@ -# gitignore template for ECU-TEST workspaces +# 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 fc05d64d6da385acf2707d44f693573aadc811fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Pr=C3=A9martin?= Date: Thu, 29 Dec 2022 14:41:48 +0100 Subject: [PATCH 14/70] Added Delphi default compile/construct directories --- Delphi.gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Delphi.gitignore b/Delphi.gitignore index 9532800b..8df99b67 100644 --- a/Delphi.gitignore +++ b/Delphi.gitignore @@ -26,6 +26,18 @@ #*.obj # +# Default Delphi compiler directories +# Content of this directories are generated with each Compile/Construct of a project. +# Most of the time, files here have not there place in a code repository. +#Win32/ +#Win64/ +#OSX64/ +#OSXARM64/ +#Android/ +#Android64/ +#iOSDevice64/ +#Linux64/ + # Delphi compiler-generated binaries (safe to delete) *.exe *.dll From 786acd1d0cecd5558e33090740f2163770b8b305 Mon Sep 17 00:00:00 2001 From: tobolar Date: Fri, 13 Jan 2023 11:54:16 +0100 Subject: [PATCH 15/70] Add gitignore for Modelica --- Modelica.gitignore | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Modelica.gitignore diff --git a/Modelica.gitignore b/Modelica.gitignore new file mode 100644 index 00000000..edc234de --- /dev/null +++ b/Modelica.gitignore @@ -0,0 +1,37 @@ +# Modelica - an object-oriented language for modeling of cyber-physical systems +# https://modelica.org/ +# Ignore temporary files, build results, simulation files + +## Modelica backup files +*~ +*.bak +*.bak-mo + +## Build artefacts +*.exe +*.exp +*.o +*.pyc + +## Simulation files +*.mat + +## Package files +*.gz +*.rar +*.tar +*.zip + +## Dymola-specific files +buildlog.txt +dsfinal.txt +dsin.txt +dslog.txt +dsmodel* +dsres.txt +dymosim* +request +stat +status +stop +success \ No newline at end of file From e538e96f2ee81e080b26c89aeeccc7181c04eaf9 Mon Sep 17 00:00:00 2001 From: tobolar Date: Fri, 13 Jan 2023 12:05:35 +0100 Subject: [PATCH 16/70] Ignore flattened Modelica --- Modelica.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modelica.gitignore b/Modelica.gitignore index edc234de..0aca78a0 100644 --- a/Modelica.gitignore +++ b/Modelica.gitignore @@ -2,10 +2,11 @@ # https://modelica.org/ # Ignore temporary files, build results, simulation files -## Modelica backup files +## Modelica-specific files *~ *.bak *.bak-mo +*.mof ## Build artefacts *.exe From e8131b2a80ed1fa84c94da08d257969a198d0ee4 Mon Sep 17 00:00:00 2001 From: Marvin Vogt Date: Sun, 9 Apr 2023 18:25:17 +0200 Subject: [PATCH 17/70] Add `.pdm-python` to python gitignore --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 68bc17f9..f7f74c71 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -108,6 +108,7 @@ ipython_config.py # in version control. # https://pdm.fming.dev/#use-with-ide .pdm.toml +.pdm-python # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm __pypackages__/ From 392ef565be9f537bc06fa00e1d288131456b4972 Mon Sep 17 00:00:00 2001 From: Jeremy Greenwood Date: Sat, 8 Jul 2023 07:01:37 -0400 Subject: [PATCH 18/70] Update Swift.gitignore - Remove Accio --- Swift.gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Swift.gitignore b/Swift.gitignore index 330d1674..bb83bcfc 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -66,10 +66,6 @@ playground.xcworkspace Carthage/Build/ -# Accio dependency management -Dependencies/ -.accio/ - # fastlane # # It is recommended to not store the screenshots in the git repo. From 2e9751fef280c8705b3c890f08b7c4b80c1401b0 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 3 Sep 2023 16:40:40 -0400 Subject: [PATCH 19/70] Remove Cargo.lock from Rust --- Rust.gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Rust.gitignore b/Rust.gitignore index 6985cf1b..73fab072 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -3,10 +3,6 @@ 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 -Cargo.lock - # These are backup files generated by rustfmt **/*.rs.bk From 716e3baab06bb469457e7f91a111cd16b4e2e01b Mon Sep 17 00:00:00 2001 From: William Entriken Date: Mon, 18 Sep 2023 15:43:20 -0400 Subject: [PATCH 20/70] Add notes link --- GitHubPages.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/GitHubPages.gitignore b/GitHubPages.gitignore index fddfb6b9..493e69ba 100644 --- a/GitHubPages.gitignore +++ b/GitHubPages.gitignore @@ -14,4 +14,5 @@ _site/ # GitHub Pages will always use its own deployed version of pages-gem # This means GitHub Pages will NOT use your Gemfile.lock and therefore it is # counterproductive to check this file into the repository. +# Details at https://github.com/github/pages-gem/issues/768 Gemfile.lock From bb629fc14def1580c60c20119b6eef72e5322973 Mon Sep 17 00:00:00 2001 From: Marvin Vogt Date: Sun, 1 Oct 2023 22:41:53 +0200 Subject: [PATCH 21/70] Update PDM docs reference Co-authored-by: Leonardo Nascimento <6169152+leonaascimento@users.noreply.github.com> --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index f7f74c71..60a821a5 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -106,7 +106,7 @@ ipython_config.py #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/#use-with-ide +# https://pdm.fming.dev/latest/usage/project/#working-with-version-control .pdm.toml .pdm-python From 0bfdc4464cf28e46e29ae3c852153a30c1537507 Mon Sep 17 00:00:00 2001 From: Loo Zheng Yuan Date: Wed, 27 Dec 2023 22:59:39 +0800 Subject: [PATCH 22/70] feat: add KiCad lock/autosave files --- KiCad.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/KiCad.gitignore b/KiCad.gitignore index a63bc0e7..59fde34c 100644 --- a/KiCad.gitignore +++ b/KiCad.gitignore @@ -16,6 +16,8 @@ _autosave-* *-save.pro *-save.kicad_pcb fp-info-cache +~*.lck +\#auto_saved_files# # Netlist files (exported from Eeschema) *.net From bfa56dc5d8465f558383f6764e1219b4e983b725 Mon Sep 17 00:00:00 2001 From: Marvin Vogt Date: Thu, 28 Dec 2023 14:21:54 +0100 Subject: [PATCH 23/70] Add .pdm-build/ --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 60a821a5..82f92755 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -109,6 +109,7 @@ ipython_config.py # https://pdm.fming.dev/latest/usage/project/#working-with-version-control .pdm.toml .pdm-python +.pdm-build/ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm __pypackages__/ From 82e413a7d37610a016f540c5c63e9392b524d546 Mon Sep 17 00:00:00 2001 From: Shane Reetz Date: Mon, 25 Mar 2024 11:33:31 -0700 Subject: [PATCH 24/70] Add gitignore template for Automation Studio 4 --- AutomationStudio4.gitignore | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 AutomationStudio4.gitignore diff --git a/AutomationStudio4.gitignore b/AutomationStudio4.gitignore new file mode 100644 index 00000000..0ffd0492 --- /dev/null +++ b/AutomationStudio4.gitignore @@ -0,0 +1,36 @@ +# gitignore template for B&R Automation Studio (AS) 4 +# website: https://www.br-automation.com/en-us/products/software/automation-software/automation-studio/ + +# AS temporary directories +Binaries/ +Diagnosis/ +Temp/ +TempObjects/ + +# AS transfer files +*artransfer.br +*arTrsfmode.nv + +# 'ignored' directory +ignored/ + +# ARNC0ext +*arnc0ext.br + +# AS File types +*.bak +*.isopen +*.DS_Store +*.orig +*.log +*.asar +*.csvlog* +*.set +!**/Physical/**/*.set + +# RevInfo variables +*RevInfo.var + +# Misc +**/MPLogs/* +**/DLFiles/* From 5fbacfc2504a19e32a8b4fafe6f555d458f463e5 Mon Sep 17 00:00:00 2001 From: Daniel Lombardi Date: Sun, 31 Mar 2024 14:56:05 -0300 Subject: [PATCH 25/70] Update Go.gitignore --- Go.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Go.gitignore b/Go.gitignore index 3b735ec4..266339f3 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -19,3 +19,6 @@ # Go workspace file go.work + +# env file +.env From 893c55894773ba425a84c4b678a3882f9ab0393f Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Wed, 3 Apr 2024 21:19:57 +0100 Subject: [PATCH 26/70] Add rubber cache files to TeX.gitignore Generated by [rubber](https://tex-talk.net/2011/12/building-documents-with-rubber/). [The docs](https://github.com/petrhosek/rubber/blob/8ec18fd096b186901f197d26c8e1060b42f0b34f/doc/rubber.texi#L158) claim to use `rubber.cache`, but I've seen $filename.rubbercache in the wild, so I'm including both. --- TeX.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index e9642441..d9cf4372 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -39,6 +39,8 @@ *.synctex.gz *.synctex.gz(busy) *.pdfsync +*.rubbercache +rubber.cache ## Build tool directories for auxiliary files # latexrun From 3249072f3b096989167682c25aa558540bcced91 Mon Sep 17 00:00:00 2001 From: Gianluca Recchia Date: Mon, 22 Apr 2024 11:27:20 +0200 Subject: [PATCH 27/70] Ignore lock info files in terraform `.gitignore` This is recommended by the official Style Guide here: https://developer.hashicorp.com/terraform/language/style#gitignore. --- Terraform.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Terraform.gitignore b/Terraform.gitignore index 9b8a46e6..2faf43d0 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -23,6 +23,9 @@ override.tf.json *_override.tf *_override.tf.json +# Ignore transient lock info files created by terraform apply +.terraform.tfstate.lock.info + # Include override files you do wish to add to version control using negated pattern # !example_override.tf From 1e6efa6d03b00c7a2549987f51f8c0cb8551949e Mon Sep 17 00:00:00 2001 From: Xiangsong Zeng Date: Fri, 26 Apr 2024 18:00:50 +0800 Subject: [PATCH 28/70] Add zstd files to Archives.gitignore --- Global/Archives.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/Archives.gitignore b/Global/Archives.gitignore index 4ed9ab83..8c92521b 100644 --- a/Global/Archives.gitignore +++ b/Global/Archives.gitignore @@ -14,6 +14,8 @@ *.lzma *.cab *.xar +*.zst +*.tzst # Packing-only formats *.iso From 338eb82763772c85e64d64a94d999d83d36082e9 Mon Sep 17 00:00:00 2001 From: MountainKing123 Date: Tue, 30 Apr 2024 18:54:16 +0200 Subject: [PATCH 29/70] Update UnrealEngine.gitignore Edited Unreal Engine gitignore to also ignore "Intermediate" data in the "Plugins" directory, so it ignores deeper nested intermediate data, like with Epic's "Game Features" plugin e.g. "Plugins/GameFeatures/MyGameFeature/Intermediate". --- UnrealEngine.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 6582eaf9..705552ec 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -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 f0fc1da1b36b2ea16616b8df72b6e78e6ee9095e Mon Sep 17 00:00:00 2001 From: MountainKing123 Date: Tue, 30 Apr 2024 19:14:07 +0200 Subject: [PATCH 30/70] Same for Binaries --- UnrealEngine.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 705552ec..6e0d95fb 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -47,7 +47,7 @@ SourceArt/**/*.tga # Binary Files Binaries/* -Plugins/*/Binaries/* +Plugins/**/Binaries/* # Builds Build/* From 86ddbd59fe830c4e77f2cf1881def4f65b45a6fc Mon Sep 17 00:00:00 2001 From: beneiii Date: Sun, 5 May 2024 16:18:05 +0200 Subject: [PATCH 31/70] Add hypdoc temporary files --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index e9642441..87a82f2c 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -138,6 +138,9 @@ acs-*.bib *.trc *.xref +# hypdoc +*.hd + # hyperref *.brf From 0a8f83647e50557c37a8236016db7dadd4d83ffc Mon Sep 17 00:00:00 2001 From: zhiyuanzhai <37478391+zhiyuanzhai@users.noreply.github.com> Date: Mon, 6 May 2024 15:45:16 +0800 Subject: [PATCH 32/70] Update TeX.gitignore Adding `*.bbl-SAVE-ERROR` to `gitignore` for LaTeX. --- TeX.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/TeX.gitignore b/TeX.gitignore index e9642441..dda29305 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -26,6 +26,7 @@ ## Bibliography auxiliary files (bibtex/biblatex/biber): *.bbl +*.bbl-SAVE-ERROR *.bcf *.blg *-blx.aux From c46dfda52a23148551cef200750f7537fbd0c3c6 Mon Sep 17 00:00:00 2001 From: src_resources Date: Sat, 11 May 2024 23:45:55 +0800 Subject: [PATCH 33/70] Add RustRover entry for Rust.gitignore Add an optional entry for JetBrains's RustRover IDE in Rust.gitignore. Signed-off-by: src_resources --- Rust.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Rust.gitignore b/Rust.gitignore index 6985cf1b..d01bd1a9 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -12,3 +12,10 @@ Cargo.lock # MSVC Windows builds of rustc generate these, which store debugging information *.pdb + +# 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 From ebee5bfe87a2799d26d346798f7364eb0dccdcaf Mon Sep 17 00:00:00 2001 From: Evgeny Aleksandrov Date: Sun, 12 May 2024 17:56:43 +0300 Subject: [PATCH 34/70] Drop Xcode 3 compatibility --- Objective-C.gitignore | 13 ------------- Swift.gitignore | 13 ------------- 2 files changed, 26 deletions(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 7801c930..45c38074 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -9,19 +9,6 @@ xcuserdata/ *.xcscmblueprint *.xccheckout -## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) -build/ -DerivedData/ -*.moved-aside -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 - ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index 330d1674..bc46f5d6 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -9,19 +9,6 @@ xcuserdata/ *.xcscmblueprint *.xccheckout -## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) -build/ -DerivedData/ -*.moved-aside -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 - ## Obj-C/Swift specific *.hmap From a4043487860cd48d0bdb54aa41e21dbd7fc91afc Mon Sep 17 00:00:00 2001 From: Evgeny Aleksandrov Date: Sun, 12 May 2024 17:57:07 +0300 Subject: [PATCH 35/70] Drop Xcode 8 compatibility --- Global/Xcode.gitignore | 4 ---- Objective-C.gitignore | 4 ---- Swift.gitignore | 4 ---- 3 files changed, 12 deletions(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index f87d2f2e..5073505e 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -1,6 +1,2 @@ ## User settings xcuserdata/ - -## Xcode 8 and earlier -*.xcscmblueprint -*.xccheckout diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 45c38074..9b8cd070 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -5,10 +5,6 @@ ## User settings xcuserdata/ -## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) -*.xcscmblueprint -*.xccheckout - ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index bc46f5d6..439b68dd 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -5,10 +5,6 @@ ## User settings xcuserdata/ -## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) -*.xcscmblueprint -*.xccheckout - ## Obj-C/Swift specific *.hmap From 1ab38f03c90e3670c8255ea573b61c0ba7afc907 Mon Sep 17 00:00:00 2001 From: Costa Paraskevopoulos Date: Mon, 13 May 2024 21:26:49 +1000 Subject: [PATCH 36/70] Ignore terragrunt cache This excludes the common/default location from source control Docs: https://terragrunt.gruntwork.io/docs/features/caching/ --- Terraform.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Terraform.gitignore b/Terraform.gitignore index 9b8a46e6..a4937147 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -32,3 +32,7 @@ override.tf.json # Ignore CLI configuration files .terraformrc terraform.rc + +# Ignore the default terragrunt cache directory +# https://terragrunt.gruntwork.io/docs/features/caching/ +.terragrunt-cache From 963cebd90cb0f741c862c6d44c47da7484b1e1db Mon Sep 17 00:00:00 2001 From: DrKeek <43802867+DrKeek@users.noreply.github.com> Date: Tue, 21 May 2024 11:57:41 +0800 Subject: [PATCH 37/70] Add files via upload...UiPath.gitignore This file contains folders to be excluded for tracking during RPA development using UiPath Studio. Accidentally tracking these folders have caused issues with changing branches during code development. The UiPath developer community as of 2024 is in excess of 2 million developers spanning over 43 countries. UiPath itself has been around for 19 years since 2005. This submission can potentially help millions of new and existing UiPath developers in their work. --- community/UiPath.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 community/UiPath.gitignore diff --git a/community/UiPath.gitignore b/community/UiPath.gitignore new file mode 100644 index 00000000..3dfdbf02 --- /dev/null +++ b/community/UiPath.gitignore @@ -0,0 +1,11 @@ +# gitignore template for RPA development using UiPath Studio +# website: Advanced Automation Software, RPA Tools - Studio | UiPath +# +# Recommended: n/a + +# Ignore folders that could cause issues if accidentally tracked +**/.local/** +**/.settings/** +**/.objects/** +**/.tmh/** +**/*.log From d3217fdb67d3e3ab2c684062577b83d0bed32c76 Mon Sep 17 00:00:00 2001 From: DrKeek <43802867+DrKeek@users.noreply.github.com> Date: Tue, 21 May 2024 12:05:49 +0800 Subject: [PATCH 38/70] Add files via upload...UiPath.gitignore This file contains folders to be excluded for tracking during RPA development using UiPath Studio. Accidentally tracking these folders have caused issues with changing branches during code development. The UiPath developer community as of 2024 is in excess of 2 million developers spanning over 43 countries. UiPath itself has been around for 19 years since 2005. This submission can potentially help millions of new and existing UiPath developers in their work. --- community/UiPath.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/UiPath.gitignore b/community/UiPath.gitignore index 3dfdbf02..ef7754ae 100644 --- a/community/UiPath.gitignore +++ b/community/UiPath.gitignore @@ -1,5 +1,5 @@ # gitignore template for RPA development using UiPath Studio -# website: Advanced Automation Software, RPA Tools - Studio | UiPath +# website: https://www.uipath.com/product/studio # # Recommended: n/a From dae1884ac122951c93be0bb7ef990a118c0b2ed2 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sat, 25 May 2024 13:50:47 -0700 Subject: [PATCH 39/70] Create ReScript.gitignore --- ReScript.gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 ReScript.gitignore diff --git a/ReScript.gitignore b/ReScript.gitignore new file mode 100644 index 00000000..4b1879f3 --- /dev/null +++ b/ReScript.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/node_modules/ +/lib/ +.bsb.lock From 3af7bb0480965c24777d19d8aa6fbfd92080b92a Mon Sep 17 00:00:00 2001 From: Ramith Rodrigo Date: Mon, 8 Apr 2024 15:59:38 +0530 Subject: [PATCH 40/70] Create Ballerina.gitignore --- Ballerina.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Ballerina.gitignore diff --git a/Ballerina.gitignore b/Ballerina.gitignore new file mode 100644 index 00000000..030a350f --- /dev/null +++ b/Ballerina.gitignore @@ -0,0 +1,11 @@ +# generated files +target/ +generated/ + +# dependencies +Dependencies.toml + +# config files +Config.toml +# the config files used for testing, Uncomment the following line if you want to commit the test config files +#!**/tests/Config.toml From da6d5a73e7bc853b0903efe170b755a1c97f170b Mon Sep 17 00:00:00 2001 From: Shane Reetz Date: Wed, 29 May 2024 10:54:12 -0700 Subject: [PATCH 41/70] Remove OS-specific files from gitignore --- AutomationStudio4.gitignore | 5 ----- 1 file changed, 5 deletions(-) diff --git a/AutomationStudio4.gitignore b/AutomationStudio4.gitignore index 0ffd0492..b5552b17 100644 --- a/AutomationStudio4.gitignore +++ b/AutomationStudio4.gitignore @@ -20,7 +20,6 @@ ignored/ # AS File types *.bak *.isopen -*.DS_Store *.orig *.log *.asar @@ -30,7 +29,3 @@ ignored/ # RevInfo variables *RevInfo.var - -# Misc -**/MPLogs/* -**/DLFiles/* From b7450f4d3dea97b534d4ff972951f023a81e5481 Mon Sep 17 00:00:00 2001 From: Krishnadhas N K <108367225+githubofkrishnadhas@users.noreply.github.com> Date: Thu, 30 May 2024 13:39:25 +0530 Subject: [PATCH 42/70] Update Terraform.gitignore to ignore .hcl files --- Terraform.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Terraform.gitignore b/Terraform.gitignore index 2faf43d0..15073ca8 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -35,3 +35,6 @@ override.tf.json # Ignore CLI configuration files .terraformrc terraform.rc + +# Ignore hcl file +.terraform.lock.hcl From 403cf39f224afb0c301b3e683a210a3272c03ad1 Mon Sep 17 00:00:00 2001 From: Costa Paraskevopoulos Date: Fri, 31 May 2024 19:23:32 +1000 Subject: [PATCH 43/70] Migrate terragrunt ignore to new template as suggested --- Terraform.gitignore | 4 ---- community/Terragrunt.gitignore | 3 +++ 2 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 community/Terragrunt.gitignore diff --git a/Terraform.gitignore b/Terraform.gitignore index a4937147..9b8a46e6 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -32,7 +32,3 @@ override.tf.json # Ignore CLI configuration files .terraformrc terraform.rc - -# Ignore the default terragrunt cache directory -# https://terragrunt.gruntwork.io/docs/features/caching/ -.terragrunt-cache diff --git a/community/Terragrunt.gitignore b/community/Terragrunt.gitignore new file mode 100644 index 00000000..ea480863 --- /dev/null +++ b/community/Terragrunt.gitignore @@ -0,0 +1,3 @@ +# Ignore the default terragrunt cache directory +# https://terragrunt.gruntwork.io/docs/features/caching/ +.terragrunt-cache From 5db49b3de977126402dae1edb6a66fde4c7816c7 Mon Sep 17 00:00:00 2001 From: diffstorm Date: Fri, 31 May 2024 14:30:26 +0300 Subject: [PATCH 44/70] Create IAR.gitignore gitignore for IAR Embedded Workbench --- IAR.gitignore | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 IAR.gitignore diff --git a/IAR.gitignore b/IAR.gitignore new file mode 100644 index 00000000..a6f6f775 --- /dev/null +++ b/IAR.gitignore @@ -0,0 +1,47 @@ +# Compiled binaries +*.o +*.bin +*.elf +*.hex +*.map +*.out +*.obj + +# Trash +*.bak +thumbs.db +*.~* + +# IAR Settings +**/settings/*.crun +**/settings/*.dbgdt +**/settings/*.cspy +**/settings/*.cspy.* +**/settings/*.xcl +**/settings/*.dni +**/settings/*.wsdt +**/settings/*.wspos + +# IAR Debug Exe +**/Exe/*.sim + +# IAR Debug Obj +**/Obj/*.pbd +**/Obj/*.pbd.* +**/Obj/*.pbi +**/Obj/*.pbi.* + +# IAR project "Debug" directory +Debug/ + +# IAR project "Release" directory +Release/ + +# IAR project settings directory +settings/ + +# IAR backup files +Backup* + +# IAR .dep files +*.dep \ No newline at end of file From fbcb2e3f1652bdfa913db2b24c82f3955af73207 Mon Sep 17 00:00:00 2001 From: Cliff Li Date: Mon, 3 Jun 2024 17:30:12 +0200 Subject: [PATCH 45/70] Revert #4451 --- Terraform.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Terraform.gitignore b/Terraform.gitignore index 15073ca8..2faf43d0 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -35,6 +35,3 @@ override.tf.json # Ignore CLI configuration files .terraformrc terraform.rc - -# Ignore hcl file -.terraform.lock.hcl From 95aacb9500ccd6142413e27c4c299bf2e8a186a6 Mon Sep 17 00:00:00 2001 From: Navaneeth Anand Date: Tue, 4 Jun 2024 08:37:10 +0530 Subject: [PATCH 46/70] Update Python.gitignore Add .pypirc to protect sensitive information --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 82f92755..fe4d54a9 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -160,3 +160,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/ + +# PyPI configuration file +.pypirc From a30c2940f1c2ee648a3f1a21a2388ae9d8bfbc4c Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 12 Jun 2024 11:56:01 -0700 Subject: [PATCH 47/70] Update ReScript.gitignore --- ReScript.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/ReScript.gitignore b/ReScript.gitignore index 4b1879f3..b7364c93 100644 --- a/ReScript.gitignore +++ b/ReScript.gitignore @@ -1,4 +1,3 @@ -.DS_Store /node_modules/ /lib/ .bsb.lock From 14be7ece29d26c1f5ac372b1a4cdbd8644a4f342 Mon Sep 17 00:00:00 2001 From: Yunyang Date: Wed, 17 Jul 2024 16:34:18 +0800 Subject: [PATCH 48/70] Add Hexo.gitignore --- community/Hexo.gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 community/Hexo.gitignore diff --git a/community/Hexo.gitignore b/community/Hexo.gitignore new file mode 100644 index 00000000..97c9f357 --- /dev/null +++ b/community/Hexo.gitignore @@ -0,0 +1,22 @@ +# gitignore template for Hexo sites +# Ignore generated files and directories +.DS_Store +.tmp* +dist/ +coverage/ + +# Ignore dependencies and lock files +node_modules/ +tmp/ +yarn.lock +package-lock.json +pnpm-lock.yaml + +# Ignore IDE specific files and directories +.idea/ +.vscode + +# Ignore code coverage output +.nyc_output/ + +# Add any additional patterns here \ No newline at end of file From 038a66091d1c1db8d4e216b32b6070aa39425be5 Mon Sep 17 00:00:00 2001 From: Yunyang Date: Wed, 17 Jul 2024 16:37:58 +0800 Subject: [PATCH 49/70] Update Hexo.gitignore --- community/Hexo.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/community/Hexo.gitignore b/community/Hexo.gitignore index 97c9f357..e7ef8aff 100644 --- a/community/Hexo.gitignore +++ b/community/Hexo.gitignore @@ -3,6 +3,7 @@ .DS_Store .tmp* dist/ +public/ coverage/ # Ignore dependencies and lock files @@ -19,4 +20,6 @@ pnpm-lock.yaml # Ignore code coverage output .nyc_output/ -# Add any additional patterns here \ No newline at end of file +# Add any additional patterns here +db.json +.deploy_git/ From 3a3cf7fad42937d4b7a615a571854858cae9bea3 Mon Sep 17 00:00:00 2001 From: Yunyang Date: Wed, 17 Jul 2024 16:53:33 +0800 Subject: [PATCH 50/70] Remove some global ignores --- community/Hexo.gitignore | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/community/Hexo.gitignore b/community/Hexo.gitignore index e7ef8aff..519005d4 100644 --- a/community/Hexo.gitignore +++ b/community/Hexo.gitignore @@ -1,25 +1,19 @@ # gitignore template for Hexo sites +# website: https://hexo.io/ +# Recommended: Node.gitignore + # Ignore generated files and directories -.DS_Store .tmp* dist/ public/ coverage/ -# Ignore dependencies and lock files -node_modules/ +# Ignore temp files and lock files tmp/ yarn.lock package-lock.json pnpm-lock.yaml -# Ignore IDE specific files and directories -.idea/ -.vscode - -# Ignore code coverage output -.nyc_output/ - # Add any additional patterns here db.json .deploy_git/ From 71eddf97b6d7ccae140c075aab37aa4cc5a13b7f Mon Sep 17 00:00:00 2001 From: Matt Kotsenas Date: Wed, 14 Aug 2024 17:27:36 -0700 Subject: [PATCH 51/70] Update VisualStudio.gitignore `Directory.Build.rsp` is a [documented file][1] that allows setting default arguments to command line builds. However, our .gitignore template ignores _all_ `*.rsp` files. which causes confusion: 1. Devs write an .rsp file and if they aren't being attentive forget to commit it 2. Adding it to git requires `git add --force`, which some devs mistake for a destructive or not-recommended action Thus, explicitly allow the `Directory.Build.rsp` file. [1]: https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-response-files?view=vs-2022#directorybuildrsp --- VisualStudio.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..a4fe18bd 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -82,6 +82,8 @@ StyleCopReport.xml *.pgc *.pgd *.rsp +# but not Directory.Build.rsp, as it configures directory-level build defaults +!Directory.Build.rsp *.sbr *.tlb *.tli From e624f8594a9d3594a5d31791c843fd3eea3cbe78 Mon Sep 17 00:00:00 2001 From: Yunyang Date: Sat, 31 Aug 2024 13:33:36 +0800 Subject: [PATCH 52/70] fix: update Hexo.gitignore --- community/Hexo.gitignore | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/community/Hexo.gitignore b/community/Hexo.gitignore index 519005d4..8b4c6458 100644 --- a/community/Hexo.gitignore +++ b/community/Hexo.gitignore @@ -4,9 +4,7 @@ # Ignore generated files and directories .tmp* -dist/ public/ -coverage/ # Ignore temp files and lock files tmp/ @@ -16,4 +14,4 @@ pnpm-lock.yaml # Add any additional patterns here db.json -.deploy_git/ +.deploy*/ From fc32973012b09f311b78ef39065172de4c35e0d1 Mon Sep 17 00:00:00 2001 From: Yunyang Date: Sat, 31 Aug 2024 15:23:56 +0800 Subject: [PATCH 53/70] docs: update Hexo.gitignore --- community/Hexo.gitignore | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/community/Hexo.gitignore b/community/Hexo.gitignore index 8b4c6458..570a5e7b 100644 --- a/community/Hexo.gitignore +++ b/community/Hexo.gitignore @@ -2,16 +2,13 @@ # website: https://hexo.io/ # Recommended: Node.gitignore -# Ignore generated files and directories -.tmp* +# Ignore generated directory public/ -# Ignore temp files and lock files +# Ignore temp files tmp/ -yarn.lock -package-lock.json -pnpm-lock.yaml +.tmp* -# Add any additional patterns here +# additional files db.json .deploy*/ From 4b771ac75ad916b158628fa2967ac76a6dcac967 Mon Sep 17 00:00:00 2001 From: Bruno Schaatsbergen Date: Sat, 7 Sep 2024 14:21:37 +0200 Subject: [PATCH 54/70] feat: add Zig.gitignore Signed-off-by: Bruno Schaatsbergen --- Zig.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Zig.gitignore diff --git a/Zig.gitignore b/Zig.gitignore new file mode 100644 index 00000000..3389c86c --- /dev/null +++ b/Zig.gitignore @@ -0,0 +1,2 @@ +.zig-cache/ +zig-out/ From e3e4933fa5594ebd69307ef573d882a077e2ddac Mon Sep 17 00:00:00 2001 From: Cem Mergenci Date: Fri, 27 Sep 2024 22:37:52 +0300 Subject: [PATCH 55/70] Fix broken links to Git book. --- README.md | 2 +- community/Alteryx.gitignore | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7014eed7..c43b1d0e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ the following resources are a great place to start: [man]: http://git-scm.com/docs/gitignore [help]: https://help.github.com/articles/ignoring-files -[chapter]: https://git-scm.com/book/en/Git-Basics-Recording-Changes-to-the-Repository#_ignoring +[chapter]: https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring [progit]: http://git-scm.com/book ## Folder structure diff --git a/community/Alteryx.gitignore b/community/Alteryx.gitignore index a8e1341f..8fe3c5cd 100644 --- a/community/Alteryx.gitignore +++ b/community/Alteryx.gitignore @@ -29,7 +29,7 @@ CASS.ini *.gzlc ## gitignore reference sites -# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files +# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring # https://git-scm.com/docs/gitignore # https://help.github.com/articles/ignoring-files/ From ad949c4f0161fcd1df070262cef7c70bdc1b3d4e Mon Sep 17 00:00:00 2001 From: Greg Nazario Date: Tue, 6 Feb 2024 11:43:00 -0800 Subject: [PATCH 56/70] Adds Move language Move language is used for MoveVM based blockchains as the language native to them. The compiler provides a folder build/ that holds the build artifacts. The .aptos/ folder is ignored so people do not upload their private keys to a git repository. --- community/Move.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 community/Move.gitignore diff --git a/community/Move.gitignore b/community/Move.gitignore new file mode 100644 index 00000000..b7d406e7 --- /dev/null +++ b/community/Move.gitignore @@ -0,0 +1,6 @@ +# Generated by Move +# will have compiled files +build/ + +# Remove possibly saving credentials to the git repository +.aptos/ From 92cceed6173076b0e5a52bb2417ca8cc1dd2abdf Mon Sep 17 00:00:00 2001 From: Shane Reetz Date: Fri, 11 Oct 2024 14:24:26 -0700 Subject: [PATCH 57/70] Rename AutomationStudio4.gitignore to AutomationStudio, and move to Community folder --- .../AutomationStudio.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename AutomationStudio4.gitignore => community/AutomationStudio.gitignore (100%) diff --git a/AutomationStudio4.gitignore b/community/AutomationStudio.gitignore similarity index 100% rename from AutomationStudio4.gitignore rename to community/AutomationStudio.gitignore From 30ce81193f04e925167391a0ba65a9fe65c36c10 Mon Sep 17 00:00:00 2001 From: Owen Valentine Date: Wed, 16 Oct 2024 17:20:16 +0200 Subject: [PATCH 58/70] Add OpenTofu to community --- community/OpenTofu.gitignore | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 community/OpenTofu.gitignore diff --git a/community/OpenTofu.gitignore b/community/OpenTofu.gitignore new file mode 100644 index 00000000..0c736af6 --- /dev/null +++ b/community/OpenTofu.gitignore @@ -0,0 +1,42 @@ +# Local .terraform directories +**/.terraform/* + +# .tfstate files +*.tfstate +*.tfstate.* + +# Crash log files +crash.log +crash.*.log + +# Exclude all .tfvars files, which are likely to contain sensitive data, such as +# password, private keys, and other secrets. These should not be part of version +# control as they are data points which are potentially sensitive and subject +# to change depending on the environment. +*.tfvars +*.tfvars.json + +# Ignore override files as they are usually used to override resources locally and so +# are not checked in +override.tf +override.tofu +override.tf.json +override.tofu.json +*_override.tf +*_override.tofu +*_override.tf.json +*_override.tofu.json + +# Ignore transient lock info files created by tofu apply +.terraform.tfstate.lock.info + +# Include override files you do wish to add to version control using negated pattern +# !example_override.tf +# !example_override.tofu + +# Include tfplan files to ignore the plan output of command: tofu plan -out=tfplan +# example: *tfplan* + +# Ignore CLI configuration files +.terraformrc +terraform.rc From 14c91a18cc0d7cecbee841f22be24293b91b0ced Mon Sep 17 00:00:00 2001 From: Dietmar Winkler Date: Sat, 14 Jan 2023 00:36:43 +0100 Subject: [PATCH 59/70] Adds some more OS specific file to the ignore list --- Modelica.gitignore | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Modelica.gitignore b/Modelica.gitignore index 0aca78a0..7b983f8a 100644 --- a/Modelica.gitignore +++ b/Modelica.gitignore @@ -7,6 +7,9 @@ *.bak *.bak-mo *.mof +\#*\# +*.moe +*.mol ## Build artefacts *.exe @@ -35,4 +38,8 @@ request stat status stop -success \ No newline at end of file +success +*. + +## Files generated by OS X +.DS_Store From 78ad738f759ac42496be12a69af3776b80f8deae Mon Sep 17 00:00:00 2001 From: moser-jose Date: Thu, 21 Nov 2024 23:14:01 -0300 Subject: [PATCH 60/70] included lines in Laravel.gitignore file --- Laravel.gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Laravel.gitignore b/Laravel.gitignore index 297959a1..1832e948 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -21,3 +21,15 @@ Homestead.yaml Homestead.json /.vagrant .phpunit.result.cache + +/public/build +/storage/pail +.env.backup +.env.production +.phpactor.json +auth.json +/.fleet +/.idea +/.nova +/.vscode +/.zed From 77f5e60953b9473ef7c9841a2ebf829689a362d7 Mon Sep 17 00:00:00 2001 From: moser-jose Date: Tue, 26 Nov 2024 23:40:25 -0300 Subject: [PATCH 61/70] remove lines /.fleet /.idea /.nova /.vscode /.zed --- Laravel.gitignore | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Laravel.gitignore b/Laravel.gitignore index 1832e948..d5673e32 100644 --- a/Laravel.gitignore +++ b/Laravel.gitignore @@ -28,8 +28,3 @@ Homestead.json .env.production .phpactor.json auth.json -/.fleet -/.idea -/.nova -/.vscode -/.zed From b6ddf064dd1ffad9747164f333243bd6a7f4ce87 Mon Sep 17 00:00:00 2001 From: DrDead0 <112349103+DrDead0@users.noreply.github.com> Date: Sun, 1 Dec 2024 21:17:36 +0530 Subject: [PATCH 62/70] added gitignore for firebase --- Firebase.gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 Firebase.gitignore diff --git a/Firebase.gitignore b/Firebase.gitignore new file mode 100644 index 00000000..e776368b --- /dev/null +++ b/Firebase.gitignore @@ -0,0 +1,44 @@ +# Firebase build and deployment files +/firebase-debug.log +/firebase-debug.*.log +.firebaserc + +# Firebase Hosting +/firebase.json +*.cache +hosting/.cache + +# Firebase Functions +/node_modules/ +/functions/node_modules/ +/functions/.env +/functions/package-lock.json + +# Firebase Emulators +/firebase-*.zip +/.firebase/ +/emulator-ui/ + +# Logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# OS-specific files +.DS_Store +Thumbs.db + +# IDE files +.idea/ +.vscode/ +*.sublime* + +# Environment files (local configs) +.env +.env.* +.env.local +.env.development +.env.production +.env.test +.env.staging \ No newline at end of file From 5b3f2595aeaf5709211e27cb77a6a8139aea0a72 Mon Sep 17 00:00:00 2001 From: Stanley M Ndagi Date: Mon, 2 Dec 2024 03:24:39 +0300 Subject: [PATCH 63/70] Update Node.gitignore Include VitePress --- Node.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index c6bba591..1984ae58 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -100,7 +100,10 @@ dist # vuepress build output .vuepress/dist -# vuepress v2.x temp and cache directory +# vitepress build output +.vitepress/dist + +# vuepress v2.x / vitepress temp and cache directory .temp .cache From 29d931584421f77a7d0bdaa43b0b75be50fae435 Mon Sep 17 00:00:00 2001 From: Daniel Shuy <17351764+daniel-shuy@users.noreply.github.com> Date: Mon, 2 Dec 2024 16:51:56 +0800 Subject: [PATCH 64/70] Update for Kotlin 2.x.x Ignore Kotlin data directory for Kotlin Gradle plugin Signed-off-by: Daniel Shuy <17351764+daniel-shuy@users.noreply.github.com> --- Kotlin.gitignore | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) mode change 120000 => 100644 Kotlin.gitignore diff --git a/Kotlin.gitignore b/Kotlin.gitignore deleted file mode 120000 index c48376ee..00000000 --- a/Kotlin.gitignore +++ /dev/null @@ -1 +0,0 @@ -Java.gitignore \ No newline at end of file diff --git a/Kotlin.gitignore b/Kotlin.gitignore new file mode 100644 index 00000000..566e06bf --- /dev/null +++ b/Kotlin.gitignore @@ -0,0 +1,27 @@ +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +replay_pid* + +# Kotlin Gradle plugin data, see https://kotlinlang.org/docs/whatsnew20.html#new-directory-for-kotlin-data-in-gradle-projects +.kotlin/ \ No newline at end of file From a38f687cecea81f63c55d4b05a6d3fcc88aa712a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kalle=20M=C3=B8ller?= Date: Tue, 3 Dec 2024 07:25:58 +0100 Subject: [PATCH 65/70] Added uv.lock alongside pdm and poetry --- Python.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 82f92755..c2fb7733 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -94,6 +94,12 @@ ipython_config.py # install all needed dependencies. #Pipfile.lock +# UV +# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +#uv.lock + # poetry # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. # This is especially recommended for binary packages to ensure reproducibility, and is more From 7111173b6b414609393d57e0d337afadcee6480a Mon Sep 17 00:00:00 2001 From: DrDead0 <112349103+DrDead0@users.noreply.github.com> Date: Sat, 14 Dec 2024 22:53:27 +0530 Subject: [PATCH 66/70] Updated Firebase.gitignore based on feedback: scoped to Firebase, removed unrelated entries --- Firebase.gitignore | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/Firebase.gitignore b/Firebase.gitignore index e776368b..55b8b0ea 100644 --- a/Firebase.gitignore +++ b/Firebase.gitignore @@ -9,7 +9,6 @@ hosting/.cache # Firebase Functions -/node_modules/ /functions/node_modules/ /functions/.env /functions/package-lock.json @@ -25,20 +24,5 @@ npm-debug.log* yarn-debug.log* yarn-error.log* -# OS-specific files -.DS_Store -Thumbs.db - -# IDE files -.idea/ -.vscode/ -*.sublime* - # Environment files (local configs) -.env -.env.* -.env.local -.env.development -.env.production -.env.test -.env.staging \ No newline at end of file +/.env.* From 218d0dcd59392545424195c569182ebe838197a0 Mon Sep 17 00:00:00 2001 From: Dietmar Winkler Date: Tue, 17 Dec 2024 22:08:43 +0100 Subject: [PATCH 67/70] Remove OS specific settings covered by globals --- Modelica.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Modelica.gitignore b/Modelica.gitignore index 7b983f8a..aa2cc996 100644 --- a/Modelica.gitignore +++ b/Modelica.gitignore @@ -40,6 +40,3 @@ status stop success *. - -## Files generated by OS X -.DS_Store From 3aa43d91320bb827ebd9bd276489d02d01dd4d83 Mon Sep 17 00:00:00 2001 From: Stanley M Ndagi Date: Sun, 22 Dec 2024 18:10:41 +0300 Subject: [PATCH 68/70] Update Node.gitignore --- Node.gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Node.gitignore b/Node.gitignore index 1984ae58..3601b7a8 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -103,10 +103,14 @@ dist # vitepress build output .vitepress/dist -# vuepress v2.x / vitepress temp and cache directory +# vuepress v2.x temp and cache directory .temp .cache +# vitepress temp and cache directory +.vitepress/temp +.vitepress/cache + # Docusaurus cache and generated files .docusaurus From 47990e1d0aab82c7bdec85b3ba5e619d65448ab8 Mon Sep 17 00:00:00 2001 From: Stanley M Ndagi Date: Sun, 22 Dec 2024 19:59:00 +0300 Subject: [PATCH 69/70] Update Node.gitignore --- Node.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index 3601b7a8..e0c02d12 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -101,15 +101,15 @@ dist .vuepress/dist # vitepress build output -.vitepress/dist +**/.vitepress/dist # vuepress v2.x temp and cache directory .temp .cache # vitepress temp and cache directory -.vitepress/temp -.vitepress/cache +**/.vitepress/temp +**/.vitepress/cache # Docusaurus cache and generated files .docusaurus From 3800aff005a18b7f937fb6bbbdd4da2fc5261d24 Mon Sep 17 00:00:00 2001 From: Stanley M Ndagi Date: Mon, 23 Dec 2024 14:16:03 +0300 Subject: [PATCH 70/70] Update Node.gitignore --- Node.gitignore | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Node.gitignore b/Node.gitignore index e0c02d12..1170717c 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -100,15 +100,14 @@ dist # vuepress build output .vuepress/dist -# vitepress build output -**/.vitepress/dist - # vuepress v2.x temp and cache directory .temp .cache -# vitepress temp and cache directory -**/.vitepress/temp +# vitepress build output +**/.vitepress/dist + +# vitepress cache directory **/.vitepress/cache # Docusaurus cache and generated files