2

免责声明:我是菜鸟。

我正在使用http://ruby.railstutorial.org/学习 ruby ​​,直到两天前一切正常。

我不确定到底出了什么问题,但我无法再推送到 heroku,它开始正常但随后挂在以下行(这些是控制台上的最后一行):

-----> Discovering process types
       Procfile declares types      -> (none)
       Default types for Ruby/Rails -> console, rake, web, worker

事实: Git remove -v 工作正常。该应用程序在我的电脑上运行良好。我的系统:最新的 Mac OS、RoR 应用程序。我的应用在这里:https ://github.com/eladsof/sample_app

任何想法为什么会发生这种情况?

4

1 回答 1

4

您的 git 存储库中有大约 50MB 的数据文件。当您删除它们时,事情似乎起作用了。

尝试用这样的东西删除它们(如果你不需要它们)

git rm ./db/pg_xlog/000000010000000000000001
git rm ./db/pg_xlog/000000010000000000000002
git rm ./db/pg_xlog/000000010000000000000003
git rm db/pg_clog/0000
git commit -m 'removing big files'

然后再次尝试推动。

(当然,假设您不需要它们)

于 2013-03-21T08:46:51.267 回答