在Git中出现错误
编程学习日记
2020年5月27日 Progate 第54关
当在Git中尝试进行add操作时的错误处理
$ git add stylesheet.css
warning: LF will be replaced by CRLF in page3/stylesheet.css.
The file will have its original line endings in your working directory
当在Git中添加文件以共享时,会出现上述警告。尽管可以忽略此警告并在Github上注册,但会在代码中插入奇怪的字符。这是因为尝试在Git配置中更改换行符。
$ git config --global core.autoCRLF false
通过执行上述处理,不会发生换行符的更改,也不会插入奇怪的字符串。