title: 安装hexo
date: 2016-04-23 15:54:25
categories: blog
tags: [hexo,github]
本文在查看网上各位网友的搭建情况下,编写.更多作为补充功能.
本文环境: Windows 7
安装Git
注: 听说新版本可能存在bug,所以尽可能安装旧版本.
安装Node.js
重启电脑
尽量在安装完Node之后重启电脑,否则后面可能会出现比较麻烦的问题.
安装hexo
鼠标右键任意地方,选择Git Bash,使用以下命令安装hexo
$ hexo install hexo-cli -g
如果这里出现WARN并没有关系.
使用以下命令,查看安装是否成功:
$ hexo v
如果安装成功,你就会看到各种版本信息:
hexo-cli: 1.0.1
os: Windows_NT 6.1.7601 win32 x64
http_parser: 2.5.2
node: 4.4.3
v8: 4.5.103.35
uv: 1.8.0
zlib: 1.2.8
ares: 1.10.1-DEV
icu: 56.1
modules: 46
openssl: 1.0.2g
如果不成功.那么你应该检查你以上操作有没有什么问题.多留意提示才是关键.
创建文件夹 E:\hexo, 并在这个文件夹内右键Git bash Here,执行命令:
$ hexo init
然后安装依赖包:
$ hexo install
查看hexo文件夹带来什么:
$ hexo g
$ hexo s
用浏览器访问 (http://localhost:4000/ ) 此时,你应该看到了一个漂亮的本地博客.
注册Github账号
极其简单.我不写了. 假设这里创建的信息:
用户名: xiaoming
注册邮箱: xiaoming@163.com
创建repository
<strong>注意: 这里的repository 名称只能为: xiaoming.github.io
千万要注意!这里的名称,是不能使用一个随便的repository!!
部署本地文件到Github
编辑E:\hexo下的_config.yml文件
在文件的最后加入代码:
deploy:
type: git
repository: https://github.com/xiaoming/xiaoming.github.io.git
branch: master
执行以下命令:
$ hexo g
$ hexo d
出现错误:
<strong>ERROR Deployer not found : git
执行命令:
$ npm install hexo-deployer-git --save
$ hexo g
$ hexo d
接下来又是一个错误, 这个错误是:
INFO Deploying: git
INFO Setting up Git deployment...
Initialized empty Git repository in E:/hexo/.deploy_git/.git/
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'dan@dan-PC.(none)')
FATAL Something's wrong. Maybe you can find the solution here: http://hexo.io/do
cs/troubleshooting.html
Error:
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'XXX@XXX-PC.(none)')
at ChildProcess.<anonymous> (E:\hexo\node_modules\hexo-deployer-git\node_mod
ules\hexo-util\lib\spawn.js:37:17)
at emitTwo (events.js:87:13)
at ChildProcess.emit (events.js:172:7)
at ChildProcess.cp.emit (E:\hexo\node_modules\hexo-deployer-git\node_modules
\hexo-util\node_modules\cross-spawn\node_modules\cross-spawn-async\lib\enoent.js
:37:29)
at maybeClose (internal/child_process.js:827:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:211:5)
FATAL
这个错误是因为当前本地的Git还没配置用户信息, 所以执行以下命令:
$ git config --global user.email "xiaoming@163.com"
$ git config --global user.name "xiaoming"
$ hexo d
此时,会要求输入用户名, 你就输入你的用户名: xiaoming
接着要求输入密码, 你就入密码. 密码输入期间不会看到任何字符.然后直接回车即可.
结束
至此, 博客创建完成. 登陆网站: xiaoming.github.io 就可以看到啦!
常用命令备注:
$ hexo g #完整命令为hexo generate,用于生成静态文件
$ hexo s #完整命令为hexo server,用于启动服务器,主要用来本地预览
$ hexo d #完整命令为hexo deploy,用于将本地文件发布到github上
$ hexo n #完整命令为hexo new,用于新建一篇文章
网友评论