hexo基操

常用指令和发布文章

  • 常用指令
1
2
3
4
5
hexo new "postName"        //新建文章
hexo new page "pageName" //新建页面
hexo g //生成静态页面至public目录
hexo server //开启预览访问端口(默认端口4000,'ctrl + c'关闭server)
hexo deploy //将.deploy目录部署到GitHub

复制

  • 常用组合
1
2
3
4
5
6
hexo clean
hexo g
hexo d
hexo d -g #生成部署
hexo s -g #生成预览
hexo clean && hexo g && hexo d

复制

  • 发布文章

终端cdblog文件夹下,执行如下命令新建文章:

1
hexo new "xxx"

复制

名为xxx.md的文件会建在目录.../blog/source/_posts下。

所有的文章都会以md形式保存在_post文件夹中,只要在_post文件夹中新建md类型的文档,就能在执行hexo g的时候被渲染。新建的文章头需要添加一些信息,如下所示:(注意空格)

1
2
3
4
5
6
---
title: xxx //在此处添加你的标题。
date: 2016-10-07 13:38:49 //在此处输入编辑这篇文章的时间。
tags: xxx //在此处输入这篇文章的标签。
categories: xxx //在此处输入这篇文章的分类。
---

复制

文章编辑完成后,终端cdblog文件夹下,依次执行如下命令来发布:

1
2
hexo g
hexo d

在使用git命令中器粘贴快捷键为shift+insert

image-20240327212407451

可以通过按鼠标左键的open git bash here召唤命令

这可能是迄今为止最全的hexo博客搭建教程-腾讯云开发者社区-腾讯云 (tencent.com)

image-20240327211652140