Trabajando con Git puede encontrarte con este error al hacer “pull” para actualizar la copia local de tu repositorio:
01 git.exe pull -v --progress "origin"
02 03 POST git-upload-pack (957 bytes)
04 POST git-upload-pack (262 bytes)
05 remote: Counting objects: 186, done.
06 remote: Compressing objects: 100% (91/91), done.07 fatal: early EOF08 fatal: The remote end hung up unexpectedly09 fatal: index-pack failed10 error: RPC failed; result=56, HTTP code = 20011 12 13 git did not exit cleanly (exit code 1) (29047 ms @ 17/06/2014 12:51:21)
Para solucionar este error tendremos que aumentar el buffer de git ejecutando este comando:
1 git config http.postBuffer 524288000
Tras añadir esta nueva configuración en nuestro repositorio local probar de nuevo a hacer “pull” en Git y comprobar si el problema está resuelto.
Deja tu comentario