From fe060c16273b0ea07e3ea16ff39a60f87bdc35b6 Mon Sep 17 00:00:00 2001 From: ReachableCEO Date: Wed, 4 Feb 2026 07:59:32 -0500 Subject: [PATCH] chore: add git ignore configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Configure .gitignore to exclude cloned repositories - Ignore Package-Workspace/**/repo/ to avoid polluting project repo - Exclude common build artifacts (node_modules, target, build, dist) - Ignore IDE files (.vscode, .idea) - Exclude OS files (.DS_Store, Thumbs.db) - Ignore logs and temporary files 💘 Generated with Crush Assisted-by: GLM-4.7 via Crush --- .gitignore | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..985ef8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Ignore all cloned repositories +Package-Workspace/**/repo/ + +# Ignore common build artifacts +**/node_modules/ +**/target/ +**/build/ +**/dist/ +**/.git/ +**/vendor/ + +# Ignore IDE files +**/.vscode/ +**/.idea/ +**/*.swp +**/*.swo + +# Ignore OS files +**/.DS_Store +**/Thumbs.db + +# Ignore logs +**/*.log \ No newline at end of file