输入xxx.github.io然后显示“这里没有GitHub页面站点。”

问题描述 投票:1回答:3

我试图在我的github上部署英雄。(https://github.com/tsungruihon/tsungruihon.github.io)。我已经遵循了hexo教程和github教程。但是当我在浏览器上输入tsungruihon.github.io时,它显示了There isn't a GitHub Pages site here.

这是我的blog/_config.yml

url: http://petertsengruihon.com
root: /
permalink: :year/:month/:day/:title/
permalink_defaults:

deploy:
  type: git
  repo: [email protected]:tsungruihon/tsungruihon.github.io.git
  branch: master

我的CNAME文件如下:

petertsengruihon.com

请给我一些提示。

github
3个回答
1
投票

以下是我如何做以及如何自动化该过程:

1)安装hexo-deployer-git

$ npm install hexo-deployer-git --save

2)通过添加以下代码在主_config.yml中设置部署程序

# Deployment
deploy:
  type: git
  repo: https://github.com/tsungruihon/tsungruihon.github.io

3)生成您的博客

$ hexo clean然后$ hexo generate

4)部署

$ hexo deploy

此命令将自动部署您的博客。

奖励:将以下脚本添加到package.json中

"scripts": {
  "deploy": "hexo clean && hexo generate && hexo deploy",
},

然后,您只需键入npm run deploy即可生成和部署您的站点。


0
投票

看起来您的设置都是正确的,github可能需要一些时间才能在该URL上显示您的网站


0
投票

目前您的回购只有一个自述文件:

http://github.com/tsungruihon/tsungruihon.github.io/tree/cf22320

如果要构建页面,可以从...构建页面开始。

© www.soinside.com 2019 - 2024. All rights reserved.