基于hexo搭建GitHub博客
程序员文章站
2023-12-24 11:56:39
...
安装git
https://git-scm.com/download/win
安装 Node.js 里面自带npm (记得配置环境变量)
https://nodejs.org/en/download/
检测安装是否成功
$ git --version
$ node -v
$ npm -v
先新建一个文件夹 F:/blog
Git Bash
cd F;/blog
npm install -g hexo //进行安装
npm install hexo-deployer-git --save
hexo -v //出现下面界面说明安装成功
hexo init //初始化文件夹(漫长的等待·······)
npm install,安装所需组件
hexo init //初始化配置
hexo s //访问 http://localhost:4000
更换主题
hexo clean
git clone https://github.com/litten/hexo-theme-yilia.git themes/yilia
启动主题
找到目录下的_config.yml 文件,打开找到 theme:属性,并设置为yilia
更新主题
cd themes/yilia
git pull
hexo g
hexo s
使用localhost:4000查看新主题!
参考 :https://www.jianshu.com/p/bad24beeb51e
部署GitHub
“$(ssh-agent -s)”,添加**到ssh-agent
参考 :https://blog.csdn.net/qq_36759224/article/details/82121420