From 36eda7315b0361a01fa31c028fc5cc1bc5316f00 Mon Sep 17 00:00:00 2001 From: Kartik Verma Date: Mon, 11 Aug 2025 15:39:10 +0530 Subject: [PATCH 1/3] chore: add gitignore --- .gitignore | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..0250eb7d --- /dev/null +++ b/.gitignore @@ -0,0 +1,95 @@ +# Go language +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool +*.out +*.coverage +coverage.txt +coverage.html + +# Dependency directories (remove the comment below to include it) +vendor/ + +# Go workspace file +go.work +go.work.sum + +# Build artifacts +dist/ +build/ +bin/ +*.tmp + +# VS Code +.vscode/ +*.code-workspace + +# JetBrains IDEs (GoLand, IntelliJ IDEA, etc.) +.idea/ +*.iml +*.iws +*.ipr + +# OS generated files +# macOS +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Windows +Desktop.ini +$RECYCLE.BIN/ + +# Linux +*~ +.nfs* + +# Editor temporary files +*.swp +*.swo +.#* +\#*# +*.orig +*.rej + +# Log files +*.log +logs/ + +# Temporary files +*.temp +tmp/ +temp/ + +# Environment files +.env +.env.local +.env.*.local + +# Debug files +debug +debug.test +__debug_bin + +# Crash log files +crash.log + +# Profiling files +*.prof +*.pprof +cpu.prof +mem.prof +block.prof +mutex.prof From 6f733fe9c1df97a932a9b80ac575d8f3b2455aa8 Mon Sep 17 00:00:00 2001 From: Kartik Verma Date: Mon, 11 Aug 2025 18:00:04 +0530 Subject: [PATCH 2/3] fix: use necessary patterns in gitignore --- .gitignore | 88 ++---------------------------------------------------- 1 file changed, 2 insertions(+), 86 deletions(-) diff --git a/.gitignore b/.gitignore index 0250eb7d..895c573e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,95 +1,11 @@ -# Go language -# Binaries for programs and plugins +# Binaries *.exe *.exe~ -*.dll -*.so -*.dylib -# Test binary, built with `go test -c` -*.test - -# Output of the go coverage tool -*.out -*.coverage -coverage.txt -coverage.html - -# Dependency directories (remove the comment below to include it) -vendor/ - -# Go workspace file -go.work -go.work.sum - -# Build artifacts -dist/ -build/ -bin/ -*.tmp - -# VS Code +# IDE files .vscode/ *.code-workspace -# JetBrains IDEs (GoLand, IntelliJ IDEA, etc.) -.idea/ -*.iml -*.iws -*.ipr - -# OS generated files -# macOS -.DS_Store -.DS_Store? -._* -.Spotlight-V100 -.Trashes -ehthumbs.db -Thumbs.db - -# Windows -Desktop.ini -$RECYCLE.BIN/ - -# Linux -*~ -.nfs* - -# Editor temporary files -*.swp -*.swo -.#* -\#*# -*.orig -*.rej - -# Log files -*.log -logs/ - -# Temporary files -*.temp -tmp/ -temp/ - -# Environment files -.env -.env.local -.env.*.local - -# Debug files -debug -debug.test -__debug_bin - -# Crash log files -crash.log - # Profiling files *.prof *.pprof -cpu.prof -mem.prof -block.prof -mutex.prof From 66b536b720afc9f34c0f1ef494079e896bbe047b Mon Sep 17 00:00:00 2001 From: Kartik Verma Date: Mon, 11 Aug 2025 18:02:34 +0530 Subject: [PATCH 3/3] fix: add more --- .gitignore | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 895c573e..17341605 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,38 @@ -# Binaries +# Builds *.exe *.exe~ +dist/ +build/ +bin/ +*.tmp # IDE files .vscode/ *.code-workspace +.idea/ +*~ -# Profiling files +# Go Specific *.prof *.pprof +*.out +*.coverage +coverage.txt +coverage.html + +# OS generated files +# macOS +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Windows +Desktop.ini +$RECYCLE.BIN/ + +# Linux +.nfs*