When I typed 1
git push origin dev
today on a remote computer, some error message showed up.
1 | Support for password authentication was removed on August 13, 2021. Please use |
See the blogs by 廖雪峰
1 | # if you don't know what it is doing, type: |
This is what a public key looks like
If such error occurs: 1
fatal: unable to access 'https://github.com/xxx.git/': OpenSSL SSL_read: Connection was reset, errno 10054
set the term sslVerify
to false. 1
git config --global https.sslVerify "false"
Error 443
1 | fatal: unable to access 'https://github.com/xxx.git/': Failed to connect to github.com port 443: Timed out |
The problem with proxy...
Install v2ray...
1 | git config --global https.proxy http://127.0.0.1:1081 |