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 に答える