Update: 将子项目从 submodule 转为完整内容

- 移除 GovAI, nomifun-tauri, 算力盒子 的 submodule 引用
- 添加所有子项目的完整源代码
- 保留原始 .git 为 .git.bak 备份
This commit is contained in:
freedak
2026-07-04 19:20:46 +08:00
parent 54d6465fa7
commit f7a720204a
3360 changed files with 802660 additions and 3 deletions
+32
View File
@@ -0,0 +1,32 @@
# 行尾统一:仓库与工作区一律 LF
# 根治 autocrlf 幻影改动(索引 LF + 工作区 CRLF 预期 + 工具写回 LF → status 永远脏)。
# .gitattributes 优先级高于各机器的 core.autocrlf —— macautocrlf=input/false)与
# Windowsautocrlf=true)从此行为一致,不再依赖本地配置。
# 要求 git >= 2.10text=auto + eol 组合正确跳过二进制;现代 mac/Windows git 均远高于此)。
* text=auto eol=lf
# Unix shell 脚本必须 LFmac/Linux 可执行;全局规则已覆盖,此处显式自文档化)
*.sh text eol=lf
# Windows 脚本必须 CRLF(当前仓库无此类文件,前瞻防御)
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# 二进制显式声明(防御任何 git 版本/环境的文本误判与行尾改写)
*.png binary
*.ico binary
*.icns binary
*.pptx binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.woff binary
*.woff2 binary
*.ttf binary
*.otf binary
*.zip binary
*.p12 binary
*.p8 binary
*.key binary