src/Script_ABC_Blanton/hammer/ is ~99 MB of unstripped mlucas ELF binaries (avx512 / avx2 / avx / sse2 / generic-c). They come with the DUT image, so this repo has no reason to carry them - and a binary tree that size is permanent once committed: every clone pays for it forever. publish.sh excluded them too, because rsync copies whatever happens to be sitting in src/. Without the exclude the delivery bundle was ~100 MB from a machine that had the binaries and ~200 KB from a fresh clone. While there, usage() read a fixed line range of the header, so adding a Version History entry pushed code into the usage text. It now reads up to the first line of code. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014RetWKFZFG1ZHcitQAyhwM
37 lines
758 B
Plaintext
37 lines
758 B
Plaintext
# secret/ 全部忽略,但保留 README 與範本
|
||
secret/*
|
||
!secret/README.md
|
||
!secret/*.example
|
||
!secret/.gitkeep
|
||
|
||
# AI 協作素材不入 git
|
||
For_AI/
|
||
|
||
# 測試 log(含 DUT 序號 / MAC / 韌體版本,保留目錄結構即可)
|
||
*.log
|
||
!**/logs/.gitkeep
|
||
!**/Logs/.gitkeep
|
||
|
||
# monitor 腳本的執行期產物(原始擷取、pid、狀態)
|
||
*.raw
|
||
*.pid
|
||
*.state
|
||
|
||
# 打包輸出:產出不進 git,打包工具本身要進
|
||
publish/*
|
||
!publish/.gitkeep
|
||
!publish/publish.sh
|
||
|
||
# Office 暫存檔
|
||
~$*
|
||
|
||
# 客戶板 schematic 原始檔(機密,勿入 repo)
|
||
*.DSN
|
||
*.dsn
|
||
|
||
# 尚未上機驗證的腳本暫存區(不入 repo,測過再搬進 src/)
|
||
tmp/
|
||
|
||
# mlucas 的 ELF binary(~99 MB),DUT image 已內含,不入 repo
|
||
src/Script_ABC_Blanton/hammer/
|