chore: 更新 .gitattributes 文件以规范化代码换行

- 设置所有文件的默认换行为自动
- 指定 *.sh 文件使用 LF 换行- 指定 *.bat 文件使用 CRLF 换行- 移除了原有的 -/mvnw text eol=lf 行
This commit is contained in:
Bga Sol 2025-02-13 16:58:57 +08:00
parent 93c1f67a24
commit 3081e6ff15

5
.gitattributes vendored
View file

@ -1,2 +1,3 @@
/mvnw text eol=lf
*.cmd text eol=crlf
* text=auto
*.sh text eol=lf
*.bat text eol=crlf