Commit b90754c6 b90754c66e5217eba9b7c71273c8fecc5835b9e9 by cnb.bofCdSsphPA

Reduce restart noise further by ignoring common untracked Python cache artifacts

Constraint: Limit this checkpoint to ignore rules and handoff notes; do not change tracked artifact history
Rejected: Expand ignore coverage to all noisy data trees immediately | This pass only suppresses well-understood untracked cache noise
Confidence: high
Scope-risk: narrow
Directive: Keep ignore changes incremental and distinguish between untracked cache noise and already-tracked historical artifacts
Tested: Confirmed untracked __pycache__ and .pyc noise disappeared from git status after the ignore update
Not-tested: Did not rewrite tracking state for already-versioned cache or data artifacts
1 parent 0184cb37
...@@ -13,3 +13,8 @@ ...@@ -13,3 +13,8 @@
13 acr-engine/.omx_wait_for_fma.log 13 acr-engine/.omx_wait_for_fma.log
14 acr-engine/.omx_wait_for_fma.pid 14 acr-engine/.omx_wait_for_fma.pid
15 acr-engine/configs/manifests/examples/business_asset_export_real_smoke.csv 15 acr-engine/configs/manifests/examples/business_asset_export_real_smoke.csv
16
17 # acr-engine python cache noise
18 acr-engine/__pycache__/
19 acr-engine/**/__pycache__/
20 acr-engine/**/*.pyc
......
1 ## 2026-06-02 Python 缓存噪音忽略规则补齐 checkpoint
2
3 完成项:
4 - 已把以下常见未跟踪缓存噪音加入 `.gitignore`
5 - `acr-engine/__pycache__/`
6 - `acr-engine/**/__pycache__/`
7 - `acr-engine/**/*.pyc`
8
9 结论:
10 - 下次续跑时,未跟踪的 Python 缓存噪音会进一步减少。
11 - 已跟踪的历史产物仍会显示,这次不改动其版本管理状态。
12
1 ## 2026-06-02 本地噪音忽略规则补齐 checkpoint 13 ## 2026-06-02 本地噪音忽略规则补齐 checkpoint
2 14
3 完成项: 15 完成项:
......
...@@ -259,6 +259,7 @@ ...@@ -259,6 +259,7 @@
259 - `docs/README.md` 已新增“新 session 最短可跑命令”。 259 - `docs/README.md` 已新增“新 session 最短可跑命令”。
260 - `AGENT.md` 已同步最短可跑命令。 260 - `AGENT.md` 已同步最短可跑命令。
261 - 已把本地 smoke 临时文件加入 `.gitignore` 261 - 已把本地 smoke 临时文件加入 `.gitignore`
262 - 已补充 Python 缓存噪音忽略规则。
262 263
263 ## 第一条可跑命令(重启后先验证) 264 ## 第一条可跑命令(重启后先验证)
264 265
......