From 4f7ad979b9c39e442b534656b330d07eaf0de978 Mon Sep 17 00:00:00 2001 From: Kacper Ksieski Date: Mon, 11 May 2020 20:44:59 -0400 Subject: [PATCH 01/45] 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/45] 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/45] 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/45] 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/45] 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/45] 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/45] 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/45] 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/45] 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/45] 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 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 11/45] 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 e8131b2a80ed1fa84c94da08d257969a198d0ee4 Mon Sep 17 00:00:00 2001 From: Marvin Vogt Date: Sun, 9 Apr 2023 18:25:17 +0200 Subject: [PATCH 12/45] 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 13/45] 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 716e3baab06bb469457e7f91a111cd16b4e2e01b Mon Sep 17 00:00:00 2001 From: William Entriken Date: Mon, 18 Sep 2023 15:43:20 -0400 Subject: [PATCH 14/45] 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 15/45] 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 16/45] 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 17/45] 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 5fbacfc2504a19e32a8b4fafe6f555d458f463e5 Mon Sep 17 00:00:00 2001 From: Daniel Lombardi Date: Sun, 31 Mar 2024 14:56:05 -0300 Subject: [PATCH 18/45] 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 19/45] 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 20/45] 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 21/45] 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 22/45] 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 23/45] 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 24/45] 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 c46dfda52a23148551cef200750f7537fbd0c3c6 Mon Sep 17 00:00:00 2001 From: src_resources Date: Sat, 11 May 2024 23:45:55 +0800 Subject: [PATCH 25/45] 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 26/45] 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 27/45] 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 28/45] 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 29/45] 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 30/45] 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 31/45] 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 32/45] 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 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 33/45] 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 34/45] 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 35/45] 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 36/45] 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 a30c2940f1c2ee648a3f1a21a2388ae9d8bfbc4c Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 12 Jun 2024 11:56:01 -0700 Subject: [PATCH 37/45] 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 38/45] 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 39/45] 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 40/45] 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 41/45] 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 42/45] 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 43/45] 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 44/45] 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 ad949c4f0161fcd1df070262cef7c70bdc1b3d4e Mon Sep 17 00:00:00 2001 From: Greg Nazario Date: Tue, 6 Feb 2024 11:43:00 -0800 Subject: [PATCH 45/45] 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/