Try to set git configuration to handle large files or shallow clone to reduce data transfer:
git config --global http.postBuffer 524288000 git config --global core.compression 0
or
git pull --depth 1
Thx