-
-
Save BruceMcKinnon/6c1365ad7e599bb0e672e0b0583388fc to your computer and use it in GitHub Desktop.
GIT hangs at the end of a PUSH
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Your git push command is stalling at the end of the process: | |
Delta compression using up to 8 threads | |
Compressing objects: 100% (1312/1312), done. | |
POST git-receive-pack (chunked)) | |
Writing objects: 100% (1320/1320), 352.71 MiB | 3.71 MiB/s, done. | |
Total 1320 (delta 550), reused 1 (delta 0), pack-reused 0 | |
After the 'Total' line, the push command seems to stall. | |
The solution was to reset the push chunk size to the default: | |
git config --global http.postBuffer 1000000 | |
More info at: https://git-scm.com/docs/git-config#Documentation/git-config.txt-httppostBuffer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment