Github搭建hexo个人博客
程序员文章站
2023-12-24 10:58:04
...
要安装的工具
gitbash
NodeJS安装 不过注意不要去改环境变量,并没什么用,而且后面安hexo的话,会提示找不到命令,就是因为改了这个
安装Hexo
npm install hexo -g,开始安装Hexo
hexo -v 查看版本
创建GitHub项目
在GitHub上新建一个Repository,在settings里添加静态页面名字,格式为xxx.github.io
初始化Hexo
选择一个文件夹作为博客存放的目录,用gitbash进去
运行 npm install 安装要用的组件
运行hexo g 启动 加载hexo基础html、css、js等文件。
在这完成后等于已经在本地创建了一个网页
hexo s启动服务器,成功出来
问题:假如页面一直无法跳转,那么可能端口被占用了。此时我们ctrl+c停止服务器,接着输入“hexo server -p 端口号”来改变端口号
安装主题,选择一个主题,这里我选的Random,在博客根目录输入下面命令
git clone https://github.com/stiekel/hexo-theme-random.git themes/random
找到这个文件,将theme改为random,重启就成功了
部署到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个回车,生成这个
key在这个文件夹里
把秘钥内容,去github加进去
然后输入 ssh -T aaa@qq.com 输入yes就行了
deploy:
type: git
repository: aaa@qq.com:Rambo55555/Rambo55555.github.io.git
branch: master
推荐阅读
-
GitHub + Hexo搭建个人博客
-
hexo个人博客部署到coding
-
hexo +github 搭建私人博客
-
Github搭建hexo个人博客
-
Hexo个人免费博客(四) 部署到Coding.net
-
Hexo + GitHub Pages 搭建博客
-
利用ASP.NET MVC和Bootstrap快速搭建响应式个人博客站(一)
-
利用ASP.NET MVC+Bootstrap搭建个人博客之打造清新分页Helper(三)
-
利用ASP.NET MVC+Bootstrap搭建个人博客之修复UEditor编辑时Bug(四)
-
利用ASP.NET MVC+Bootstrap搭建个人博客之praise.js点赞特效插件(二)