搭建记录
修改博客内容
首次使用
1.打开安装包安装Git,Node
2.下载hexo
1 | npm config set registry https://registry.npm.taobao.org |
3.安装hexo
1 | hexo init |
4.配置github
1 | git config --global user.email "zfMMG9000@163.com" |
5.绑定github密匙
1 | ssh-keygen |
并把路径中id_rsa.pub
用记事本打开,复制到github的key上
更改博客设置
有两个位置:
hexo设置\_config.yml
next主题设置\themes\hexo-theme-next-6.7.0\_config.yml
详细请百度
写文章
hexo n "文章名"
在\source\_posts
中找到文件并编辑
开头几个参数:
1 | --- |
详细可以参见
预览,发布
预览:
1 | hexo s |
发布:
1 | hexo clean |