Add standard .gitignore for Go projects

This commit is contained in:
Bastian Bührig
2025-07-11 09:30:04 +02:00
parent eae708151d
commit b8eaab679a
5 changed files with 41 additions and 0 deletions

41
.gitignore vendored Normal file
View File

@@ -0,0 +1,41 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
# Output of the Go coverage tool, specifically when used with LiteIDE
*.out
# Build directories
/dist/
/build/
/bin/
# Go workspace file
*.code-workspace
# Dependency directories (vendor/)
vendor/
# Go modules
/go.sum
# IDE/editor files
.idea/
.vscode/
*.swp
*~
.DS_Store
# Logs
*.log
# OS generated files
Thumbs.db
ehthumbs.db
# Dagger cache
.dagger/

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.