Skip to content

Instantly share code, notes, and snippets.

@BruceMcKinnon
Created October 25, 2022 21:43
Show Gist options
  • Save BruceMcKinnon/6c1365ad7e599bb0e672e0b0583388fc to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/6c1365ad7e599bb0e672e0b0583388fc to your computer and use it in GitHub Desktop.
GIT hangs at the end of a PUSH
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