Git: warning: in the working copy of 'package.json', LF will be replaced by CRLF thenext time Git touches it这个问题具体怎么操作解决
时间: 2023-12-02 09:39:39 浏览: 122
node-test-require-private-module
这个问题的解决方案是在 Git 中设置 core.autocrlf 为 input,这样 Git 就不会自动地把回车(CR)和换行(LF)转换成换行(LF),而在检出代码时也不会把换行(LF)转换成回车(CR)和换行(LF)。具体操作步骤如下:
1. 打开 Git Bash 或者命令行工具。
2. 输入以下命令:git config --global core.autocrlf input
3. 按下回车键执行命令。
4. 重新打开项目,再次执行 Git 操作,就不会再出现这个警告了。
阅读全文