From abbcca282f7317bde950e46a07872088e4f8b341 Mon Sep 17 00:00:00 2001 From: Bick Doner Date: Wed, 16 Feb 2022 13:36:16 +0100 Subject: [PATCH 01/14] 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 0bfdc4464cf28e46e29ae3c852153a30c1537507 Mon Sep 17 00:00:00 2001 From: Loo Zheng Yuan Date: Wed, 27 Dec 2023 22:59:39 +0800 Subject: [PATCH 02/14] 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 1ab38f03c90e3670c8255ea573b61c0ba7afc907 Mon Sep 17 00:00:00 2001 From: Costa Paraskevopoulos Date: Mon, 13 May 2024 21:26:49 +1000 Subject: [PATCH 03/14] 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 dae1884ac122951c93be0bb7ef990a118c0b2ed2 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sat, 25 May 2024 13:50:47 -0700 Subject: [PATCH 04/14] 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 403cf39f224afb0c301b3e683a210a3272c03ad1 Mon Sep 17 00:00:00 2001 From: Costa Paraskevopoulos Date: Fri, 31 May 2024 19:23:32 +1000 Subject: [PATCH 05/14] 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 a30c2940f1c2ee648a3f1a21a2388ae9d8bfbc4c Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 12 Jun 2024 11:56:01 -0700 Subject: [PATCH 06/14] 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 07/14] 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 08/14] 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 09/14] 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 10/14] 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 11/14] 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 12/14] 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 13/14] 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 14/14] 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/