Malloc falhou com git pull

0

Eu recebo este erro tentando git pull:

$git pull origin master
remote: Counting objects: 91, done.
remote: Compressing objects: 100% (79/79), done.
fatal: Out of memory, malloc failed (tried to allocate 2445656885 bytes)
fatal: unpack-objects failed

Como posso resolver isso?

Eu tentei definir alguns limites de memória no .gitconfig , mas isso não ajudou:

[pack]
    threads = 1
    deltaCacheSize = 128m
    packSizeLimit = 128m
    windowMemory = 128m
[core]
    packedGitLimit = 128m
    packedGitWindowSize = 128m
    
por user1447257 10.02.2015 / 19:52

1 resposta

0

2445656885 é de aproximadamente 2,5 GB. Um número extraordinariamente grande, eu não tenho certeza se malloc ainda permitiu pedir tanto. Pode ser um sinal de um bug de software. Verifique sua instalação do git.

    
por 10.02.2015 / 21:14

Tags