Fatal: error closing sha1 file: I / O error

What should I do with this?

git push Counting objects: 30, done. Delta compression using up to 4 threads. Compressing objects: 100% (14/14), done. fatal: error when closing sha1 file: Input/output error error: pack-objects died of signal 13 error: failed to push some refs to '...' 

I tried the following from the answers to a similar question

 git repack git prune git gc --aggressive 

Nothing helps. The remote control is a mounted AFS file system, I have been clicking on it for several years without incident. I am not somewhere closer than the quota, and I have permission (I can easily touch the file in this file system). Git version 1.7.5.4.

+6
source share
2 answers

Apparently, this was, as stated in the comment, a problem with the remote file server. After waiting a while, I was able to drive without incident.

+3
source

This is the result of exceeding the disk quota . I got the same error without further explanation. Then I noticed that my disk quota was exceeded. After freeing up some disk space, I was able to perform the original git action.

PS: In my case, the error condition prevents any changes to the local git repository. I could not execute any of add / commit / push / gc (all gave the sha1 file error).

+8
source

Source: https://habr.com/ru/post/915465/


All Articles