Hexo 部署到 Github Pages 文件夹大小写问题 发表于 2018-12-11 更新于 2022-06-27 分类于 Hexo 本文字数: 322 阅读时长 ≈ 1 分钟 解决办法: 1,进入到博客项目中 .deploy_git文件夹,修改 .git 下的 config 文件,将 ignorecase=true 改为 ignorecase=false 可以使用以下命令行: 12cd .deploy_gitvim .git/config 2,删除博客项目中 .deploy_git 文件夹下的所有文件,并 push 到 Github 上, 这一步是清空你的 github.io 项目中所有文件。 123git rm -rf *git commit -m 'clean all file'git push 3,使用 Hexo 再次生成及部署 123cd ..hexo cleanhexo deploy -generate 参考: Hexo 部署到 Github Pages 文件夹大小写问题