赞
踩
报错如下:you are about to commit crlf line separators to the git repository
翻译成中文: 您将要将crlf行分隔符提交到git存储库
不同操作系统的换行符不一样:
1、Windows:Windows使用回车换行(CRLF),ASCII码为13(回车)和10(换行)。
2、Unix/Linux/macOS:Unix、Linux和macOS使用换行(LF),ASCII码为10。
3、Macintosh(旧版):旧版Macintosh使用回车(CR),ASCII码为13。
翻译成中文: 您将要将crlf行分隔符提交到git存储库
使用命令设置:将Git配置为在检出时将LF转换为CRLF:
git config --global core.autocrlf true
如果是IDEA,点击Fix and Commit
选项
将Git配置为在提交时将CRLF转换为LF:
git config --global core.autocrlf input
可以直接设置为false,忽略检查
git config --global core.autocrlf false
如果是IDEA,点击Commit As Is
选项
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。