Last updated

Git problem: error: unable to create temporary sha1 filename

I got git problem: error: unable to create temporary sha1 filename when pushing to a remote repository. The fix is rather easy.

On both your local and remote repositories perform the following magic:

1git fsck
2git prune
3git repack
4git fsck

The last fsck should not report any problems.