环境
git version 1.9.1
Gerrit Code Review (2.11.3)
- 1
- 2
现象
error: unpack failed: error Missing tree 8d89499daadf6417347218b630b5cae57e7fa27c
fatal: Unpack error, check server log
To ssh://[email protected]:29418/test-project1.git
! [remote rejected] HEAD -> refs/publish/master (n/a (unpacker error))
error: failed to push some refs to 'ssh://[email protected]:29418/test-project1.git'
- 1
- 2
- 3
- 4
- 5
解决方案
经过多方查资料,是提交时的 thin push 的问题,默认是开着的,要把它关掉
有人说
- 在工程的 .gitreview 下的 Gerrit节点下增加
disablethinpush=true
- 在 /etc/git-review/git-review.conf 中添加
disablethinpush=true
- 用
git push --no-thin ...
来解决,因为这是一个BUG - 涉及到库更改时候有未关闭的的patch,更新gerrit的数据库
好吧,我承认在Git使用上我是菜鸟,我只是用 git review
来提交而已。捣鼓了半天上面的N种列出来没列出来的解决方案,都失败
好吧,说出来我碰巧得到的一个这种方案
执行命令git review --no-thin
:失败
无意间看到 git review -h
有个命令行参数 -n
执行命令git review -n
:
Please use the following command to send your commits to review:
git push gerrit HEAD:refs/publish/master
执行 git push gerrit HEAD:refs/publish/master
: 还是那个错误
执行 git push --no-thin gerrit HEAD:refs/publish/master
成功了!!!!