Hexo's grammar
1 Hexo的语法
参考官网给的:
https://hexo.io/docs/front-matter
https://hexo.io/docs/tag-plugins
做好笔记,以便之后寻找方便...
1.1 文章的meta
就是这么个东西
参考官网给的:
https://hexo.io/docs/front-matter
https://hexo.io/docs/tag-plugins
做好笔记,以便之后寻找方便...
就是这么个东西
首先跟着hexo官方文档走一遍:https://hexo.io/docs/
安装Node.js:https://hexo.io/docs/#Install-Node-js
安装hexo
1 | # Win下 找个目录右键 Git Bash Here |
每台计算机只需配置一次,升级时会保留配置信息。
Git自带一个 git config 的工具帮助设置控制Git外观和行为的配置变量,这些变量存在于三个不同的位置:
/etc/gitconfig:包含系统上每一个用户的及他们仓库的通用配置。如果带有--system选项的git config时,会从此文件读写变量~/.gitconfig或~/.config/git/config:只针对当前用户。使用--global选项读写此文件.git/config):针对该仓库每一级别覆盖上一级别
基本配置
1 | # 配置用户名和邮箱 |