From 8cd8a2977c26edca19728c958440e563fe6770c8 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Thu, 20 Feb 2025 08:40:49 +0800 Subject: [PATCH] chore: update .gitignore to explicitly commit env files - .env, .env.local, and .env*.local will now be explicitly committed if needed. - Removed the wildcard .env* from being ignored, allowing specific env files to be tracked. --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5ef6a52..8dbff08 100644 --- a/.gitignore +++ b/.gitignore @@ -31,7 +31,9 @@ yarn-error.log* .pnpm-debug.log* # env files (can opt-in for committing if needed) -.env* +.env +.env.local +.env*.local # vercel .vercel