首页 | 归档 | 导航站 |
|
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing
在使用Github Page + Hexo搭建个人博客的时候遇到了一些问题,现记录如下,主题使用的是cactus
在deploy
中配置了token
后,使用hexo g -d
部署到Github
,提示输入用户名密码,但是现在Github
已经不支持命令行使用用户名密码登录了,所以需要改为SSH
的方式,将deploy
的token
去掉,repo
配置为[email protected]/用户名/仓库名
在Github仓库下,选择Settings > Deploy keys >添加一个Deploy key
,将系统的~/.ssh/xxxx.pub
文件的内容布置上去,然后在GitHub界面勾选Allow write access
即可。