The file will have its original line endings in your working directory warning: LF will be replaced

需要提交的文件是在windows下生成的,windows中的换行符为 CRLF, 而在linux下的换行符为LF,所以在执行add . 时出现提示

我们需要在提交前加一步就好:

git config --global core.autocrlf false

再执行git 提交

解决办法参考:https://blog.csdn.net/m0_37482190/article/details/103199321?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.nonecase&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.nonecase

你可能感兴趣的:(微信小程序,Git,开发工具)