Hexo 部署的时候发生错误解决方案
2018-08-14 本文已影响2人
eirunye
Hexo部署
在我们修改了Hexo博客后需要提交到GitHub,但是提交的时候发生了这样的错误。
warning: LF will be replaced by CRLF in xxxx
The file will have its original line endings in your working directory.
这是由于原因是路径中存在 / 的符号转义问题
解决
在命令行中输入: git config --global core.autocrlf false
$ git config --global core.autocrlf false
然后重新生成文件部署就好了
$ hexo clean
$ hexo g
$ hexo d
问题
这是在操作中遇到的问题,记录一下。