- Turn off compression
- Increase http.postBuffer
- Do a partial clone
- Navigate to the cloned directory and fetch the rest of the clone
- Pull the rest
git config --global core.compression 0
git config --global https.postBuffer 524288000
git clone <your_git_http_url_here> --depth 1
git fetch --unshallow
git pull --all