The .gitignore pattern "server" was matching cmd/server/ directory, preventing main.go from being tracked. Anchored binary patterns to repo root with leading slash.
12 lines
73 B
Plaintext
12 lines
73 B
Plaintext
# Binaries
|
|
/server
|
|
/patholo
|
|
*.exe
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|