Heroku push无法读取错误消息

时间:2013-01-20 09:40:21

标签: heroku github

我在推送Heroku方面遇到了一些问题。当我尝试推送我的应用程序时,我收到错误fatal: unable to read {sha1 value}

堆栈跟踪如下:

git push heroku master
Counting objects: 2066, done.
error: unable to find {sha1 value}
Delta compression using up to 4 threads.
Compressing objects: 100% (1954/1954), done.
fatal: unable to read {sha1 value}

我没有任何问题推送到GitHub,所以我不知道我的Heroku应用程序中是否有损坏的东西?

1 个答案:

答案 0 :(得分:1)

检查git fsck返回的内容,看看是否可以直接在heroku服务器上的.git/objects中复制丢失的git对象。
这与“What can I do with Git corruption due to a missing object?”中采用的方法类似。