I\'m new to git. I\'m want to push a large commit to a remote server but the problem is when I use
git push origin master
it return the err
In shared hosting we have limited cpu resources mostly 1 cpu so multi-threading does not work very well there. This error is due to limited cpu resource actually.
Just this one git setting is enough to resolve this.
git config --global pack.threads "1"
This is limiting git to create only one thread.