gitignore: Add Go build and IDE ignores #2
Reference in New Issue
Block a user
Delete Branch "gitignore/go"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Add a
.gitignorefor Go binaries, coverage output, workspace files, and editor/OS junk.Why
This is a Go library; testdata dumps stay tracked. Local
go test/ IDE files should not.Test
git check-ignore -v bin/ emu.test coverage.outafter a local build. Existing testdata*.binmust remain unignored.