2016-06-22 74 views
0

我試圖將我的示例angular-fullstack應用程序部署到heroku,所以我做了gulp buildcontrol:heroku。但我得到這個錯誤。Yeoman Angular Fullstack gulp buildcontrol:heroku:失敗

[14點17分19秒]所需的外部模塊巴貝爾寄存器 [14時17分21秒]使用gulpfile /var/www/html/WiM/gulpfile.babel.js [14時17分21秒]啓動 'buildcontrol:Heroku的' ...... 運行 「buildcontrol:Heroku的」(buildcontrol)任務

致命的: 'Heroku的' 不似乎是一個Git倉庫 致命的:無法從遠程存儲庫中讀取。

請確保您擁有正確的訪問權限 並存在存儲庫。 警告:致命:'heroku'似乎不是git存儲庫 致命:無法從遠程存儲庫讀取。

請確保您擁有正確的訪問權限 並存在存儲庫。 使用 - 力量繼續。

由於警告而中止。

我很確定我從heroku中添加了git url作爲我的本地git倉庫的遠程服務器。

回答

0

得到了同樣的問題,我的作品添加the git url from heroku websiteGulpfile.jsbuildcontrol.heroku.options.remote對象。

heroku: { 
 
    options: { 
 
     remote: 'https://git.heroku.com/the_name_of_your_app.git', 
 
     branch: 'master' 
 
    } 
 
}

相關問題