hexo博客搭建(保姆级教程)
# hexo博客搭建(保姆级教程)
环境准备:win10,hexo,github,node.js
效果展示: https://xbean1028.github.io/
部署环境
下载安装Node.js
到cmd中
1
2
3
4下载cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
下载hexo
cnpm install -g hexo-cli新建一个文件夹,并进入该路径
1
2
3
4
5hexo init 初始化
hexo s 启动,本地预览
hexo n "我的第一博客" 创建一篇文章
hexo clean 清理
hexo g 生成说明:
\source\ _posts目录下放置md文件夹,可以手动编辑,添加。博客内容makedown格式。
部署GitHub
登录GitHub
新建仓库,仓库名称必须为”名称.github.io”。(例如:我的GitHub:https://github.com/Xbean1028,所以我的仓库为Xbean1028.github.io )
在博客目录下安装Git插件
1
cnpm install --save hexo-deployer-git
设置 -config.yml文件
最底部修改#Deployment
#Docs: https://hexo.io/docs/deployment.html
1
2
3
4deploy:
type: git
repo: https://github.com/Xbean1028/Xbean1028.github.io.git
branch: masterrepo: 你的仓库地址(冒号后面有空格)
branch: master
部署到远端
1
hexo d 部署
根据提示输入账号密码
部署完可能有延迟,等一会就好了
更换主题
可以百度找,这里提供一个例子,下载下来放theme文件夹
github.com/litten/hexo-theme-yilia
设置 -config.yml文件,修改一行
1
theme: yilia
通过Xbean1028.github.io 访问博客网站
搞定,尽情享用吧
Ursprünglicher Autor: Bean
Ursprünglicher Link: http://yoursite.com/2020/02/03/hexo博客搭建(保姆级教程)/
Copyright-Erklärung: Bitte geben Sie die Quelle des Nachdrucks an.