hexo github个人网站教程
时间: 2023-11-28 16:44:20 浏览: 137
hexo实现个人博客网站
以下是使用Hexo和GitHub Pages搭建个人博客的步骤:
1.安装Node.js和Git
2.安装Hexo
```shell
npm install -g hexo-cli
```
3.创建一个新的Hexo站点
```shell
hexo init <folder>
cd <folder>
npm install
```
4.在GitHub上创建一个新的repository
5.将Hexo站点与GitHub repository关联
```shell
git init
git remote add origin <repository url>
```
6.安装Hexo的deployer插件
```shell
npm install hexo-deployer-git --save
```
7.在Hexo的配置文件_config.yml中进行如下配置:
```yaml
deploy:
type: git
repo: <repository url>
branch: master
```
8.生成静态文件并部署到GitHub Pages
```shell
hexo generate
hexo deploy
```
9.访问你的个人博客
```shell
https://<username>.github.io
```
阅读全文