重装系统如何恢复Hexo
恢复环境
安装软件
node.js
安装node.js
Git
安装Git
检验软件是否安装成功
同时按下 Win 和 R打开运行,输入 cmd
,然后输入以下命令,有相应版本信息显示则安装成功,若不正确可以卸载软件重新安装。
1 | git --version |
npm 源
1 | 淘宝镜像源 |
配置git
生成ssh key
1 | ssh-keygen -t rsa -C "你的邮箱" |
将公钥的内容复制到系统粘贴板上:
1 | clip < ~/.ssh/id_rsa.pub |
或者打开C:\Users\{你的用户名}\.ssh\id_rsa.pub
手动复制公钥内容
添加ssh key
1.登陆 GitHub,进入 Settings
:
2.点击 SSH and GPG Keys
,选择 New SSH key
配置 Git 个人信息
1 | git config --global user.name "此处填你的用户名" |
恢复文件
Cloning Hexo
在Git仓库中找到ssh
把Hexo仓库克隆下来
1 | git clone {仓库ssh} |
安装Hexo
1 | npm install hexo-cli -g |
你的Hexo已经恢复,又可以继续写文章啦!
其实只要多重装几次就熟练了
评论