0
我無法將其部署到GitHub頁面我的yeoman angular應用程序。 我用deploy yeoman教程:將angular.js yeoman部署到GitHub頁面
- 從的.gitignore文件中刪除dist目錄。 Yeoman項目默認忽略它。
- 將dist目錄添加到您的存儲庫:
git add dist && git commit -m "Initial dist subtree commit"
- 將子樹部署到不同的分支。使用--prefix指定到dist目錄的相對路徑:
git subtree push --prefix dist origin gh-pages
但是我的GitHub頁面仍然使用分支主機的代碼。例如http://derk153.github.io/app/index.html正顯示出一些數據,但不dist
分支gh-pages
GH-頁:http://derk153.github.io/
我的回購:https://github.com/derk153/derk153.github.io
感謝您的回答。幾分鐘前我們想出了相同的:) – Derk153