Windows 本地部署 Hexo 到 Coding 配git的教程
配置_config.yml
1 | deploy: # 定义部署 |
安装hexo-deployer-git
1 | npm config set registry http://registry.npm.taobao.org |
预览
1 | npm i |
设置 git 用户名和邮箱
在Git中依次输入以下指令:
1 | git config --global user.email "you@example.com" |
部署到Coding
1 | hexo cl && hexo g && hexo d |