欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Github搭建hexo个人博客

程序员文章站 2023-12-24 10:58:04
...

要安装的工具

gitbash

NodeJS安装 不过注意不要去改环境变量,并没什么用,而且后面安hexo的话,会提示找不到命令,就是因为改了这个

安装Hexo

npm install hexo -g,开始安装Hexo

hexo -v 查看版本

 Github搭建hexo个人博客

创建GitHub项目

在GitHub上新建一个Repository,在settings里添加静态页面名字,格式为xxx.github.io

初始化Hexo

选择一个文件夹作为博客存放的目录,用gitbash进去

运行 npm install 安装要用的组件

Github搭建hexo个人博客

运行hexo g 启动 加载hexo基础html、css、js等文件。 
在这完成后等于已经在本地创建了一个网页

Github搭建hexo个人博客

hexo s启动服务器,成功出来

Github搭建hexo个人博客

 问题:假如页面一直无法跳转,那么可能端口被占用了。此时我们ctrl+c停止服务器,接着输入“hexo server -p 端口号”来改变端口号

安装主题,选择一个主题,这里我选的Random,在博客根目录输入下面命令

git clone https://github.com/stiekel/hexo-theme-random.git themes/random

 找到这个文件,将theme改为random,重启就成功了

Github搭建hexo个人博客Github搭建hexo个人博客

部署到Github上

打开_config.yml,添加github地址

# Deployment
## Docs: https://hexo.io/docs/deployment.html
deploy:
  type: git
  repo: aaa@qq.com:Rambo55555/Rambo55555.github.io.git
  branch: master
npm install --save hexo-deployer-git

输入ssh-****** -t rsa -C "your email",连按3个回车,生成这个

Github搭建hexo个人博客

key在这个文件夹里Github搭建hexo个人博客

把秘钥内容,Github搭建hexo个人博客去github加进去

Github搭建hexo个人博客

然后输入  ssh -T aaa@qq.com 输入yes就行了

Github搭建hexo个人博客

Github搭建hexo个人博客

deploy:
  type: git
  repository: aaa@qq.com:Rambo55555/Rambo55555.github.io.git
  branch: master

Github搭建hexo个人博客

Github搭建hexo个人博客

 Github搭建hexo个人博客

相关标签: Hexo Github

上一篇:

下一篇: