Compare commits

...

7 Commits

Author SHA1 Message Date
Tomas Dabašinskas
1838f7a6bb
Merge 74cf7151d9 into dcc0fc7bc2 2026-05-23 18:35:08 +00:00
Daniel Johnson
dcc0fc7bc2
Merge pull request #4700 from G0rocks/main
Add FreeCAD.gitignore file
2026-05-21 16:49:32 -07:00
G0rocks
314d381f1e Add *.FCBak to FreeCAD.gitignore 2026-05-03 16:26:41 +00:00
G0rocks
6a98aacd54 Move FreeCAD.gitignore to community folder 2026-05-03 16:24:48 +00:00
Huldar
9275edaddf
Merge branch 'github:main' into main 2026-05-03 16:22:36 +00:00
Tomas Dabašinskas
74cf7151d9
fix(go-gitignore): prevent coverage.go files from being excluded
The current `coverage.*` pattern includes `*.go` files as well. If you use `go vendor`, this causes the following files to be excluded:

- `vendor/golang.org/x/text/internal/language/coverage.go`
- `vendor/golang.org/x/text/language/coverage.go`

This becomes a nightmare to troubleshoot why the local build works, yet a CI fails (as the files were not committed).

Adding `!coverage.go` ensure that `*.go` files do not get accidentally excluded.
2025-12-24 11:45:50 +02:00
G0rocks
0a25801fa9 Add FreeCAD.gitignore file 2025-08-06 10:11:36 +00:00
2 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,7 @@
# Code coverage profiles and other test artifacts # Code coverage profiles and other test artifacts
*.out *.out
coverage.* coverage.*
!coverage.go
*.coverprofile *.coverprofile
profile.cov profile.cov

View File

@ -0,0 +1,5 @@
# FreeCAD backup and temporary files
*.FC.lock
*.bak
*.FCBak
*.tmp