推送远程git仓库报错:内部服务错误

解决:
增大 Git 的 push 缓冲区
打开终端依次执行:
git config --global http.postBuffer 524288000
git config --global http.maxRequestBuffer 100M
git config --global core.compression 0
然后重新 push:
git push -u origin main
解决:
打开终端依次执行:
git config --global http.postBuffer 524288000
git config --global http.maxRequestBuffer 100M
git config --global core.compression 0
然后重新 push:
git push -u origin main