免责声明:我是菜鸟。
我正在使用http://ruby.railstutorial.org/学习ruby,直到两天前一切正常。
我不确定到底出了什么问题,但我不能再推送到heroku了,它开始正常,但后来挂在下一行(这些是控制台上的最后一行):
-----> Discovering process types
Procfile declares types -> (none)
Default types for Ruby/Rails -> console, rake, web, worker
事实: Git删除-v工作正常。 该应用程序在我的电脑上工作正常。 我的系统:最新的Mac OS,RoR应用程序。 我的应用就在这里:https://github.com/eladsof/sample_app
为什么会发生这种情况?
答案 0 :(得分: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'
然后再试一次。
(当然,假设你不需要它们)