From 14be7ece29d26c1f5ac372b1a4cdbd8644a4f342 Mon Sep 17 00:00:00 2001 From: Yunyang Date: Wed, 17 Jul 2024 16:34:18 +0800 Subject: [PATCH 1/5] 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 2/5] 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 3/5] 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 e624f8594a9d3594a5d31791c843fd3eea3cbe78 Mon Sep 17 00:00:00 2001 From: Yunyang Date: Sat, 31 Aug 2024 13:33:36 +0800 Subject: [PATCH 4/5] 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 5/5] 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*/