关于换电脑hexo博客迁移,史上最简单不麻烦的迁移手法!!!

之前找了很多,发现好繁琐真的好繁琐!!!

1.将原来电脑上已经配置好并生成的hexo目录拷到你的新电脑上,注意无需拷全部,只拷如下几个目录:

_config.yml
 package.json
 scaffolds/
 source/
 themes/

将这些目录放到一个目录下,如:hexo/

2.在你的新电脑上首先配置hexo环境:安装Node.js
3.安装hexo,执行命令:

 npm install -g hexo

4.安装好之后,进入hexo/目录
5.模块安装,执行命令: 

 npm install
 npm install hexo-deployer-git --save
 npm install hexo-generator-feed --save
 npm install hexo-generator-sitemap --save

6.部署,执行命令:

 hexo g
 hexo deploy

hexo d -g

之后呢!

生成一个新的钥匙。 
1.进入.ssh文件夹

cd ~/.ssh/ 

如果没有就创建

mkdir ~/.ssh

2.配置name和邮箱

git config --global user.name "xxx"
git config --global user.email "[email protected]"  

3.生成key

ssh-keygen -t rsa -C "[email protected]

4.将id_rsa.pub (在.ssh/子目录里)里边的内容复制到GitHub 
 路径是:

关于换电脑hexo博客迁移,史上最简单不麻烦的迁移手法!!!_第1张图片关于换电脑hexo博客迁移,史上最简单不麻烦的迁移手法!!!_第2张图片

 

 

你可能感兴趣的:(关于换电脑hexo博客迁移,史上最简单不麻烦的迁移手法!!!)