Github个人博客 本博客使用hexo + github构建 下面是建造的过程 准备工作 申请一个github账号 安装了node.js,npm,并了解相关基础知识 Windows的安装了git(或者其他git客户端) 创建Github仓库 新建一个叫做你的用户名.github.io的仓库 配置SSH密钥并添加到Github ssh-keygen -t rsa -C "邮件地址" 配置类别变量 $ git config --global user.name "username"// 你的github用户名,非昵称 $ git config --global user.email "xxx@qq.com"// 填写你的github注册邮箱 安装hexo $ npm install -g hexo 新建本地仓库,并初始化 $ cd /d/Code/hexo/ $ hexo init 安