1.安装程序:
2.搭建博客:
-
指定路径
>cd D:\Project\Blog
-
新建博客文件
>hexo init <输入文件名> >cd <刚输入的文件名> >npm install
-
查看建立好的博客
>hexo server
浏览器输入:http://localhost:4000
3.布置博客:
-
注册 Github 账号
-
New repository 创建新仓库
-
Repository name 固定写法:Owner.github.io
(仓库名字 固定写法:用户名.github.io)
-
Description (optional) 填写随意
-
Create repository
-
-
打开安装好的 Git Bash
-
设置 user.name和user.email的配置信息:
>git config --global user.name 'Your Github UserName' >git config --global user.email 'Your Github UserEmail'
-
生成ssh密钥文件
>ssh-keygen -t rsa -C 'Your Github UserEmail' 直接三个回车,默认不设置密码
-
找到生成的 .ssh 文件中 id_rsa.pub 密钥
复制 id_rsa.pub 中的内容到 Github Setting Key
点击右上角 New SSH key
Title 填写随意,粘贴刚复制的到 Key 中,Add SSH Key
-
-
部署博客
-
cmd转到博客文件的目录下
>cd D:\Project\Blog\MyFirstBlog
-
三条部署命令
>hexo clean >hexo g >hexo d
-
打开浏览器查看部署到Github上的博客
-
4.总结:
-
我的Blog [Later Fork's Studio]
-
使用的是WIN10操作,适用于广大小白。
-
我只用少量的图片与文字来写这篇部署的操作指南。
-
在文章的多处有超链接的地方是操作的捷径,希望大家狠戳。
-
综上所述,目的是为了在极短时间内搭建好博客大概的模样。
-
Hexo+Gihub搭建的更深一步参考:
网友评论