When git clone a large repository sometimes it give you the error message like this:
$ git clone ssh://xxx@xxx:29418/xxxCloning into 'xxx'...remote: Counting objects: 356213, doneremote: Finding sources: 100% (356213/356213)Corrupted MAC on input. (277847/356213), 123.59 MiB | 3.86 MiB/sFinished discarding for xxxfatal: The remote end hung up unexpectedlyfatal: early EOFfatal: index-pack failed
If you got this error message, you might want to try run the following command to fix it
git config --global http.postBuffer 524288000git config --global --add core.compression -1