hexo部署到coding上

除了可以部署在github上,还可以部署在国内的coding上面,流程和我hexo托管在托管在github上文章类似

首先呢,注册一个coding账号了,注意要注册个人版的…(这是我踩过的坑)

在这里插入图片描述

而且要保证个人信息注册完,要不后面会不断提醒,很麻烦

hexo部署到coding上_第1张图片

接下来新建项目(也就是仓库),一定要勾选启用README.md文件初始化项目这个选项,要不然以后再Page页面会出错,找不到master,最好仓库名字是你自己的用户名,比如我的是amened,那么项目名字就是amened

hexo部署到coding上_第2张图片

这时候需要一个密钥来使用我们的仓库,或者说来连通我们的coding,在个人设置中找到SSH公钥

hexo部署到coding上_第3张图片

hexo部署到coding上_第4张图片

同样在你的Git Bash中使用以下命令生成密钥,放在了c盘user中

ssh-keygen -t rsa -C "[email protected]"	//[email protected]是你的邮箱

注意,如果你之前部署过github上面的密钥,这时候命令行会提示你是否overwrite,你直接输入res就ok了

hexo部署到coding上_第5张图片

把里面的id_rsa.pub中的一堆字符放在新增密钥中,永久有效看自己喜好加不加了

hexo部署到coding上_第6张图片

接下来输入

ssh -T [email protected]

出现下图就成功了

hexo部署到coding上_第7张图片

这时候配置_config.yml

deploy:
  - type: git
    repo: 
        github: https://github.com/amened/amened.github.io.git
        coding: [email protected]:amened/amened.git	//amened是我的用户名
    branch: master

配置成功之后

hexo g -d

没有error报错,说明配置成功,打开项目看,如下图就没什么问题了

hexo部署到coding上_第8张图片

想配置个人域名在Pages服务设置中

hexo部署到coding上_第9张图片

hexo部署到coding上_第10张图片

至于如何解析应该就不用说了,百度,或者之前就应该做过

你可能感兴趣的:(hexo建站)