换新环境配置流程
输入npm i hexo-cli -g
安装Hexo
输入hexo -v
验证是否安装成功
git config --global user.name "arthurjinquan"
git config --global user.email "793787018@qq.com"
然后生成密钥SSH key:
ssh-keygen -t rsa -C "793787018@qq.com"
打开github,在头像下面点击settings,再点击SSH and GPG keys,新建一个SSH,名字随便。
git bash中输入
cat ~/.ssh/id_rsa.pub
将输出的内容复制到框中,点击确定保存。
输入ssh -T git@github.com
测试调通没有。