0%

hexo+github blog

安装hexo

首先需要以下软件

Git git 安装教程

Node.js nodejs 安装教程

下载链接、安装教程已附在后方。

安装hexo

1
npm install -g hexo

测试

1
2
3
#新建空文件夹,在新文件夹内git bash
hexo init #这一步初始化,从其他地方拷贝文件到该文件夹内
hexo s #启动服务,访问http://localhost:4000/

如果hexo init因 time out失败

1
2
3
git config --global http.proxy "http://127.0.0.1:1080"
git config --global https.proxy "https://127.0.0.1:1080"
#设置代理

http://localhost:4000/

http://localhost:4000/页面

新建github仓库

新建仓库,注意仓库名为 github用户名.github.io

若github用户名为samual,则仓库名为 samual.github.io

网上生成博客

在文件夹中找到并编辑 _config.yml,在最下方找到deploy;

改为以下

1
2
3
4
deploy:
type: git
repository: ssh://git@github.com:github用户名/github用户名.github.io.git
branch: main #分支名

然后使用git

1
2
3
npm install hexo-deployer-git --save #安装工具
hexo g #生成页面
hexo d #将本地内容上传到仓库

使用github page可访问博客

写、发布文章

1
2
3
4
hexo new "博客名"
#会在source\_posts文件夹下生成.md 文件
hexo cl && hexo g && hexo d
#写好后发布

主题配置

如果不喜欢现在的主题可以去next官网或者GitHub上自行搜索。next官网