Git Hangs on Certain Percentage?
May 26, 2019
Git writing objects stuck?
Problem
I got this error from Nowhere while doing git push!
git push origin master — Writing objects: 6% (1/220), 12.65 MiB | 97 KiB/s stuck ?
Solution:
The hang was because the file was taking a long time to upload. The file wasn’t supposed to have been included in the push.
git config --global http.postBuffer 524288000
God bless this answer :D
That’s all..
Thank you.