5 Star 16 Fork 6

18247670551/demo3d-20240529

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.gitattributes 973 Bytes
一键复制 编辑 原始数据 按行查看 历史
18247670551 提交于 2024-12-23 15:20 +08:00 . init
# windows中的换行符为 CRLF,而在Linux下的换行符为LF
# 所以在执行 git add . 时,会出现
# warning: LF will be replaced by CRLF in package.json.
# The file will have its original line endings in your working directory
# 解决办法1:
# git config core.autocrlf false //禁用自动转换
# 解决办法2:
# 在工程目录下添加 .gitattributes 文件,文件内容为:
package.json text eol=lf
package-lock.json text eol=lf
# text
# 用于控制行尾的规范性。如果一个文本文件是规范的,则Git库汇总该文件(git 服务器上的文件)的行尾总是LF。对于工作目录,除了text属性之外,还可以设置eol属性或core.eol配置变量。
# eol
# 设置行末字符。
# eol=lf ,[回车] :入库时将行尾规范为LF,检出时行尾不强制转换为 CRLF
# eol=crlf,[换行、回车] :入库时将行尾规范为LF,检出时将行尾转换为 CRLF
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gitee18247670551/demo3d-20240529.git
git@gitee.com:gitee18247670551/demo3d-20240529.git
gitee18247670551
demo3d-20240529
demo3d-20240529
master

搜索帮助