如何使用已存在的heroku应用程序

时间:2013-01-11 00:51:55

标签: ruby-on-rails

请帮帮我, 当我想将一个rails应用程序上传到heroku时,我执行此序列并在heroku上创建一个新项目

git init
git add .
git commit -m "init" 
heroku create
git push heroku master

每次我需要部署项目时,我会得到一个像http://-somethingdiferent-.herokuapp.com这样的新网址

我不知道如何在不创建其他新的heroku项目的情况下使用该项目 我当时想要使用像git一样的东西,但是我不知道如何拉扯heroku,也许-git拉扯heroku master?但在那种情况下,我该如何拉动同一个项目?

如果你知道序列或任何教程,我想知道吗?

感谢

1 个答案:

答案 0 :(得分:9)

尝试先创建应用

# run this command from the app folder to create a new app
$ heroku open --app the-app-name

# Add it to the remote
$ heroku git:remote -a the-app-name

# push app to heroku
$ git push heroku master

the-app-name将替换为应用程序名称。

可以找到更有用的东西here