使用git时报错warning: LF will be replaced by CRLF in 解决办法

使用gitadd文件到暂存区时,可能会报如下错:

warning: LF will be replaced by CRLF in springboot-mybatis/.idea/workspace.xml.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in springboot-mybatis/pom.xml.
The file will have its original line endings in your working directory

这个错误是因为文件存在符号转义问题,windows中的换行符为 CRLF, 而在linux下的换行符为LF,所以在执行add . 时出现提示。
解决的办法很简单:先使用git config --global core.autocrlf false指令,然后再add,就不会报错啦。

另外,上一篇博客:用springboot+mybatis+mysql实现对user表的信息读取的代码我已经上传到码云,感兴趣的可以去克隆一下。

你可能感兴趣的:(学海漂游,git)