Skip to content

Commit 74d58b0

Browse files
committed
Update .gitignore for Phase 0 build artifacts
Add patterns to ignore: - All build_* directories (build_test, build_profile, build_tsan, etc.) - Profiling data generated by Phase 0 scripts - Benchmark result CSV files - perf and cachegrind output files This keeps the repository clean while allowing Phase 0 infrastructure templates to be tracked.
1 parent c696c4d commit 74d58b0

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.gitignore

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ cmake-build-*/
22
docker/
33
ldata/
44
build/
5+
build_*/
56
dist/
67
_build/
78
_generate/
@@ -40,4 +41,15 @@ coverage.xml
4041
# Temporary files
4142
*.tmp
4243
*.bak
43-
*~
44+
*~
45+
46+
# Phase 0 profiling artifacts (keep templates, ignore generated data)
47+
docs/baseline/reports/*.txt
48+
docs/baseline/reports/*.out
49+
docs/baseline/reports/*.data
50+
docs/baseline/flamegraphs/*.svg
51+
*_benchmark_results.csv
52+
*.prof
53+
perf.data
54+
perf.data.old
55+
cachegrind.out*

0 commit comments

Comments
 (0)