avatar

目录
Hexo博客同时部署至github和Coding

如果想要hexe g同时部署到coding和 Github,就需要修改站点配置文件_config.yml的 deploy 配置
原配置

Code
1
2
3
4
deploy:
type: git
repo: git@github.com:用户名/用户名.git
branch: master

修改为

Code
1
2
3
4
5
6
deploy:
type: git
repo:
gitee: git@gitee.com:用户名/用户名.git
github: git@github.com:用户名/仓库名.git
branch: master

我的配置如下

Code
1
2
3
4
5
6
deploy:
type: git
repository:
github: https://github.com/Johnwhite-leaf/Johnwhite-leaf.github.io.git
coding: git@e.coding.net:dreamcell/dream.git
branch: master

我这边提交采用的SSH密钥,这个方法有个好处,提交的时候不用输入用户名和密码。如果你习惯用http的方式,只要将地址改成相应的http地址即可

文章作者: John White
文章链接: https://johnwhite-leaf.github.io/cn/articles/ec787ef0/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Know Yourself
打赏
  • 微信
    微信
  • 支付宝
    支付宝

评论