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
I've also stumbled upon this error. To make it simpler, this error occurs because you want to copy a 100mb file into a hdd with free space of 50mb (or less). To fix this, SSH into the server and run the following commands:
git config --global pack.windowMemory "100m"
git config --global pack.packSizeLimit "100m"