0

当我尝试将我的存储库推送到已安装的 Windows 共享时,我收到以下错误消息:

git push
Counting objects: 47, done.
Compressing objects: 100% (15/15), done.
Writing objects: 100% (25/25), 508.09 KiB | 88 KiB/s, done.
Total 25 (delta 18), reused 13 (delta 7)
fatal: error when closing sha1 file: Host is down
error: unpack failed: unpack-objects abnormal exit
To /dir/
 ! [remote rejected] master -> master (n/a (unpacker error))
error: failed to push some refs to /dir/

我尝试了很多在其他帖子上发现的东西,但它们对我不起作用:

git gc
git repack
git config --add core.sharedRepository group

我还更改了文件权限:

-rwxrwxrwx 0 marc marc 156 Sep 30 14:51 config
-rwxrwxrwx 0 marc marc  73 Apr 20  2012 description
-rwxrwxrwx 0 marc marc  23 Apr 20  2012 HEAD
drwxrwxrwx 0 marc marc   0 Apr 20  2012 hooks
drwxrwxrwx 0 marc marc   0 Apr 20  2012 info
drwxrwxrwx 0 marc marc   0 Sep 24 16:26 objects
drwxrwxrwx 0 marc marc   0 Apr 20  2012 refs

驱动器上也有足够的空间。

4

1 回答 1

1

似乎此错误是由 Ubuntu 12.4 LTS 的标准 apt 存储库中的 git 版本引起的。从另一个仓库安装更新版本后,它可以工作

 sudo add-apt-repository ppa:git-core/ppa
 sudo apt-get update
 sudo apt-get upgrade
于 2013-10-01T10:25:40.637 回答