通过 git 克隆 heroku 应用程序从 Rails 应用程序恢复文件?

Recover files from an Rails app through git cloning the heroku app?

我是 Git/Heroku 新手,我丢失了 Rails 应用程序中的文件,我也已将其部署到 Heroku。是否可以从 Heroku 恢复源文件?

我发现这个 link 上面写着:

To clone the source of an existing application from Heroku using Git, use the heroku git:clone command:

heroku git:clone -a myapp

Replace myapp with the name of your app. This will create a new directory named after your app with its source and complete repository history, as well as adding a heroku git remote to facilitate further updates.

我已经这样做了,但我不知道这个“新目录”在哪里?

谢谢!

(当然,下次我应该使用类似 Github 的东西)。

实际上可以将应用程序的所有源文件从 Heroku 复制到我的本地磁盘。输入时:

heroku git:clone -a myherokuapp

在我的 rails 应用程序文件夹中(例如 myapp),新目录位于 /myapp/myherokuapp/.