Skip to content

Commit 6fd9d07

Browse files
chore(gitignore): anchor binary names to repo root (#2522)
The bare `github-mcp-server`, `mcpcurl`, and `e2e.test` rules matched those names anywhere in the tree, which silently ignored new files created under `cmd/github-mcp-server/` (the rule treats the directory component as a match). The intent was to ignore the binaries produced by `go build` at repo root, so anchor each rule with a leading slash. The existing `cmd/github-mcp-server/github-mcp-server` rule on line 2 continues to ignore the binary when built inside the cmd directory. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent f5e26a8 commit 6fd9d07

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ bin/
1717
.DS_Store
1818

1919
# binary
20-
github-mcp-server
21-
mcpcurl
22-
e2e.test
20+
/github-mcp-server
21+
/mcpcurl
22+
/e2e.test
2323

2424
.history
2525
conformance-report/

0 commit comments

Comments
 (0)