Skip to content

Commit b23866f

Browse files
committed
chore: gitignore stray example binaries (drop leaked basic artifact)
`go build` run inside examples/basic left an 8.5MB Mach-O binary `basic` at the repo root (untracked, not ignored). Removed it from the worktree and added gitignore rules so example-build artifacts don't get committed.
1 parent 25b1b25 commit b23866f

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ coverage.txt
77
# Build output
88
bin/
99
dist/
10+
# Stray example binaries (e.g. `go build` run inside examples/* leaving the binary at repo root)
11+
/basic
12+
/examples/*/main
13+
examples/**/*.bin
1014

1115
# IDE
1216
.idea/

0 commit comments

Comments
 (0)