我无法将yeoman angular应用程序部署到GitHub页面。 我正在使用deploy yeoman教程:
git add dist && git commit -m "Initial dist subtree commit"
git subtree push --prefix dist origin gh-pages
但是我的GitHub页面仍在使用分支主机的代码。例如,http://derk153.github.io/app/index.html显示了一些数据,但没有显示dist
分支gh-pages
答案 0 :(得分:2)
我认为您必须在分支gh-pages中的新存储库中添加角度应用程序。
我建议你这样做:
检查我的示例:我有这个repo来添加我的github.io主页的代码:My main github.io repo。 然后,我使用新代码here创建一个新的repo。检查gh-pages分支,代码可用here。
希望这有帮助。