Git 與 CI/CD MOC
用途:串連 Git 版控操作與 CI/CD pipeline 的相關筆記。 上層:Software Engineering MOC
Git 操作
分支規範
- Cedars FE — branch 命名規範(feat / fix / hotfix / chore)
CI/CD
相關
- Image 是 CI-CD 流水線上唯一的交付物 — build/push/pull 的交付模型,tag 用 commit SHA(歸在 Docker MOC)
- 負載型 flaky test:CI 測試隨機撞 testTimeout — CI 隨機 timeout 的診斷與修法(歸在 Testing MOC)
- os.availableParallelism() 不讀 cgroup 回傳宿主機核心數 — 容器內併發數 gotcha