Files
group_fqcd_jr/.gitattributes
张胜宇 e239eb778b docs: 品牌全量口径统一为「南方基金」+ 作废文档清理
1) 客服 Agent 四份交付文档 + 构建脚手架:品牌由包装占位 XX科技 / 旧名 南方财富
   统一为南方基金(热线 400-889-8899 / 官网 nffund.com),系统名改为「智能服务系统」;
   同步追加 §0.4 修订记录行,工程记录行保留原占位字面以支撑硬编码扫描验收。
2) 开发文档:清理 28 份已作废/残留文档(14 份移出归档 + 14 份仓库副本),
   新增《文档规整方案与开发前待决事项-2026-09-17》。
3) 客服agent 四份交付文档首次纳入本分支。
2026-09-17 15:15:22 +08:00

13 lines
744 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 换行与编码的硬约束(2026-09-13)
#
# 为什么需要这个文件:本机 `core.autocrlf=true`,git 在 add 时会把工作区的 CRLF
# 静默存成 LF。而 **cmd 对 LF-only 的 .bat 会行边界错乱** —— 把本该 echo 出去的
# 说明文字当命令执行(实测报 `AT 命令已弃用`、`']' 不是内部或外部命令`,
# 甚至真的去跑脚本)。只靠各自机器的 git 配置保不住这件事:换台机器、换个 CI,
# clone 出来就是 LF,双击直接失败。所以在仓库层面钉死。
#
# 配合 `tools/make_launcher_bat.py`:那个生成器负责**写**文件时用
# GBK + CRLF + 无 BOM,这里负责**存**的时候别把 CRLF 弄丢。
*.bat text eol=crlf
*.cmd text eol=crlf