start to use hexo
Install
- 安装NodeJS
- 安装Git
npm install -g hexo-cli
- cd到目标文件夹内
hexo init .
npm install
- 打开_config.yml配置一些基本信息,title等
favicon
在themes/light/layout/_partial/head.ejs里将<link href="<%- config.root %>favicon.png" rel="icon">替换为<link href="<%- config.root %>favicon.ico" rel="icon" type="image/x-ico">
Edit
hexo new "hello world" 中间有空格加双引号
,或【hexo n hello
】创建新文章hexo clean
hexo g
hexo s
【本地预览】
Tag
md文档内,tags:[tag1,tag2]
Deploy
- _config.yml文件,找到Deployment # Deployment ## Docs: http://hexo.io/docs/deployment.html deploy: type: git repository: git@github.com:ichengzi/ichengzi.github.io.git【这里填写项目git地址】 branch: master
- hexo d
- 打开ichengzi.github.io就可以看到github网页已经刷新了