git常见错误 —— broken pipe

Broken pipe

      git push会出现一个问题:就是关于文件的大小!因为github的默认大小是100M,如果你的文件大于100M,那么你就不能成功

  会出现这个:fatal: fatal: sha1 file '' write error: Broken pipe The remote end hung up unexpectedly error
  解决办法为:git config http.postBuffer 52428800   把大小配的大些即可!

https://help.github.com/articles/working-with-large-files/

git常见错误 —— broken pipe_第1张图片

你可能感兴趣的:(git)