Heroku git存储库

时间:2014-05-03 02:42:37

标签: git heroku windows-7 heroku-toolbelt

我正在尝试在heroku中使用此步骤:

This is the important step. When creating a PHP app on heroku you have to make sure you   choose the 'Cedar' Stack.

heroku create --stack cedar
The response should look something like:

Creating freezing-winter-5984... done, stack is cedar
http://freezing-winter-5984.herokuapp.com/ | git@heroku.com:freezing-winter-5984.git
**Git remote heroku added** 

然而,在终端窗口,我无法看到打印的按摩说: " Git远程heroku添加" 因此,我无法推送到git存储库。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

您无需指定--stack cedar,这是默认设置。

至于没有添加git remote,可能是因为你不在git存储库中。

首先运行git init,以便您的应用程序的本地目录成为存储库。