## 元命令
已点号(.)开头的元命令。
如 .help 会显示帮助菜单,
.clear 会清除当前的运行内容,它会清除内存中任何变量或闭包,而不需要重启解析器
.exit 将推出Node解析器
Hexo使用
第一步安装
npm install -g hexo-cli
第二步:建站
hexo init <folder>
cd <folder>
npm install
写文章
hexo new [layout] <title>
hexo new draft "测试"
写草稿
hexo new draft "测试draft" 写草稿
hexo publish draft "测试draft" 发布草稿
配置文件在_config.yml 中查看
配置好git仓库
deploy:
type: git
repo: git@github.com:DaiWenqi/DaiWenqi.github.io.git
生成静态
hexo generate
### 部署
hexo deploy
说明:一般生成文件跟静态连用 hexo generate –deploy 缩写 hexo g -d
备份源码流程
git init
git add 需要备份的文件
git commit -m 'hexo使用'
git push origin blog 关联 提交到远端仓库
检查源码修改并提交
git status
use "git add/rm <file>..." to update what will be committed
选择需要跟踪的文件git
git commit -m "描述" 提交到本地仓库
配置文件在_config.yml 中查看
我的个人项目
本地地址:
E:\WorkCode\antd-demo
使用创建项目
create-react-app ant-demo
可以直接用less
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start
Create a new post
1 | $ hexo new "My New Post" |
More info: Writing
Run server
1 | $ hexo server |
More info: Server
Generate static files
1 | $ hexo generate |
More info: Generating
Deploy to remote sites
1 | $ hexo deploy |
More info: Deployment