码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu 16.04 + github page + hexo 搭建博客

时间:2017-08-01 14:20:25      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:ref   target   ast   branch   epo   .sh   style   yml   文件   

1. 安装nodejs:  sudo apt-get install nodejs-legacy

2.安装nvm :  wget -qO- https://raw.github.com/creationix/nvm/master/install.sh | sh

3.nvm安装完成后,重启终端并执行下列命令即可安装 Node.js:   nvm install 4

4.安装hexo:

npm install hexo-cli -g

npm install hexo -g

5.将github上的仓库clone下来,并初始化文件夹

git clone git@github.com:username/username.github.io.git
cd username.github.io
hexo init [folder]

6.本地测试

$ sudo hexo generate
$ sudo hexo g
$ sudo hexo server

打开链接就能看到本地的网站了

7.部署到github

这里假设你已经创建好了github密钥.

首先配置_config.yml 

deploy:    这个东西类似 git
type: git
repo: <repository url>  你的仓库地址
branch: [branch]      
message: [message]   commit 的内容

安装 deploy  

npm install hexo-deployer-git --save

编译上传

$ sudo hexo generate
$ sudo hexo deploy

上传层成功后,就能访问 username.github.io 了。

Ubuntu 16.04 + github page + hexo 搭建博客

标签:ref   target   ast   branch   epo   .sh   style   yml   文件   

原文地址:http://www.cnblogs.com/pk28/p/7267903.html

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