我在推送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应用程序中是否有损坏的东西?
答案 0 :(得分:1)
检查git fsck
返回的内容,看看是否可以直接在heroku服务器上的.git/objects
中复制丢失的git对象。
这与“What can I do with Git corruption due to a missing object?”中采用的方法类似。