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

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

时间:2020-06-04 12:00:10      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:位置   art   初始化   文件   git   lin   div   通过命令   size   

一、配置环境

1.安装git  

2.安装node.js  

二、配置本地博客

1.安装hexo

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

npm install -g hexo-cli

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

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

hexo init
npm install

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

继续执行命令

hexo s

技术图片

打开浏览器,在地址栏中输入 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编辑器编辑我们的文章了
——————————————————————————

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

标签:位置   art   初始化   文件   git   lin   div   通过命令   size   

原文地址:https://www.cnblogs.com/wy0526/p/13042563.html

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