From 56e3bff1e6d7e407f3ba60c417dd9e8293ec566b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 16 Nov 2025 11:59:52 +0000 Subject: [PATCH 1/2] Initial plan From 54dd02c8a932cfc78b6e3aa1d2d4579f00ef6d9f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 16 Nov 2025 12:04:07 +0000 Subject: [PATCH 2/2] Add comprehensive .gitignore for Go exercise Co-authored-by: sebseb10 <187036447+sebseb10@users.noreply.github.com> --- .gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..18367af --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Go workspace file +go.work +go.work.sum + +# Dependency directories (vendor is typically committed, but can be ignored if using modules) +# vendor/ + +# Build artifacts +bin/ +build/ +dist/ + +# IDE and editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# OS generated files +Thumbs.db +ehthumbs.db + +# Temporary files +tmp/ +temp/ + +# Debug files +debug +__debug_bin*