记录下来,防止忘记!
添加NPM国内淘宝镜像
npm config set registry https://registry.npmmirror.com
安装Hexo命令
npm install -g hexo-cli
生成SSH到GitHub
git config --global user.name "yourname" ## 配置用户名和邮箱
git config --global user.email "youremail" ## 配置用户名和邮箱
git config user.name ## 查看用户名
git config user.email ## 查看邮箱
ssh-keygen -t rsa -C "youremail" ## 生成SSH
cat ~/.ssh/id_rsa.pub ## 复制SSH
ssh -T git@github.com ## 测试
写文章、发布文章
hexo new post "article title" ## 新建文章
hexo g ## 生成
hexo s ## 预览
hexo d ## 发布