Commit 74c3a72
Changed files (1)
README.md
@@ -218,7 +218,18 @@ go test ./...
go test -cover ./...
# Run specific server tests
-go test ./cmd/git/...
+go test ./pkg/git/...
+go test ./pkg/filesystem/...
+```
+
+### Code Quality
+
+```bash
+# Check code quality
+go vet ./...
+gofmt -l .
+
+# Note: golangci-lint has issues with Go 1.24, use go vet instead
```
### Adding New Servers