Compare commits

..

2 Commits

Author SHA1 Message Date
admin 75d8aae1f2 fix: 修复 DLL 文件被 git CRLF 转换损坏
将 DLL 标记为 binary,禁止行尾转换
2026-06-21 08:17:08 +08:00
admin dd6fbdfccf chore: .gitattributes 标记 DLL 为二进制文件 2026-06-21 08:16:43 +08:00
4 changed files with 8 additions and 6 deletions
+8 -6
View File
@@ -1,7 +1,9 @@
# 全部使用 LF 换行,仓库内外一致,不随系统自动转换
* text eol=lf
# 引擎 DLL 是二进制文件,禁止行尾转换
engines/release/*.dll binary
# 二进制文件不转换
*.png binary
*.jpg binary
*.ico binary
# Python 源码使用 LF
*.py text eol=lf
# Makefile 使用 LF
Makefile text eol=lf
*.mk text eol=lf
Binary file not shown.
Binary file not shown.
Binary file not shown.