我在github repo myname.github.io 中有个人博客,我使用 Cabin 站点生成器生成我的站点内容,该生成器在 public 生成构建文件文件夹。我想从公共文件夹中为 Github 页面提供内容。但它始终在查看根文件夹。
是否有任何选项可以告诉 Github 从公共文件夹而不是从根文件夹提供内容?
答案 0 :(得分:0)
.gitignore file
中删除dist目录(Yeoman默认忽略它)。git add dist && git commit -m "Initial dist subtree commit"
使用subtree push
将其发送到GitHub上的gh-pages分支。
git subtree push --prefix dist origin gh-pages
资料来源:https://gist.github.com/cobyism/4730490
转到项目的设置并将gh-pages设置为分支 对于网站