hexo本地搭建以及在github远程部署

一、配置环境

1.安装git  

2.安装node.js  

二、配置本地博客

1.安装hexo

任意位置右键git bash输入(npm命令即可安装)

npm install -g hexo-cli

2.Hexo建立网站所需要的所有文件

创建一个文件夹,在文件夹内执行命令

hexo initnpm install

3.准备启动本地博客(可选)

继续执行命令

hexo s

hexo本地搭建以及在github远程部署

打开浏览器,在地址栏中输入 http://localhost:4000/ 就可以访问本地blog了

三、部署在github

1.github完成ssh授权

右键Git Bash,输入

ssh-keygen -t rsa

回车

打开C:\Users\Administrator.ssh目录,将id_rsa.pub的内容添加到GitHub上

2.创建用于上传博客的仓库

项目名称为:你的名字 + .github.io

3.部署

修改hexo的文件夹下的_config.yml文件 【注意:冒号后有空格】

deploy:
type: git
repository: github仓库地址

在hexo文件夹右键git bash输入

hexo g
hexo d

4.可启动博客

网址:https://yourname.github.io 

四、发布文章

hexo\source\_posts路径下的_posts文件夹存放我们的文章。刚开始会有初始化的文章hello-world.md。如果我们想新建文章的话,可以通过命令窗口输入
hexo new ‘filename‘
我们的文件夹下面就会生成一个新的md文件,然后我们就可以用sublime等Markdown编辑器编辑我们的文章了
——————————————————————————

相关推荐