Github warning: LF will be replaced by CRLF in error solution

warning: LF will be replaced by CRLF in.
The reason for this error is that there is a problem of symbol escaping. The newline character in windows is CRLF, and the newline character under linux is LF, so when you execute the git add. statement This error will appear. To
Insert picture description here
solve this error, execute the following command:

git config --global core.autocrlf false

That's it~Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_46622106/article/details/111855778