3

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

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

然后每次我需要部署一个项目时,我都会得到一个新的 URL,比如http://-somethingdiferent-.herokuapp.com

我不知道以后如何在不创建其他新heroku项目的情况下使用该项目我正在考虑使用诸如git拉动之类的东西,但我不知道heroku的拉动如何,也许-git pull heroku master?但在那种情况下,我怎样才能拉同一个项目?

如果您知道顺序或任何教程,我会喜欢吗?

谢谢

4

1 回答 1

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应替换为应用程序名称。

可以在这里找到更多有用的东西。

于 2013-01-11T01:04:33.927 回答