1

我在推送到 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 应用程序中是否损坏了某些东西?

4

1 回答 1

1

检查git fsck返回的内容,看看是否可以直接在.git/objectsheroku 服务器上复制丢失的 git 对象。
这将类似于“由于缺少对象而导致 Git 损坏怎么办? ”中采用的方法。

于 2013-01-20T10:19:37.620 回答