码迷,mamicode.com
首页 > 其他好文 > 详细

hexo命令大全

时间:2017-10-09 16:45:21      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:public   写作   type   ocs   conf   静态网页   XML   自动更新   预览   

hexo安装

1
2
3
npm install hexo -g #安装
npm update hexo -g #升级
hexo init #初始化

简写

1
2
3
4
5
hexo n "我的博客" == hexo new "我的博客" #新建文章
hexo p == hexo publish
hexo g == hexo generate#生成
hexo s == hexo server #启动服务预览
hexo d == hexo deploy#部署

服务器

1
2
3
4
5
6
7
hexo server #Hexo 会监视文件变动并自动更新,您无须重启服务器。
hexo server -s #静态模式
hexo server -p 5000 #更改端口
hexo server -i 192.168.1.1 #自定义 IP
hexo clean #清除缓存 网页正常情况下可以忽略此条命令
hexo g #生成静态网页
hexo d #开始部署

监视文件变动

1
2
hexo generate #使用 Hexo 生成静态文件快速而且简单
hexo generate --watch #监视文件变动

完成后部署

1
2
3
4
5
两个命令的作用是相同的
hexo generate --deploy
hexo deploy --generate
hexo deploy -g
hexo server -g

草稿

1
hexo publish [layout] <title>;

模版

1
2
3
4
5
6
7
8
hexo new "postName" #新建文章
hexo new page "pageName" #新建页面
hexo generate #生成静态页面至public目录
hexo server #开启预览访问端口(默认端口4000,‘ctrl + c‘关闭server)
hexo deploy #将.deploy目录部署到GitHub
hexo new [layout] <title>;
hexo new photo "My Gallery"
hexo new "Hello World" --lang tw

技术分享

1
2
3
4
5
6
7
8
title: 使用Hexo搭建个人博客
layout: post
date: 2016-12-21 19:07:43
comments: true
categories: Blog
tags: [Hexo]
keywords: Hexo, Blog
description: 生命在于折腾,又把博客折腾到Hexo了。给Hexo点赞。

模版(Scaffold)

1
hexo new photo "My Gallery"

写作

1
2
hexo new page <title>;
hexo new post <title>;

技术分享

推送到服务器上

1
2
3
hexo n #写文章
hexo g #生成
hexo d #部署 #可与hexo g合并为 hexo d -g

报错

1.找不到git部署

1
ERROR Deployer not found: git

解决方法

1
npm install hexo-deployer-git --save

 

2.部署类型设置git

hexo 3.0 部署类型不再是github,_config.yml 中修改

1
2
3
4
5
6
# Deployment
## Docs: http://hexo.io/docs/deployment.html
deploy:
type: git
repository: git@***.github.com:***/***.github.io.git
branch: master

 

3. RSS不显示

安装RSS插件

1
npm install hexo-generator-feed --save

 

开启RSS功能

编辑hexo/_config.yml,添加如下代码:

1
rss: /atom.xml #rss地址 默认即可

hexo命令大全

标签:public   写作   type   ocs   conf   静态网页   XML   自动更新   预览   

原文地址:http://www.cnblogs.com/yankfy/p/hexo-cmd.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!