Skip to content

Commit c337d16

Browse files
authored
Merge pull request #66 from nova-rey/codex/add-ignore-for-generated-reports
2 parents 9acc921 + 6d6108d commit c337d16

89 files changed

Lines changed: 13 additions & 67040 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,8 @@ cython_debug/
161161

162162
# VScode
163163
.vscode
164+
# === Generated Reports (do not commit) ===
165+
reports/
166+
**/reports/
167+
# End reports ignore
168+

CONTRIBUTING.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
### Generated Reports
2+
Artifacts under any `reports/` directory are generated and should not be committed. They are ignored via `.gitignore`.
3+
If previously tracked, run:
4+
5+
git rm -r --cached reports/ || true
6+
git ls-files -z | grep -z "/reports/" | xargs -0 git rm --cached -r --ignore-unmatch || true
7+
8+
This removes them from the index while keeping files on disk.

reports/.gitignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)