如何从Heroku中检索git存储库?

时间:2011-08-07 19:13:37

标签: ruby-on-rails git heroku

我创建了一个应用程序并将其部署到Heroku,但我没有github git repo(我知道真的很糟糕!)并且我的本地git repo已被删除(这里只是简单的愚蠢)。所以我没有我的来源副本。我需要做一些更新,我唯一能想到的就是从Heroku进行结账。

有没有办法从Heroku结帐?有没有办法从Heroku git repo中检索源代码?

2 个答案:

答案 0 :(得分:26)

您只需要通过heroku app克隆git repo链接。

git clone git@heroku.com:<YOUR_APP>.git

答案 1 :(得分:1)

2014年,你可以做到

heroku git:clone -a <your-app-name>

Documentation