$ git push -u origin master
Counting objects: 138, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (131/131), done.
Writing objects: 100% (138/138), 51.12 KiB | 0 bytes/s, done.
Total 138 (delta 47), reused 0 (delta 0)
error: RPC failed; result=56, HTTP code = 200
fatal: The remote end hung up unexpectedly
Is your origin github? Maybe the network is not good, try again
Same as above, try a few more times
Error code 56 means that git encountered network problems when cloning. Please check your network settings, firewall, VPN, etc. You can execute
$ GIT_CURL_VERBOSE=1 git pull
to view the error details.If the error is still reported, you can change to SSH address push. You can refer to this document for troubleshooting: https://coding.net/help/faq/g...
If your network environment blocks port 22, you can also use the SSH service on port 443. For details, see: https://coding.net/help/faq/g...