Skip to content

Commit f48237b

Browse files
committed
Update .gitignore to exclude Go binaries and remove registry from tracking
1 parent 437fd9f commit f48237b

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

.gitignore

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,34 @@
1+
# Go binaries
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
*.test
8+
*.out
9+
/registry
10+
/publisher
11+
/tools/publisher/publisher
12+
13+
# Go build cache
114
build/*
15+
**/bin
16+
17+
# Environment and config
218
.db
319
.env
420
.mcpregistry*
5-
**/bin
6-
cmd/registry/registry
21+
22+
# OS files
723
.DS_Store
24+
25+
# Test binaries
826
validate-examples
927
validate-schemas
28+
29+
# IDE
1030
.idea/
31+
32+
# Test coverage
1133
coverage.out
1234
coverage.html

0 commit comments

Comments
 (0)