When I push my files, its showing like this, not completing the push operation.
git push origin Enumerating objects: 714, done. Counting objects: 100% (714/714), done. Delta compression using up to 12 threads Compressing objects: 100% (691/691), done. Writing objects: 100% (713/713), 1.06 MiB | 6.33 MiB/s, done. Total 713 (delta 156), reused 0 (delta 0), pack-reused 0
Hey @amruthanp , and welcome to the Community!
As the issue you're facing is occurring during the push operation, it may be related to the configured git post buffer size in your machine.
In this case, you can try increasing the buffer size by running the following command:
g
it config --global http.postBuffer 524288000
This sets the buffer size to 500 MB, which is usually more than enough for most pushes.
Could you try that as let us know how it goes?
Thank you, @amruthanp !
Patrik S
Hi,
Thank you very much for your help. Its worked. My long-term issue is now fixed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Happy to hear that worked @amruthanp !
If you ever need help in the future, feel free to reach out :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.