标签:top 钥匙 ast use 账号 conf htm font 完成
1 $ git config --global user.name "username" 2 $ git config --global user.email "username@example.com"
1 $ ls -al ~/.ssh
$ ssh-keygen -t rsa -C "your_email@example.com"
1 clip < ~/.ssh/id_rsa.pub
1 npm install -g hexo-cli
2.2 使用hexo建站
1 $ hexo init
该命令会在目标文件夹内建立网站所需要的所有文件。接下来是安装依赖包:
1 $ npm install
这样,我们就已经搭建起本地的Hexo博客了。可以先执行以下命令(在对应文件夹下),然后再浏览器输入localhost:4000查看。
1 $ hexo s
可以打开网页了吧?有没有很开心?但这个博客只是本地的,别人是浏览不了的,之后需要部署到GitHub上。
1 # Deployment 2 ## Docs: http://hexo.io/docs/deployment.html 3 deploy: 4 type:
修改后的_config.yml:
1 deploy: 2 type: git 3 repo: git@github.com:username/username.github.io.git #username换成自己的用户名和仓库名,去掉括号 4 branch: master
为了能够使Hexo部署到GitHub上,需要安装一个插件:
1 $ npm install hexo-deployer-git --save
然后,执行以下命令
1 $ hexo generate 2 $ hexo deploy
之后,可以通过在浏览器键入:username.github.io进行浏览,开心吧~
标签:top 钥匙 ast use 账号 conf htm font 完成
原文地址:https://www.cnblogs.com/csu-lmw/p/9471386.html