I was trying to push my changes today to remote repository and I get following error:
git push -u origin master
error: pack-objects died of signal 10
Commit and push yesterday worked fine, there were no changes in settings, nobody else committed or pushed to the repository and the commit is not huge, just about 10 files.
I am using MacOS Sierra - git version 2.9.3 (Apple Git-75), Repository is GitLab 8.13.5 (Git 2.7.4)
The whole repository is just 33MB so no large files are included (not even in the commit). I am using SSH to access the repository.
git config pack.threads 1
had no effect.
I also tried cloning remote to new location, editing one file, committing, pushing and that worked, so the problem should be with the specific commit.
Running git fsck is resulting in the same error:
git fsck
error: unable to open .git/objects/14: Interrupted system call
Checking object directories: 100% (256/256), done.
Bus error: 10
What is the problem?