我是靠谱客的博主 年轻大地,最近开发中收集的这篇文章主要介绍关于git push时遇到的LF would be replaced by CRLF问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

报错如下:

$ hexo d
INFO  Validating config
INFO  Deploying: git
INFO  Clearing .deploy_git folder...
INFO  Copying files from public folder...
INFO  Copying files from extend dirs...
fatal: LF would be replaced by CRLF in about/index.html
FATAL {
  err: Error: Spawn failed
      at ChildProcess.<anonymous> (C:UsersxxxBlognode_moduleshexo-deployer-gitnode_moduleshexo-utillibspawn.js:51:21)
      at ChildProcess.emit (events.js:315:20)
      at ChildProcess.cp.emit (C:UsersxxxBlognode_modulescross-spawnlibenoent.js:34:29)
      at Process.ChildProcess._handle.onexit (internal/child_process.js:277:12) {
    code: 128
  }
} Something's wrong. Maybe you can find the solution here: %s https://hexo.io/docs/troubleshooting.html
 

其实这是LF的文件在push时会被自动转换为CRLF, 这是因为你在Windows下配置了autocrlf = true,  而hexo g生成的文件都是LF文件. 所以这个没办法你只能手动修改hexo d的配置, 在.deploy_git.git文件夹下的config文件的[core]下, 添加autocrlf = false就可以了. 

最后

以上就是年轻大地为你收集整理的关于git push时遇到的LF would be replaced by CRLF问题的全部内容,希望文章能够帮你解决关于git push时遇到的LF would be replaced by CRLF问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(89)

评论列表共有 0 条评论

立即
投稿
返回
顶部