Hexo博客搭建

时间:2022-12-24 16:42:32
Hexo博客搭建

http://www.jianshu.com/p/e99ed60390a8

http://blog.csdn.net/xuezhisdc/article/details/53130328

注意点:

1:安装hexo时使用cmd不行,要用gitbash完成

2:gitbash里文件路径是/分割而不是\

3:Hexo命令1:hexo new 2:hexo server 3:hexo generate 4:deploy

4:安装deployer : npm install hexo-deployer-git --save

5:githubio的地址的名字要和账号名相同sologgfun

6:使用gitbash

  • 打开git bash终端。
  • 设置user.name和user.email。
git config --global user.name "你的GitHub用户名"
git config --global user.email "你的GitHub注册邮箱"
  • 生成ssh密匙
ssh-keygen -t rsa -C "你的GitHub注册邮箱"
  • 此时,在用户文件夹下就会有一个新的文件夹.ssh,里面有刚刚创建的ssh密钥文件id_rsa和id_rsa.pub。

将公匙添加到github上

  • 详细教程自行baidu。
  • 用户头像→Settings→SSH and GPG keys→New SSH key→将id_rsa.pub中的内容复制到Key文本框中,然后点击Add SSH key(添加SSH)按钮。