Hexo使用记录(七):常用命令整理

前言:

Hexo博客系列基本也就搭建成功了,这里整理一下在后面使用中需要经常使用到的命令。

Hexo命令:

更全的命令详解请移步官方文档

1
2
3
4
5
6
7
8
9
10
hexo new post '文章'	# 新建一个名为'文章'的文章 ,其中post可省略。
hexo new page "about" # 新建一个'about'的页面
hexo publish post '文章' # 新建一个名为'文章'的文章草稿 ,其中post可省略。
hexo publish page 'about' # 新建一个'about'的页面草稿
hexo --draft # 显示 source/_drafts 文件夹中的草稿文章
hexo generate # 生成静态文件 简介 hexo g
hexo server # 启动服务器。默认情况下,访问网址为: http://localhost:4000/,简写 hexo s
hexo deploy # 部署网站到线上,简写 hexo d
hexo clean # 清除缓存文件 (db.json) 和已生成的静态文件 (public)
hexo version # 显示 Hexo 版本,简写hexo v

Git命令:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
git clone https://github.com/OldManXie/OldManXie.github.io.git	# 克隆仓库默认分支文件
git clone https://github.com/OldManXie/OldManXie.github.io.git --branch blog # 克隆仓库blog分支
git add -A # 将工作区的所有的修改提交到暂存区
git commit -m 'XXX' # 将暂存区的修改提交到当前分支并设置备注为XXX
git push # 将本地代码更新到远程默认分支上
git push origin master # 推送到master分支
git pull # 从远程默认分支更新代码
git remote add origin https://github.com/OldManXie/OldManXie.github.io.git # 关联远程仓库
git stash # 保存某次修改
git reflog # 查看历史命令
git status # 查看当前仓库的状态
git diff # 查看修改
git log # 查看提交历史
git revert # 回退某个修改
git reset # 回退到某一个版本