From 4485718885655a7d9cc806abc15cf9e9b8453d1c Mon Sep 17 00:00:00 2001 From: OpenCode Test Date: Wed, 24 Dec 2025 13:03:34 -0800 Subject: [PATCH] chore: add .gitignore for Go project Exclude build artifacts, binaries, IDE files, and temporary files from version control. --- .gitignore | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6ea1a89..b186579 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,43 @@ +# Node.js node_modules/ .next/ dist/ -.DS_Store .env .env.* + +# Binaries +bin/ +controltower + +# Build artifacts +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary +*.test + +# Output of the go coverage tool +*.out + +# Go workspace file +go.work + +# Build cache +.cache/ + +# IDE files +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# OS files +.DS_Store +Thumbs.db + +# Temporary files +CHANGES_SUMMARY.sh